/** * 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 { ResponseRelationshipsJobSchema } from './ResponseRelationshipsJobSchema'; import type { ResponseRelationshipsSurveySchema } from './ResponseRelationshipsSurveySchema'; import type { ResponseRelationshipsCandidateSchema } from './ResponseRelationshipsCandidateSchema'; /** * Recruiter-only. Never present on the guest surface. * @export * @interface ResponseRelationshipsSchema */ export interface ResponseRelationshipsSchema { /** * * @type {ResponseRelationshipsCandidateSchema} * @memberof ResponseRelationshipsSchema */ candidate?: ResponseRelationshipsCandidateSchema; /** * * @type {ResponseRelationshipsJobSchema} * @memberof ResponseRelationshipsSchema */ job?: ResponseRelationshipsJobSchema; /** * * @type {ResponseRelationshipsSurveySchema} * @memberof ResponseRelationshipsSchema */ survey?: ResponseRelationshipsSurveySchema; } /** * Check if a given object implements the ResponseRelationshipsSchema interface. */ export declare function instanceOfResponseRelationshipsSchema(value: object): value is ResponseRelationshipsSchema; export declare function ResponseRelationshipsSchemaFromJSON(json: any): ResponseRelationshipsSchema; export declare function ResponseRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseRelationshipsSchema; export declare function ResponseRelationshipsSchemaToJSON(json: any): ResponseRelationshipsSchema; export declare function ResponseRelationshipsSchemaToJSONTyped(value?: ResponseRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ResponseRelationshipsSchema.d.ts.map