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

Hierarchy (view full)

Properties

attributes?: AttributeDefinition[]

Attributes specified for the ProductType.

createdAt: string

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

createdBy?: CreatedBy

IDs and references that created the ProductType.

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

IDs and references that last modified the ProductType.

name: string

Name of the ProductType.

version: number

Current version of the ProductType.