UNPKG

wallee

Version:
48 lines (47 loc) 1.31 kB
import { BankAccountState } from "./BankAccountState"; declare class BankAccount { /** * The optional description is shown along the identifier. The intention of the description is to give an alternative name to the bank account. */ 'description'?: string; /** * A unique identifier for the object. */ 'id'?: number; /** * The bank account identifier is responsible to uniquely identify the bank account. */ 'identifier'?: string; /** * 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'?: BankAccountState; /** * */ 'type'?: number; /** * 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 { BankAccount };