Details of issue history metadata.

interface HistoryMetadata {
    activityDescription?: string;
    activityDescriptionKey?: string;
    actor?: HistoryMetadataParticipant;
    cause?: HistoryMetadataParticipant;
    description?: string;
    descriptionKey?: string;
    emailDescription?: string;
    emailDescriptionKey?: string;
    extraData?: {
        [key: string]: string;
    };
    generator?: HistoryMetadataParticipant;
    type?: string;
}

Hierarchy

  • Record<string, unknown>
    • HistoryMetadata

Properties

activityDescription?: string

The activity described in the history record.

activityDescriptionKey?: string

The key of the activity described in the history record.

Details of the user whose action created the history record.

Details of the cause that triggered the creation the history record.

description?: string

The description of the history record.

descriptionKey?: string

The description key of the history record.

emailDescription?: string

The description of the email address associated the history record.

emailDescriptionKey?: string

The description key of the email address associated the history record.

extraData?: {
    [key: string]: string;
}

Additional arbitrary information about the history record.

Details of the system that generated the history record.

type?: string

The type of the history record.