import { AllowedValueWithCode } from '../../../commonStateTypes/allowedValue'; export interface SubscriptionCouponPayload { chargebee_coupon_id: string; create_time: string; currency_code: string | null; currency_symbol: string | null; discount_amount: number | null; discount_type: string; duration_type: string; name: string; status_code: string; subscription_coupon_id: string; update_time: string; vendor_company_id: string; vendor_tenant_id: string; discount_percentage?: number | null; } export interface SubscriptionCouponSchemaPayload { status: { allowed_values: AllowedValueWithCode[]; }; }