@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
21 lines • 649 B
TypeScript
import { Price } from '../order/Price';
import { RmaOfferTypeEnum } from './RmaOfferTypeEnum';
import { ProtocolEnum } from './ProtocolEnum';
/** Informations related to phone capabilities */
export interface LinePhone {
/** Brand name of the phone */
brand: string;
/** The phone description */
description: string;
/** Setup fees */
fees?: Price;
/** Maximum number of lines managed by a phone */
maxline: number;
/** Type of purchase */
offerType: RmaOfferTypeEnum;
/** Telephony price */
price: Price;
/** Phone protocol */
protocol: ProtocolEnum;
}
//# sourceMappingURL=LinePhone.d.ts.map