@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 585 B
TypeScript
import { LinePhoneAssociableConfiguredLines } from './LinePhoneAssociableConfiguredLines';
import { ProtocolEnum } from './ProtocolEnum';
/** Informations related to associable phone capabilities */
export interface LinePhoneAssociable {
/** Current lines configured on the phone */
associatedLines: LinePhoneAssociableConfiguredLines[];
/** Brand name of the phone */
brand: string;
/** Maximum quantity of lines managed by the phone */
maxLines: number;
/** Phone protocol */
protocol: ProtocolEnum;
}
//# sourceMappingURL=LinePhoneAssociable.d.ts.map