import { DomainObject } from "./domain-object"; import { GenderType } from "./all.enum"; import { StorageAccountImage } from "./storage-account-image"; import { Location } from "./location"; import { Customer } from "./customer"; export declare class CustomerUser extends DomainObject { Active?: boolean | undefined; Substitute?: boolean | undefined; Gender?: GenderType | undefined; FirstName: string | undefined; LastName: string | undefined; Initials?: string | undefined; Email?: string | undefined; Phone?: string | undefined; Street?: string | undefined; ZipCode?: string | undefined; City?: string | undefined; State?: string | undefined; Country?: string | undefined; Latitude?: number | undefined; Longitude?: number | undefined; ImageId?: string | undefined; Image?: StorageAccountImage | undefined; ResourceColor?: string | undefined; LocationId?: string | undefined; Location?: Location | undefined; CustomerId?: string | undefined; Customer?: Customer | undefined; Username?: string | undefined; ResetPasswordPending?: boolean | null; get GenderString(): string; get FullName(): string; get Status(): string; } //# sourceMappingURL=customer-user.d.ts.map