Interface MessageParticipantsOptions

interface MessageParticipantsOptions {
    coHostResponsibility: CoHostResponsibility[];
    participant: Participant;
    member: string;
    islevel: string;
    showAlert?: ShowAlert;
    coHost: string;
    updateIsMessagesModalVisible: ((isVisible: boolean) => void);
    updateDirectMessageDetails: ((participant: null | Participant) => void);
    updateStartDirectMessage: ((start: boolean) => void);
}

Properties

coHostResponsibility: CoHostResponsibility[]
participant: Participant
member: string
islevel: string
showAlert?: ShowAlert
coHost: string
updateIsMessagesModalVisible: ((isVisible: boolean) => void)
updateDirectMessageDetails: ((participant: null | Participant) => void)
updateStartDirectMessage: ((start: boolean) => void)