/** * 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 { MeetingRelationshipsAttendeesDataSchema } from './MeetingRelationshipsAttendeesDataSchema'; /** * Chime attendee records - everyone with a live or terminated Chime SDK attendee for this meeting (humans + bots, unified). Use `?include=attendees,attendees.user,attendees.candidate` on showMeeting / listMeetings to sideload the full roster in one round-trip. Not embedded in attributes - relationship + sideload only. * @export * @interface MeetingRelationshipsAttendeesSchema */ export interface MeetingRelationshipsAttendeesSchema { /** * * @type {Array} * @memberof MeetingRelationshipsAttendeesSchema */ data?: Array; } /** * Check if a given object implements the MeetingRelationshipsAttendeesSchema interface. */ export declare function instanceOfMeetingRelationshipsAttendeesSchema(value: object): value is MeetingRelationshipsAttendeesSchema; export declare function MeetingRelationshipsAttendeesSchemaFromJSON(json: any): MeetingRelationshipsAttendeesSchema; export declare function MeetingRelationshipsAttendeesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingRelationshipsAttendeesSchema; export declare function MeetingRelationshipsAttendeesSchemaToJSON(json: any): MeetingRelationshipsAttendeesSchema; export declare function MeetingRelationshipsAttendeesSchemaToJSONTyped(value?: MeetingRelationshipsAttendeesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingRelationshipsAttendeesSchema.d.ts.map