import { AllowedValueWithCode } from '../../../commonStateTypes/allowedValue'; export interface SubscriptionAddOnPayload { charge_type: string; chargebee_addon_id: string; create_time: string; currency_code: string; currency_symbol: string; label: string | null; name: string; period: number | null; period_unit: string | null; price: number; sku: string; status_code: string; subscription_addon_id: string; update_time: string; vendor_company_id: string; vendor_tenant_id: string; zeni_sku: string | null; description?: string | null; } export interface SubscriptionAddOnSchemaPayload { charge_type: { allowed_values: AllowedValueWithCode[]; }; status: { allowed_values: AllowedValueWithCode[]; }; }