interface CommentVersion {
    authorId?: string;
    comment?: VersionedEntity;
    createdAt?: string;
    message?: string;
    minorEdit?: boolean;
    number?: number;
}

Hierarchy

  • Record<string, unknown>
    • CommentVersion

Properties

authorId?: string

The account ID of the user who created this version.

comment?: VersionedEntity
createdAt?: string

Date and time when the version was created. In format "YYYY-MM-DDTHH:mm:ss.sssZ".

message?: string

Message associated with the current version.

minorEdit?: boolean

Describes if this version is a minor version. Email notifications and activity stream updates are not created for minor versions.

number?: number

The version number.