ResourceIdentifier to a CustomerGroup. Either id or key is required. If both are set, an InvalidJsonInput error is returned.

interface CustomerGroupResourceIdentifier {
    id?: string;
    key?: string;
    typeId: "customer-group";
}

Properties

Properties

id?: string

Unique identifier of the referenced CustomerGroup. Required if key is absent.

key?: string

User-defined unique identifier of the referenced CustomerGroup. Required if id is absent.

typeId: "customer-group"