export interface AdminCreateCustomerGroup { /** * The customer group's name. */ name: string; /** * Key-value pairs of custom data. */ metadata?: Record | null; } export interface AdminUpdateCustomerGroup { /** * The customer group's name. */ name?: string; /** * Key-value pairs of custom data. */ metadata?: Record | null; } //# sourceMappingURL=payloads.d.ts.map