UNPKG

ordercloud-javascript-sdk

Version:

The offical Javascript SDK for the Ordercloud ecommerce API

21 lines (20 loc) 666 B
import { SubscriptionInterval } from './SubscriptionInterval'; import { SubscriptionPayment } from './SubscriptionPayment'; export interface Subscription<TSubscriptionXp = any> { ID?: string; Frequency?: number; Interval?: SubscriptionInterval; NextOrderDate?: string; readonly LastOrderDate?: string; readonly NotificationDate?: string; readonly DateCreated?: string; EndDate?: string; Active?: boolean; FromCompanyID?: string; FromUserID?: string; ToCompanyID?: string; Payment?: SubscriptionPayment; BillingAddressID?: string; ShippingAddressID?: string; xp?: TSubscriptionXp; }