/** * 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 { MeetingRelationshipsTeamDataSchema } from './MeetingRelationshipsTeamDataSchema'; /** * Tenant users with stake in this meeting (host + co-hosts + observers + HR backup). Drives access control + 'my meetings' notifications + dashboard visibility. Candidates and guests do NOT live here - they appear in the attendees relationship once they join Chime. * @export * @interface MeetingRelationshipsTeamSchema */ export interface MeetingRelationshipsTeamSchema { /** * * @type {Array} * @memberof MeetingRelationshipsTeamSchema */ data?: Array; } /** * Check if a given object implements the MeetingRelationshipsTeamSchema interface. */ export declare function instanceOfMeetingRelationshipsTeamSchema(value: object): value is MeetingRelationshipsTeamSchema; export declare function MeetingRelationshipsTeamSchemaFromJSON(json: any): MeetingRelationshipsTeamSchema; export declare function MeetingRelationshipsTeamSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingRelationshipsTeamSchema; export declare function MeetingRelationshipsTeamSchemaToJSON(json: any): MeetingRelationshipsTeamSchema; export declare function MeetingRelationshipsTeamSchemaToJSONTyped(value?: MeetingRelationshipsTeamSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingRelationshipsTeamSchema.d.ts.map