import type { TransactionVoidMode } from './TransactionVoidMode'; import type { Transaction } from './Transaction'; import type { TransactionVoidState } from './TransactionVoidState'; import type { FailureReason } from './FailureReason'; import type { Label } from './Label'; /** * * @export * @interface TransactionVoid */ export interface TransactionVoid { /** * The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed. * @type {Date} * @memberof TransactionVoid */ readonly plannedPurgeDate?: Date; /** * The language that is linked to the object. * @type {string} * @memberof TransactionVoid */ readonly language?: string; /** * The ID of the space view this object is linked to. * @type {number} * @memberof TransactionVoid */ readonly spaceViewId?: number; /** * The date and time when the object was created. * @type {Date} * @memberof TransactionVoid */ readonly createdOn?: Date; /** * The version is used for optimistic locking and incremented whenever the object is updated. * @type {number} * @memberof TransactionVoid */ readonly version?: number; /** * The labels providing additional information about the object. * @type {Set