@lomi./sdk
Version:
Official Node.js SDK for the lomi. API
15 lines (14 loc) • 335 B
TypeScript
export type CreateCustomer = {
merchant_id: string;
organization_id: string;
name: string;
email?: string;
phone_number?: string;
whatsapp_number?: string;
country?: string;
city?: string;
address?: string;
postal_code?: string;
is_business?: boolean;
metadata?: Record<string, any>;
};