/** * 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 { CreateFinderRequestBodyData } from './CreateFinderRequestBodyData'; /** * * @export * @interface CreateFinderRequestBody */ export interface CreateFinderRequestBody { /** * * @type {CreateFinderRequestBodyData} * @memberof CreateFinderRequestBody */ data: CreateFinderRequestBodyData; } /** * Check if a given object implements the CreateFinderRequestBody interface. */ export declare function instanceOfCreateFinderRequestBody(value: object): value is CreateFinderRequestBody; export declare function CreateFinderRequestBodyFromJSON(json: any): CreateFinderRequestBody; export declare function CreateFinderRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateFinderRequestBody; export declare function CreateFinderRequestBodyToJSON(json: any): CreateFinderRequestBody; export declare function CreateFinderRequestBodyToJSONTyped(value?: CreateFinderRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateFinderRequestBody.d.ts.map