UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

22 lines 810 B
/** Conference service */ export interface ConferenceParticipants { /** The arrival datetime of the participant in the conference. */ arrivalDateTime: string; /** The caller name of the participant */ callerName: string; /** The caller number of the participant */ callerNumber: string; /** The current level of the participant audio transmission */ energy: number; /** Whether the participant is active in the room */ floor: boolean; /** Whether the participant can hear the conference */ hear: boolean; /** The id of the participant */ id: number; /** Whether the participant can talk in the conference */ speak: boolean; /** Whether the participant is talking */ talking: boolean; } //# sourceMappingURL=ConferenceParticipants.d.ts.map