/** * 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 { GuestMeetingAttendeeResourceSchema } from './GuestMeetingAttendeeResourceSchema'; /** * Privacy-stripped list of attendees for the anon guest path. * Only the fields a guest in the room needs to render the Chime * roster - no PII (email/phone), no internal identifiers * (externalUserId/principalId), no bot-only fields (config/taskArn), * no relationships. * @export * @interface GuestMeetingAttendeesSchema */ export interface GuestMeetingAttendeesSchema { /** * * @type {Array} * @memberof GuestMeetingAttendeesSchema */ data?: Array; } /** * Check if a given object implements the GuestMeetingAttendeesSchema interface. */ export declare function instanceOfGuestMeetingAttendeesSchema(value: object): value is GuestMeetingAttendeesSchema; export declare function GuestMeetingAttendeesSchemaFromJSON(json: any): GuestMeetingAttendeesSchema; export declare function GuestMeetingAttendeesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GuestMeetingAttendeesSchema; export declare function GuestMeetingAttendeesSchemaToJSON(json: any): GuestMeetingAttendeesSchema; export declare function GuestMeetingAttendeesSchemaToJSONTyped(value?: GuestMeetingAttendeesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GuestMeetingAttendeesSchema.d.ts.map