/** * 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 { ResponseRelationshipsCandidateSchemaData } from './ResponseRelationshipsCandidateSchemaData'; /** * * @export * @interface ResponseRelationshipsCandidateSchema */ export interface ResponseRelationshipsCandidateSchema { /** * * @type {ResponseRelationshipsCandidateSchemaData} * @memberof ResponseRelationshipsCandidateSchema */ data?: ResponseRelationshipsCandidateSchemaData; } /** * Check if a given object implements the ResponseRelationshipsCandidateSchema interface. */ export declare function instanceOfResponseRelationshipsCandidateSchema(value: object): value is ResponseRelationshipsCandidateSchema; export declare function ResponseRelationshipsCandidateSchemaFromJSON(json: any): ResponseRelationshipsCandidateSchema; export declare function ResponseRelationshipsCandidateSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseRelationshipsCandidateSchema; export declare function ResponseRelationshipsCandidateSchemaToJSON(json: any): ResponseRelationshipsCandidateSchema; export declare function ResponseRelationshipsCandidateSchemaToJSONTyped(value?: ResponseRelationshipsCandidateSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ResponseRelationshipsCandidateSchema.d.ts.map