Type Alias SubscriptionDetailsReponse

SubscriptionDetailsReponse: {
    _id: string;
    altId: string;
    altType: string;
    contactId?: string;
    contactSnapshot?: OrderContactSnapshot;
    coupon?: SubscriptionCoupon;
    currency?: string;
    amount?: number;
    status: string;
    liveMode?: boolean;
    entityType?: string;
    entityId?: string;
    entitySource?: OrderSource;
    subscriptionId?: string;
    subscriptionSnapshot?: SubscriptionSnapshot;
    paymentProvider?: TransactionPaymentProvider;
    ipAddress?: string;
    createdAt: string;
    updatedAt: string;
    meta?: OrderMetaData;
    markAsTest?: boolean;
    schedule?: SubscriptionSchedule;
    autoPayment?: SubscriptionAutoPayment;
    recurringProduct?: SubscriptionRecurringProduct;
    canceledAt?: string;
    canceledBy?: string;
    traceId?: string;
}

Type declaration