/** * 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 { CreateTalentRequestBodyData } from './CreateTalentRequestBodyData'; /** * * @export * @interface CreateTalentRequestBody */ export interface CreateTalentRequestBody { /** * * @type {CreateTalentRequestBodyData} * @memberof CreateTalentRequestBody */ data: CreateTalentRequestBodyData; } /** * Check if a given object implements the CreateTalentRequestBody interface. */ export declare function instanceOfCreateTalentRequestBody(value: object): value is CreateTalentRequestBody; export declare function CreateTalentRequestBodyFromJSON(json: any): CreateTalentRequestBody; export declare function CreateTalentRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTalentRequestBody; export declare function CreateTalentRequestBodyToJSON(json: any): CreateTalentRequestBody; export declare function CreateTalentRequestBodyToJSONTyped(value?: CreateTalentRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateTalentRequestBody.d.ts.map