/** * 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 { UpdateFeedbackRequestBodyData } from './UpdateFeedbackRequestBodyData'; /** * * @export * @interface UpdateFeedbackRequestBody */ export interface UpdateFeedbackRequestBody { /** * * @type {UpdateFeedbackRequestBodyData} * @memberof UpdateFeedbackRequestBody */ data: UpdateFeedbackRequestBodyData; } /** * Check if a given object implements the UpdateFeedbackRequestBody interface. */ export declare function instanceOfUpdateFeedbackRequestBody(value: object): value is UpdateFeedbackRequestBody; export declare function UpdateFeedbackRequestBodyFromJSON(json: any): UpdateFeedbackRequestBody; export declare function UpdateFeedbackRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateFeedbackRequestBody; export declare function UpdateFeedbackRequestBodyToJSON(json: any): UpdateFeedbackRequestBody; export declare function UpdateFeedbackRequestBodyToJSONTyped(value?: UpdateFeedbackRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateFeedbackRequestBody.d.ts.map