/** * 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 { UpdateFinderRequestBodyData } from './UpdateFinderRequestBodyData'; /** * * @export * @interface UpdateFinderRequestBody */ export interface UpdateFinderRequestBody { /** * * @type {UpdateFinderRequestBodyData} * @memberof UpdateFinderRequestBody */ data: UpdateFinderRequestBodyData; } /** * Check if a given object implements the UpdateFinderRequestBody interface. */ export declare function instanceOfUpdateFinderRequestBody(value: object): value is UpdateFinderRequestBody; export declare function UpdateFinderRequestBodyFromJSON(json: any): UpdateFinderRequestBody; export declare function UpdateFinderRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateFinderRequestBody; export declare function UpdateFinderRequestBodyToJSON(json: any): UpdateFinderRequestBody; export declare function UpdateFinderRequestBodyToJSONTyped(value?: UpdateFinderRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateFinderRequestBody.d.ts.map