@lomi./sdk
Version:
Official Node.js SDK for the lomi. API
18 lines (17 loc) • 404 B
TypeScript
export type Customer = {
customer_id: string;
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>;
created_at?: string;
updated_at?: string;
};