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

Hierarchy (view full)

Properties

createdAt: string

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

createdBy?: CreatedBy

IDs and references that created the CustomerGroup.

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

IDs and references that last modified the CustomerGroup.

name: string

Unique name of the CustomerGroup.

version: number

Current version of the CustomerGroup.