UNPKG

wallee

Version:
84 lines (83 loc) 1.71 kB
import { FailureReason } from "./FailureReason"; import { ShopifyRecurringOrderState } from "./ShopifyRecurringOrderState"; import { ShopifySubscriptionVersion } from "./ShopifySubscriptionVersion"; import { ShopifyTransaction } from "./ShopifyTransaction"; import { TransactionAwareEntity } from "./TransactionAwareEntity"; declare class ShopifyRecurringOrder extends TransactionAwareEntity { /** * */ 'billedOn'?: Date; /** * */ 'checkoutToken'?: string; /** * */ 'createdOn'?: Date; /** * */ 'draftOrderId'?: string; /** * */ 'failureReason'?: FailureReason; /** * */ 'orderId'?: string; /** * */ 'orderLegacyId'?: string; /** * */ 'orderName'?: string; /** * */ 'plannedExecutionDate'?: Date; /** * The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed. */ 'plannedPurgeDate'?: Date; /** * */ 'recurrenceNumber'?: number; /** * */ 'shop'?: number; /** * */ 'startedProcessingOn'?: Date; /** * The object's current state. */ 'state'?: ShopifyRecurringOrderState; /** * */ 'subscriptionVersion'?: ShopifySubscriptionVersion; /** * */ 'transaction'?: ShopifyTransaction; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { ShopifyRecurringOrder };