@medusajs/types
Version:
Medusa Types definition
21 lines • 471 B
TypeScript
export interface AdminCreateCustomerGroup {
/**
* The customer group's name.
*/
name: string;
/**
* Key-value pairs of custom data.
*/
metadata?: Record<string, unknown> | null;
}
export interface AdminUpdateCustomerGroup {
/**
* The customer group's name.
*/
name?: string;
/**
* Key-value pairs of custom data.
*/
metadata?: Record<string, unknown> | null;
}
//# sourceMappingURL=payloads.d.ts.map