UNPKG

@lomi./sdk

Version:

Official TypeScript SDK for the lomi. API

28 lines 730 B
/** * Request body for updating a products object. Only include fields you want to modify. */ export type products_update = { billing_frequency?: string; charge_day?: number; description?: string; display_on_storefront?: boolean; failed_payment_action?: string; first_payment_type?: string; /** * URL/URI */ image_url?: string; /** * Whether this resource is currently active */ is_active?: boolean; /** * Set of key-value pairs for storing additional information */ metadata?: Record<string, any>; name?: string; product_type?: string; usage_aggregation?: string; usage_unit?: string; }; //# sourceMappingURL=products_update.d.ts.map