/**
 * Meeting and Attendee objects for joining a video meeting returned successfully.
 */
export interface TelemedJoinMeetingResponse {
    /**
     * The attendee object including details like AttendeeId and ExternalUserId.
     */
    Attendee?: {
        /**
         * Unique identifier for the attendee.
         */
        AttendeeId?: string;
        /**
         * External user identifier used to map to the attendee.
         */
        ExternalUserId?: string;
    };
    /**
     * The meeting object including details necessary for joining the meeting.
     */
    Meeting?: {
        /**
         * Unique identifier for the meeting.
         */
        MeetingId?: string;
    };
}
