/** * 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 DocumentRelationshipsCandidateSchema */ export interface DocumentRelationshipsCandidateSchema { /** * * @type {ResponseRelationshipsCandidateSchemaData} * @memberof DocumentRelationshipsCandidateSchema */ data?: ResponseRelationshipsCandidateSchemaData; } /** * Check if a given object implements the DocumentRelationshipsCandidateSchema interface. */ export declare function instanceOfDocumentRelationshipsCandidateSchema(value: object): value is DocumentRelationshipsCandidateSchema; export declare function DocumentRelationshipsCandidateSchemaFromJSON(json: any): DocumentRelationshipsCandidateSchema; export declare function DocumentRelationshipsCandidateSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentRelationshipsCandidateSchema; export declare function DocumentRelationshipsCandidateSchemaToJSON(json: any): DocumentRelationshipsCandidateSchema; export declare function DocumentRelationshipsCandidateSchemaToJSONTyped(value?: DocumentRelationshipsCandidateSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DocumentRelationshipsCandidateSchema.d.ts.map