Type Alias SubscriptionData

SubscriptionData: {
    _id: string;
    altId: string;
    altType: string;
    contactId?: string;
    contactName?: string;
    contactEmail?: string;
    currency?: string;
    amount?: number;
    status: string;
    liveMode?: boolean;
    entityType?: string;
    entityId?: string;
    entitySourceType: OrderSourceType;
    entitySourceName?: string;
    entitySourceId?: string;
    entitySourceMeta?: OrderSourceMetaData;
    subscriptionId?: string;
    subscriptionSnapshot?: SubscriptionSnapshot;
    paymentProviderType?: string;
    paymentProviderConnectedAccount?: string;
    ipAddress?: string;
    createdAt: string;
    updatedAt: string;
}

Type declaration

  • _id: string
  • altId: string
  • altType: string
  • OptionalcontactId?: string
  • OptionalcontactName?: string
  • OptionalcontactEmail?: string
  • Optionalcurrency?: string
  • Optionalamount?: number
  • status: string
  • OptionalliveMode?: boolean
  • OptionalentityType?: string
  • OptionalentityId?: string
  • entitySourceType: OrderSourceType
  • OptionalentitySourceName?: string
  • OptionalentitySourceId?: string
  • OptionalentitySourceMeta?: OrderSourceMetaData
  • OptionalsubscriptionId?: string
  • OptionalsubscriptionSnapshot?: SubscriptionSnapshot
  • OptionalpaymentProviderType?: string
  • OptionalpaymentProviderConnectedAccount?: string
  • OptionalipAddress?: string
  • createdAt: string
  • updatedAt: string