@lomi./sdk
Version:
Official TypeScript SDK for the lomi. API
32 lines • 835 B
TypeScript
/**
* Request body for updating a customer invoices object. Only include fields you want to modify.
*/
export type customer_invoices_update = {
/**
* Amount in the smallest currency unit (e.g., cents for USD, same for XOF)
*/
amount?: number;
/**
* Three-letter ISO currency code (e.g., XOF, USD, EUR)
*/
currency_code?: string;
/**
* Unique identifier (UUID format)
*/
customer_id?: string;
/**
* Unique identifier (UUID format)
*/
customer_invoice_id?: string;
description?: string;
due_date?: string;
/**
* Set of key-value pairs for storing additional information
*/
metadata?: Record<string, any>;
/**
* Current status of the resource
*/
status?: string;
};
//# sourceMappingURL=customer_invoices_update.d.ts.map