/** * 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 { ScheduleRelationshipsCandidateSchemaData } from './ScheduleRelationshipsCandidateSchemaData'; /** * * @export * @interface ScheduleRelationshipsCandidateSchema */ export interface ScheduleRelationshipsCandidateSchema { /** * * @type {ScheduleRelationshipsCandidateSchemaData} * @memberof ScheduleRelationshipsCandidateSchema */ data?: ScheduleRelationshipsCandidateSchemaData | null; } /** * Check if a given object implements the ScheduleRelationshipsCandidateSchema interface. */ export declare function instanceOfScheduleRelationshipsCandidateSchema(value: object): value is ScheduleRelationshipsCandidateSchema; export declare function ScheduleRelationshipsCandidateSchemaFromJSON(json: any): ScheduleRelationshipsCandidateSchema; export declare function ScheduleRelationshipsCandidateSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScheduleRelationshipsCandidateSchema; export declare function ScheduleRelationshipsCandidateSchemaToJSON(json: any): ScheduleRelationshipsCandidateSchema; export declare function ScheduleRelationshipsCandidateSchemaToJSONTyped(value?: ScheduleRelationshipsCandidateSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ScheduleRelationshipsCandidateSchema.d.ts.map