UNPKG

@lomi./sdk

Version:

Official TypeScript SDK for the lomi. API

56 lines 1.26 kB
/** * prices resource object */ export type prices = { /** * Amount in the smallest currency unit (e.g., cents for USD, same for XOF) */ amount?: number; billing_interval?: string; /** * ISO 8601 datetime */ readonly created_at?: string; /** * Three-letter ISO currency code (e.g., XOF, USD, EUR) */ currency_code?: string; environment?: string; /** * Whether this resource is currently active */ is_active?: boolean; is_default?: boolean; maximum_amount?: number; /** * Set of key-value pairs for storing additional information */ metadata?: Record<string, any>; minimum_amount?: number; /** * Unique identifier (UUID format) */ organization_id?: string; /** * Unique identifier (UUID format) */ price_id?: string; pricing_model?: string; /** * Unique identifier (UUID format) */ product_id?: string; /** * Unique identifier (UUID format) */ provider_price_id?: string; /** * Unique identifier (UUID format) */ provider_product_id?: string; /** * ISO 8601 datetime */ readonly updated_at?: string; }; //# sourceMappingURL=prices.d.ts.map