/** * 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 { CreateFeedbackRequestBodyData } from './CreateFeedbackRequestBodyData'; /** * * @export * @interface CreateFeedbackRequestBody */ export interface CreateFeedbackRequestBody { /** * * @type {CreateFeedbackRequestBodyData} * @memberof CreateFeedbackRequestBody */ data: CreateFeedbackRequestBodyData; } /** * Check if a given object implements the CreateFeedbackRequestBody interface. */ export declare function instanceOfCreateFeedbackRequestBody(value: object): value is CreateFeedbackRequestBody; export declare function CreateFeedbackRequestBodyFromJSON(json: any): CreateFeedbackRequestBody; export declare function CreateFeedbackRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateFeedbackRequestBody; export declare function CreateFeedbackRequestBodyToJSON(json: any): CreateFeedbackRequestBody; export declare function CreateFeedbackRequestBodyToJSONTyped(value?: CreateFeedbackRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateFeedbackRequestBody.d.ts.map