/** * Api Documentation * Api Documentation * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ export declare class Telecom { constructor(json: JSON | any); telecomType?: Telecom.TelecomTypeEnum; telecomNumber?: string; } export declare namespace Telecom { type TelecomTypeEnum = "mobile" | "phone" | "email" | "fax" | "skype" | "im" | "medibridge" | "ehealthbox" | "apicrypt" | "web" | "print" | "disk" | "other" | "pager"; const TelecomTypeEnum: { Mobile: TelecomTypeEnum; Phone: TelecomTypeEnum; Email: TelecomTypeEnum; Fax: TelecomTypeEnum; Skype: TelecomTypeEnum; Im: TelecomTypeEnum; Medibridge: TelecomTypeEnum; Ehealthbox: TelecomTypeEnum; Apicrypt: TelecomTypeEnum; Web: TelecomTypeEnum; Print: TelecomTypeEnum; Disk: TelecomTypeEnum; Other: TelecomTypeEnum; Pager: TelecomTypeEnum; }; }