interface CustomerGroup {
    createdAt: string;
    createdBy?: CreatedBy;
    custom?: CustomFields;
    id: string;
    key?: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    name: string;
    version: number;
}

Hierarchy

Properties

createdAt: string

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

createdBy?: CreatedBy

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

custom?: CustomFields

Custom Fields for the CustomerGroup.

id: string

Unique identifier of the CustomerGroup.

key?: string

User-defined unique identifier for the CustomerGroup.

lastModifiedAt: string

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

lastModifiedBy?: LastModifiedBy

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

name: string

Unique name of the CustomerGroup.

version: number

Current version of the CustomerGroup.

Generated using TypeDoc