/** * 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 { UpdateTalentRequestBodyData } from './UpdateTalentRequestBodyData'; /** * * @export * @interface UpdateTalentRequestBody */ export interface UpdateTalentRequestBody { /** * * @type {UpdateTalentRequestBodyData} * @memberof UpdateTalentRequestBody */ data: UpdateTalentRequestBodyData; } /** * Check if a given object implements the UpdateTalentRequestBody interface. */ export declare function instanceOfUpdateTalentRequestBody(value: object): value is UpdateTalentRequestBody; export declare function UpdateTalentRequestBodyFromJSON(json: any): UpdateTalentRequestBody; export declare function UpdateTalentRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateTalentRequestBody; export declare function UpdateTalentRequestBodyToJSON(json: any): UpdateTalentRequestBody; export declare function UpdateTalentRequestBodyToJSONTyped(value?: UpdateTalentRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateTalentRequestBody.d.ts.map