wallee
Version:
TypeScript/JavaScript client for wallee
48 lines (47 loc) • 1.32 kB
TypeScript
import { TransactionGroupState } from "./TransactionGroupState";
declare class TransactionGroup {
/**
* The date and time when the initial transaction in the group was created.
*/
'beginDate'?: Date;
/**
* The unique identifier of the customer in the external system.
*/
'customerId'?: string;
/**
* The date and time when the final transaction in the group was last updated.
*/
'endDate'?: Date;
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The ID of the space this object belongs to.
*/
'linkedSpaceId'?: number;
/**
* 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;
/**
* The object's current state.
*/
'state'?: TransactionGroupState;
/**
* 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 { TransactionGroup };