UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 541 B
import { TypeEnum } from './TypeEnum'; import { TypeServiceEnum } from './TypeServiceEnum'; /** OVH calls queues and OVH IVRs (Interactive Voice Response) */ export interface OvhPabx { /** Description of the service */ description: string; /** Feature of the service */ featureType: TypeEnum; /** Does the service have extended CCS options enabled? */ isCCS: boolean; /** */ serviceName: string; /** General type of the service */ serviceType: TypeServiceEnum; } //# sourceMappingURL=OvhPabx.d.ts.map