interface ProductType {
    attributes?: AttributeDefinition[];
    createdAt: string;
    createdBy?: CreatedBy;
    description: string;
    id: string;
    key?: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    name: string;
    version: number;
}

Hierarchy

Properties

attributes?: AttributeDefinition[]

Attributes specified for the ProductType.

createdAt: string

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

createdBy?: CreatedBy

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

description: string

Description of the ProductType.

id: string

Unique identifier of the ProductType.

key?: string

User-defined unique identifier of the ProductType.

lastModifiedAt: string

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

lastModifiedBy?: LastModifiedBy

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

name: string

Name of the ProductType.

version: number

Current version of the ProductType.

Generated using TypeDoc