interface UpdateInlineCommentModel {
    body?: CommentBodyWrite | CommentNestedBodyWrite;
    resolved?: boolean;
    version?: {
        message?: string;
        number?: number;
    } & {
        [key: string]: unknown;
    };
}

Hierarchy

  • Record<string, unknown>
    • UpdateInlineCommentModel

Properties

resolved?: boolean

Resolved state of the comment. Set to true to resolve the comment, set to false to reopen it. If matching the existing state (i.e. true -> resolved or false -> open/reopened) , no change will occur. A dangling comment cannot be updated.

version?: {
    message?: string;
    number?: number;
} & {
    [key: string]: unknown;
}

Type declaration

  • Optionalmessage?: string

    Optional message store for the new version.

  • Optionalnumber?: number

    Number of new version. Should be 1 higher than current version of the comment.