interface Comment {
    Expands?: string[];
    Links?: SelfLink;
    attachments?: PagedAttachment;
    author?: ServiceDesk.ServiceDeskModels.User;
    body?: string;
    created?: Date;
    id?: string;
    public?: boolean;
    renderedBody?: RenderedValue;
}

Properties

Expands?: string[]

List of items that can be expanded in the response by specifying the expand query parameter.

Links?: SelfLink
attachments?: PagedAttachment
body?: string

Content of the comment.

created?: Date
id?: string

ID of the comment.

public?: boolean

Indicates whether the comment is public (true) or private/internal (false).

renderedBody?: RenderedValue