UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

35 lines 1.11 kB
import { ResourceMetadata } from '../../iam/ResourceMetadata'; import { PhoneNumber } from '../../PhoneNumber'; import { ServiceStateEnum } from './ServiceStateEnum'; /** Office tenant */ export interface OfficeTenantWithIAM { /** Contact's address line */ address: string; /** Contact's city */ city: string; /** Creation date */ creationDate: string; /** Tenant's display name */ displayName: string; /** Contact's email address */ email: string; /** Contact's first name */ firstName: string; /** IAM resource metadata */ iam?: ResourceMetadata; /** Contact's last name */ lastName: string; /** Microsoft Partner Network identifier linked to this tenant */ mpnId?: string; /** Code of any detected issue regarding the MPN Id */ mpnIssueFlag?: string; /** Primary phone number */ phone: PhoneNumber; /** Internal service name */ serviceName: string; /** Tenant's status */ status: ServiceStateEnum; /** Contact's zip code */ zipCode: string; } //# sourceMappingURL=OfficeTenantWithIAM.d.ts.map