interface GetCommentAttachments {
    commentId: number;
    issueIdOrKey: string;
    limit?: number;
    start?: number;
}

Properties

commentId: number

The ID of the comment.

issueIdOrKey: string

The ID or key of the customer request that contains the comment.

limit?: number

The maximum number of comments to return per page. Default: 50. See the Pagination section for more details.

start?: number

The starting index of the returned comments. Base index: 0. See the Pagination section for more details.