interface CreateRequestComment {
    body?: string;
    issueIdOrKey: string;
    public?: boolean;
}

Hierarchy (view full)

Properties

body?: string

Content of the comment.

issueIdOrKey: string

The ID or key of the customer request to which the comment will be added.

public?: boolean

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