UNPKG

wallee

Version:
36 lines (35 loc) 866 B
import { BankTransaction } from "./BankTransaction"; declare class InternalTransferBankTransaction { /** * A unique identifier for the object. */ 'id'?: number; /** * The ID of the space this object belongs to. */ 'linkedSpaceId'?: number; /** * */ 'sourceBankTransaction'?: BankTransaction; /** * */ 'targetBankTransaction'?: BankTransaction; /** * 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 { InternalTransferBankTransaction };