import { AllowedValueWithCode } from '../../../commonStateTypes/allowedValue'; export interface SubscriptionPlanPayload { chargebee_plan_id: string; create_time: string; currency_code: string; currency_symbol: string; label: string; name: string; period: number; period_unit: string; price: number; sku: string; slab_lower_limit: number | null; slab_upper_limit: number | null; status_code: string; subscription_plan_id: string; update_time: string; vendor_company_id: string; vendor_tenant_id: string; zeni_sku: string; description?: string | null; } export interface SubscriptionPlanSchemaPayload { status: { allowed_values: AllowedValueWithCode[]; }; }