/** * 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 { NoteRelationshipsCandidateDataSchema } from './NoteRelationshipsCandidateDataSchema'; /** * * @export * @interface NoteRelationshipsCandidateSchema */ export interface NoteRelationshipsCandidateSchema { /** * * @type {NoteRelationshipsCandidateDataSchema} * @memberof NoteRelationshipsCandidateSchema */ data?: NoteRelationshipsCandidateDataSchema | null; } /** * Check if a given object implements the NoteRelationshipsCandidateSchema interface. */ export declare function instanceOfNoteRelationshipsCandidateSchema(value: object): value is NoteRelationshipsCandidateSchema; export declare function NoteRelationshipsCandidateSchemaFromJSON(json: any): NoteRelationshipsCandidateSchema; export declare function NoteRelationshipsCandidateSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): NoteRelationshipsCandidateSchema; export declare function NoteRelationshipsCandidateSchemaToJSON(json: any): NoteRelationshipsCandidateSchema; export declare function NoteRelationshipsCandidateSchemaToJSONTyped(value?: NoteRelationshipsCandidateSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NoteRelationshipsCandidateSchema.d.ts.map