interface ProductSelection {
    createdAt: string;
    createdBy?: CreatedBy;
    custom?: CustomFields;
    id: string;
    key?: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    mode: string;
    name: LocalizedString;
    productCount: number;
    type?: string;
    version: number;
}

Hierarchy

Properties

createdAt: string

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

createdBy?: CreatedBy

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

custom?: CustomFields

Custom Fields of the ProductSelection.

id: string

Unique identifier of the ProductSelection.

key?: string

User-defined unique identifier of the ProductSelection.

lastModifiedAt: string

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

lastModifiedBy?: LastModifiedBy

Present on resources updated after 1/02/2019 except for events not tracked.

mode: string

Specifies in which way the Products are assigned to the ProductSelection. Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.

Name of the ProductSelection.

productCount: number

Number of Products that are currently assigned to this ProductSelection.

type?: string

Specifies in which way the Products are assigned to the ProductSelection. Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.

Deprecated

version: number

Current version of the ProductSelection.

Generated using TypeDoc