Interface HistoryReferenceCustomFieldEnumValue

A reference to a CustomField value asserted on a Story.

interface HistoryReferenceCustomFieldEnumValue {
    entity_type: string;
    enum_value_enabled?: boolean;
    field_enabled: boolean;
    field_id: string;
    field_name: string;
    field_type: string;
    id: string | number;
    string_value?: string;
}

Properties

entity_type: string

The type of entity referenced.

enum_value_enabled?: boolean

Whether or not the custom-field enum value is enabled.

field_enabled: boolean

Whether or not the custom-field is enabled.

field_id: string

The public-id of the parent custom-field of this enum value.

uuid

field_name: string

The name as it is displayed to the user of the parent custom-field of this enum value.

field_type: string

The type variety of the parent custom-field of this enum value.

id: string | number

The ID of the entity referenced.

string_value?: string

The custom-field enum value as a string.