import { DomainObject } from "./domain-object"; import { BusinessRelationStatus, BusinessRelationType, PriorityType } from "./all.enum"; import { ContactPerson } from "./contact-person"; import { Employee } from "./employee"; import { BusinessProgressState } from "./business-progress-state"; import { BusinessGroup } from "./business-group"; import { BusinessActivity } from "./business-activity"; export declare class BusinessRelation extends DomainObject { RelationId?: string | undefined; VatNumber?: string | undefined; Street?: string | undefined; Street2?: string | undefined; Zipcode?: string | undefined; City?: string | undefined; Country?: string | undefined; State?: string | undefined; Phone?: string | undefined; Email?: string | undefined; Latitude?: number | undefined; Longitude?: number | undefined; Note?: string | undefined; Progress?: number | undefined; LastFollowUp?: Date | undefined; InitialAmount?: number | undefined; Amount?: number | undefined; ContactPersonId?: string | undefined; ContactPerson?: ContactPerson | undefined; ContactPersons?: ContactPerson[] | undefined; EmployeeId?: string | undefined; Employee?: Employee | undefined; ProgressStateId?: string | undefined; ProgressState?: BusinessProgressState | undefined; BusinessGroupId?: string | undefined; BusinessGroup?: BusinessGroup | undefined; Type?: BusinessRelationType | undefined; Status?: BusinessRelationStatus | undefined; Priority?: PriorityType | undefined; Activities?: BusinessActivity[] | undefined; ParentId?: string | undefined; Parent?: BusinessRelation | undefined; } //# sourceMappingURL=business-relation.d.ts.map