import { AllowedValueWithCode } from '../../../commonStateTypes/allowedValue'; export interface SubscriptionSummaryPayload { arr: number; avg_2_month_expenses: number; chargebee_customer_id: string; chargebee_customer_name: string; company_id: string; company_name: string; create_time: string; currency_code: string; currency_symbol: string; mrr: number; note: string | null; note_last_update_time: string | null; note_last_updated_user_id: string | null; primary_subscription_plan_id: string; recommended_action_code: string; subscription_summary_id: string; tenant_id: string; total_dues: number; update_time: string; vendor_company_id: string; vendor_tenant_id: string; recommended_subscription_plan_id?: string | null; } export interface SubscriptionSummarySchemaPayload { recommended_action: { allowed_values: AllowedValueWithCode[]; }; }