/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SmsCountryCode */ export interface SmsCountryCode { /** * * @type {string} * @memberof SmsCountryCode */ isoCountryCode: string; /** * * @type {string} * @memberof SmsCountryCode */ phoneCountryCode: string; } export declare function SmsCountryCodeFromJSON(json: any): SmsCountryCode; export declare function SmsCountryCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SmsCountryCode; export declare function SmsCountryCodeToJSON(value?: SmsCountryCode | null): any;