Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ControlComment

import type { ControlComment } from "https://aws-api.deno.dev/v0.4/services/auditmanager.ts?docs=full";

A comment that's posted by a user on a control. This includes the author's name, the comment text, and a timestamp.

interface ControlComment {
authorName?: string | null;
commentBody?: string | null;
postedDate?: Date | number | null;
}

§Properties

§
authorName?: string | null
[src]

The name of the user who authored the comment.

§
commentBody?: string | null
[src]

The body text of a control comment.

§
postedDate?: Date | number | null
[src]

The time when the comment was posted.