UNPKG

wallee

Version:
85 lines (84 loc) 1.73 kB
import { ShopifySubscriber } from "./ShopifySubscriber"; import { ShopifySubscriptionState } from "./ShopifySubscriptionState"; declare class ShopifySubscription { /** * */ 'createdBy'?: number; /** * */ 'createdOn'?: Date; /** * The external id helps to identify the entity and a subsequent creation of an entity with the same ID will not create a new entity. */ 'externalId'?: string; /** * A unique identifier for the object. */ 'id'?: number; /** * */ 'initialExecutionDate'?: Date; /** * */ 'initialPaymentTransaction'?: number; /** * */ 'initialShopifyTransaction'?: number; /** * The language that is linked to the object. */ 'language'?: string; /** * The ID of the space this object belongs to. */ 'linkedSpaceId'?: number; /** * */ 'orderRecurrenceNumber'?: number; /** * */ 'shop'?: number; /** * The object's current state. */ 'state'?: ShopifySubscriptionState; /** * */ 'subscriber'?: ShopifySubscriber; /** * */ 'terminatedBy'?: number; /** * */ 'terminatedOn'?: Date; /** * */ 'terminationRequestDate'?: Date; /** * The version is used for optimistic locking and incremented whenever the object is updated. */ 'version'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { ShopifySubscription };