interface Type {
    createdAt: string;
    createdBy?: CreatedBy;
    description?: LocalizedString;
    fieldDefinitions: FieldDefinition[];
    id: string;
    key: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    name: LocalizedString;
    resourceTypeIds: string[];
    version: number;
}

Hierarchy

Properties

createdAt: string

Date and time (UTC) the Type was initially created.

createdBy?: CreatedBy

Present on resources created after 1 February 2019 except for events not tracked.

description?: LocalizedString

Description of the Type.

fieldDefinitions: FieldDefinition[]

Defines Custom Fields.

id: string

Unique identifier of the Type.

key: string

User-defined unique identifier of the Type.

lastModifiedAt: string

Date and time (UTC) the Type was last updated.

lastModifiedBy?: LastModifiedBy

Present on resources created after 1 February 2019 except for events not tracked.

Name of the Type.

resourceTypeIds: string[]

Resources and/or data types for which the Type is defined.

version: number

Current version of the Type.

Generated using TypeDoc