UNPKG

wallee

Version:
85 lines (84 loc) 1.93 kB
import { FailureReason } from "./FailureReason"; import { Label } from "./Label"; import { Transaction } from "./Transaction"; import { TransactionAwareEntity } from "./TransactionAwareEntity"; import { TransactionVoidMode } from "./TransactionVoidMode"; import { TransactionVoidState } from "./TransactionVoidState"; declare class TransactionVoid extends TransactionAwareEntity { /** * */ 'createdBy'?: number; /** * The date and time when the object was created. */ 'createdOn'?: Date; /** * */ 'failedOn'?: Date; /** * */ 'failureReason'?: FailureReason; /** * The labels providing additional information about the object. */ 'labels'?: Array<Label>; /** * The language that is linked to the object. */ 'language'?: string; /** * */ 'mode'?: TransactionVoidMode; /** * */ 'nextUpdateOn'?: 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; /** * */ 'processorReference'?: string; /** * The ID of the space view this object is linked to. */ 'spaceViewId'?: number; /** * The object's current state. */ 'state'?: TransactionVoidState; /** * */ 'succeededOn'?: Date; /** * */ 'timeoutOn'?: Date; /** * */ '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 { TransactionVoid };