import { DomainObject } from "./domain-object"; import { StorageAccountImage } from "./storage-account-image"; import { Vendor } from "./vendor"; import { Customer } from "./customer"; export declare class ContactPerson extends DomainObject { ContactPersonId?: string | undefined; Email?: string | undefined; Street?: string | undefined; ZipCode?: string | undefined; City?: string | undefined; State?: string | undefined; Country?: string | undefined; Phone?: string | undefined; WWW?: string | undefined; ImageId?: string | undefined; Image?: StorageAccountImage | undefined; ProfileImageId?: string | undefined; ProfileImage?: StorageAccountImage | undefined; Title?: string | undefined; CellPhone?: string | undefined; LinkedIn?: string | undefined; PriceVisible?: boolean | undefined; VendorId?: string | undefined; Vendor?: Vendor | undefined; Customers?: Customer[] | undefined; } //# sourceMappingURL=contact-person.d.ts.map