@lomi./sdk
Version:
Official TypeScript SDK for the lomi. API
29 lines • 703 B
TypeScript
/**
* Request body for updating a customers object. Only include fields you want to modify.
*/
export type customers_update = {
address?: string;
city?: string;
country?: string;
/**
* Email address
*/
email?: string;
is_business?: boolean;
/**
* Soft deletion flag
*/
is_deleted?: boolean;
/**
* Set of key-value pairs for storing additional information
*/
metadata?: Record<string, any>;
name?: string;
phone_number?: string;
postal_code?: string;
spi_alias_mbno?: string;
spi_alias_shid?: string;
spi_primary_alias?: string;
whatsapp_number?: string;
};
//# sourceMappingURL=customers_update.d.ts.map