interface PullRequestCommentChangeLogUpdate {
    field: "description" | "assignee" | "notification";
    newValue: null | string;
    originalValue: null | string;
}

Properties

field: "description" | "assignee" | "notification"
newValue: null | string
originalValue: null | string