116
const multiplier = typeof billing.multiplier === 'number' ? billing.multiplier : undefined;
117
const priceCategory = typeof billing.priceCategory === 'string' ? billing.priceCategory
118
>
: typeof (billing as Record<string, unknown>).price_category === 'string' ? (billing as Record<string, unknown>).price_category as string
agentModelPricing.ts
119
>
: undefined;
120
const discountPercent = typeof billing.discountPercent === 'number' ? billing.discountPercent
121
: typeof (billing as Record<string, unknown>).discount_percent === 'number' ? (billing as Record<string, unknown>).discount_percent as number