UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

31 lines 928 B
import { ServiceStateEnum } from './ServiceStateEnum'; import { ServiceTypeEnum } from './ServiceTypeEnum'; import { PhoneNumber } from '../../PhoneNumber'; /** Office tenant */ export interface OfficeTenantNative { /** Contact's address line */ address: string; /** Contact's city */ city: string; /** Creation date */ creationDate: string; /** Tenant's display name */ displayName: string; /** Contact's first name */ firstName: string; /** Contact's last name */ lastName: string; /** MCA acceptance status */ mcaAgreed: boolean; /** Primary phone number */ phone: PhoneNumber; /** Internal service name */ serviceName: string; /** Tenant's service type */ serviceType: ServiceTypeEnum; /** Tenant's status */ status: ServiceStateEnum; /** Contact's zip code */ zipCode: string; } //# sourceMappingURL=OfficeTenantNative.d.ts.map