interface CommentDto {
    _expands?: string[];
    _links?: SelfLinkDto;
    attachments?: PagedDtoAttachmentDto;
    author?: UserDto;
    body?: string;
    created?: DateDto;
    id?: string;
    public?: boolean;
    renderedBody?: RenderedValueDto;
}

Properties

_expands?: string[]

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

_links?: SelfLinkDto

REST API URL link to the comment.

attachments?: PagedDtoAttachmentDto

List of the attachments included in the comment.

author?: UserDto

Details of the customer who authored the comment.

body?: string

Content of the comment.

created?: DateDto

Date the comment was created.

id?: string

ID of the comment.

public?: boolean

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

renderedBody?: RenderedValueDto

The rendered body of the comment.