import { EntityTransactionType, UserType, EntityErrorWarningType } from "./all.enum"; import { Document } from "./document"; import { DomainObject } from "./domain-object"; import { Employee } from "./employee"; import { StorageAccountDocument } from "./storage-account-document"; export declare class EntityTransaction extends DomainObject { TransactionNo?: number | undefined; ObjectExtensionId?: string | undefined; EntityType_Owner?: string | undefined; TransactionType?: EntityTransactionType | undefined; TransactionDate?: Date | undefined; TransactionUID?: string | undefined; TransactionCorrelationUID?: string | undefined; Text?: string | undefined; ResponsDate?: Date | undefined; ResponsText?: string | undefined; ResponsIP?: string | undefined; ResponsUID?: string | undefined; Group?: string | undefined; Document1Id?: string | undefined; Document1?: Document | undefined; StorageAccountDocument1?: StorageAccountDocument | undefined; Document2Id?: string | undefined; Document2?: Document | undefined; StorageAccountDocument2?: StorageAccountDocument | undefined; Document3Id?: string | undefined; Document3?: Document | undefined; StorageAccountDocument3?: StorageAccountDocument | undefined; EmployeeId?: string | undefined; Employee?: Employee | undefined; User_Id?: string | undefined; User_Name?: string | undefined; User_Username?: string | undefined; User_UserType?: UserType | undefined; EntityId?: string | undefined; EntityType?: string | undefined; CustomText1?: string | undefined; CustomText2?: string | undefined; CustomText3?: string | undefined; CustomNumber1?: number | undefined; CustomNumber2?: number | undefined; CustomNumber3?: number | undefined; CustomDate1?: Date | undefined; CustomDate2?: Date | undefined; ErrorWarning?: EntityErrorWarningType | undefined; ErrorWarningText?: string | undefined; Icon?: string | undefined; Tag1?: any | undefined; Tag2?: any | undefined; Tag3?: any | undefined; ResolvedAt?: Date | undefined; ResolvedText?: string | undefined; ResolvedBy_Id?: string | undefined; ResolvedBy?: Employee | undefined; } //# sourceMappingURL=entity-transaction.d.ts.map