/** * 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 { MeetingRelationshipsCandidateSchemaData } from './MeetingRelationshipsCandidateSchemaData'; /** * Candidate the meeting is about, when known (e.g. interview). Setting this also writes the top-level candidateId scalar (CandidateIdIndex GSI key) so the 'meetings for candidate X' query is a direct GSI hit. * @export * @interface MeetingRelationshipsCandidateSchema */ export interface MeetingRelationshipsCandidateSchema { /** * * @type {MeetingRelationshipsCandidateSchemaData} * @memberof MeetingRelationshipsCandidateSchema */ data?: MeetingRelationshipsCandidateSchemaData | null; } /** * Check if a given object implements the MeetingRelationshipsCandidateSchema interface. */ export declare function instanceOfMeetingRelationshipsCandidateSchema(value: object): value is MeetingRelationshipsCandidateSchema; export declare function MeetingRelationshipsCandidateSchemaFromJSON(json: any): MeetingRelationshipsCandidateSchema; export declare function MeetingRelationshipsCandidateSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingRelationshipsCandidateSchema; export declare function MeetingRelationshipsCandidateSchemaToJSON(json: any): MeetingRelationshipsCandidateSchema; export declare function MeetingRelationshipsCandidateSchemaToJSONTyped(value?: MeetingRelationshipsCandidateSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingRelationshipsCandidateSchema.d.ts.map