/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { DialCall202ResponseData } from './DialCall202ResponseData'; /** * * @export * @interface DialCall202Response */ export interface DialCall202Response { /** * * @type {DialCall202ResponseData} * @memberof DialCall202Response */ data?: DialCall202ResponseData; } /** * Check if a given object implements the DialCall202Response interface. */ export declare function instanceOfDialCall202Response(value: object): value is DialCall202Response; export declare function DialCall202ResponseFromJSON(json: any): DialCall202Response; export declare function DialCall202ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DialCall202Response; export declare function DialCall202ResponseToJSON(json: any): DialCall202Response; export declare function DialCall202ResponseToJSONTyped(value?: DialCall202Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DialCall202Response.d.ts.map