/** * 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'; /** * Pointer to the candidate this attendee IS, when known. Typically set when a guest joins via lobby link `?invite=cnd-xxx` or when the auth user is themselves a candidate. * @export * @interface MeetingAttendeeRelationshipsSchemaCandidate */ export interface MeetingAttendeeRelationshipsSchemaCandidate { /** * * @type {ScheduleRelationshipsCandidateSchemaData} * @memberof MeetingAttendeeRelationshipsSchemaCandidate */ data?: ScheduleRelationshipsCandidateSchemaData | null; } /** * Check if a given object implements the MeetingAttendeeRelationshipsSchemaCandidate interface. */ export declare function instanceOfMeetingAttendeeRelationshipsSchemaCandidate(value: object): value is MeetingAttendeeRelationshipsSchemaCandidate; export declare function MeetingAttendeeRelationshipsSchemaCandidateFromJSON(json: any): MeetingAttendeeRelationshipsSchemaCandidate; export declare function MeetingAttendeeRelationshipsSchemaCandidateFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingAttendeeRelationshipsSchemaCandidate; export declare function MeetingAttendeeRelationshipsSchemaCandidateToJSON(json: any): MeetingAttendeeRelationshipsSchemaCandidate; export declare function MeetingAttendeeRelationshipsSchemaCandidateToJSONTyped(value?: MeetingAttendeeRelationshipsSchemaCandidate | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingAttendeeRelationshipsSchemaCandidate.d.ts.map