/** * 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 { FinderRelationshipsUsersSchema } from './FinderRelationshipsUsersSchema'; import type { FinderRelationshipsCandidatesSchema } from './FinderRelationshipsCandidatesSchema'; import type { FinderRelationshipsJobsSchema } from './FinderRelationshipsJobsSchema'; import type { FinderRelationshipsTalentsSchema } from './FinderRelationshipsTalentsSchema'; /** * * @export * @interface FinderRelationshipsSchema */ export interface FinderRelationshipsSchema { /** * * @type {FinderRelationshipsJobsSchema} * @memberof FinderRelationshipsSchema */ jobs?: FinderRelationshipsJobsSchema; /** * * @type {FinderRelationshipsUsersSchema} * @memberof FinderRelationshipsSchema */ users?: FinderRelationshipsUsersSchema; /** * * @type {FinderRelationshipsTalentsSchema} * @memberof FinderRelationshipsSchema */ talents?: FinderRelationshipsTalentsSchema; /** * * @type {FinderRelationshipsCandidatesSchema} * @memberof FinderRelationshipsSchema */ candidates?: FinderRelationshipsCandidatesSchema; } /** * Check if a given object implements the FinderRelationshipsSchema interface. */ export declare function instanceOfFinderRelationshipsSchema(value: object): value is FinderRelationshipsSchema; export declare function FinderRelationshipsSchemaFromJSON(json: any): FinderRelationshipsSchema; export declare function FinderRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FinderRelationshipsSchema; export declare function FinderRelationshipsSchemaToJSON(json: any): FinderRelationshipsSchema; export declare function FinderRelationshipsSchemaToJSONTyped(value?: FinderRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FinderRelationshipsSchema.d.ts.map