/** * 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 { TalentRelationshipsTasksSchema } from './TalentRelationshipsTasksSchema'; import type { TalentRelationshipsFormsSchema } from './TalentRelationshipsFormsSchema'; import type { TalentRelationshipsCandidatesSchema } from './TalentRelationshipsCandidatesSchema'; import type { TalentRelationshipsOperationsSchema } from './TalentRelationshipsOperationsSchema'; import type { TalentRelationshipsFilesSchema } from './TalentRelationshipsFilesSchema'; /** * * @export * @interface TalentRelationshipsSchema */ export interface TalentRelationshipsSchema { /** * * @type {TalentRelationshipsCandidatesSchema} * @memberof TalentRelationshipsSchema */ candidates?: TalentRelationshipsCandidatesSchema; /** * * @type {TalentRelationshipsFilesSchema} * @memberof TalentRelationshipsSchema */ files?: TalentRelationshipsFilesSchema; /** * * @type {TalentRelationshipsFormsSchema} * @memberof TalentRelationshipsSchema */ forms?: TalentRelationshipsFormsSchema; /** * * @type {TalentRelationshipsOperationsSchema} * @memberof TalentRelationshipsSchema */ operations?: TalentRelationshipsOperationsSchema; /** * * @type {TalentRelationshipsTasksSchema} * @memberof TalentRelationshipsSchema */ tasks?: TalentRelationshipsTasksSchema; } /** * Check if a given object implements the TalentRelationshipsSchema interface. */ export declare function instanceOfTalentRelationshipsSchema(value: object): value is TalentRelationshipsSchema; export declare function TalentRelationshipsSchemaFromJSON(json: any): TalentRelationshipsSchema; export declare function TalentRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TalentRelationshipsSchema; export declare function TalentRelationshipsSchemaToJSON(json: any): TalentRelationshipsSchema; export declare function TalentRelationshipsSchemaToJSONTyped(value?: TalentRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TalentRelationshipsSchema.d.ts.map