export type line_item_LineItem = { /** * Amount is the per-unit charge in the smallest currency unit (e.g. cents) for a one-off line item. */ amount?: number; /** * Description is the human-readable description of a one-off line item. */ description?: string; id?: string; /** * PriceId is the ID of the price this line item bills for; absent for one-off charges. */ priceId?: string; /** * PriceInterval is the recurring interval of the referenced price, when the line item bills a recurring price. */ priceInterval?: string; /** * ProductId is the ID of the product this line item bills for; absent for one-off charges. */ productId?: string; /** * Quantity is the number of units billed for this line item. */ quantity?: number; type?: string; };