wallee
Version:
TypeScript/JavaScript client for wallee
63 lines (62 loc) • 1.46 kB
TypeScript
import { ShopifyTransactionState } from "./ShopifyTransactionState";
import { ShopifyV1Integration } from "./ShopifyV1Integration";
import { Transaction } from "./Transaction";
import { TransactionAwareEntity } from "./TransactionAwareEntity";
declare class ShopifyTransaction extends TransactionAwareEntity {
/**
*
*/
'checkoutId'?: string;
/**
* The date and time when the object was created.
*/
'createdOn'?: Date;
/**
*
*/
'draftOrderId'?: string;
/**
*
*/
'draftOrderLegacyId'?: string;
/**
*
*/
'integration'?: ShopifyV1Integration;
/**
*
*/
'orderLegacyId'?: string;
/**
*
*/
'orderName'?: string;
/**
* 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;
/**
*
*/
'state'?: ShopifyTransactionState;
/**
*
*/
'transaction'?: Transaction;
/**
* 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 { ShopifyTransaction };