/** * 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 { CreateSurveyRequestBodyData } from './CreateSurveyRequestBodyData'; /** * * @export * @interface CreateSurveyRequestBody */ export interface CreateSurveyRequestBody { /** * * @type {CreateSurveyRequestBodyData} * @memberof CreateSurveyRequestBody */ data: CreateSurveyRequestBodyData; } /** * Check if a given object implements the CreateSurveyRequestBody interface. */ export declare function instanceOfCreateSurveyRequestBody(value: object): value is CreateSurveyRequestBody; export declare function CreateSurveyRequestBodyFromJSON(json: any): CreateSurveyRequestBody; export declare function CreateSurveyRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateSurveyRequestBody; export declare function CreateSurveyRequestBodyToJSON(json: any): CreateSurveyRequestBody; export declare function CreateSurveyRequestBodyToJSONTyped(value?: CreateSurveyRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateSurveyRequestBody.d.ts.map