Interface EventCustomReportParams

Parameters for reporting customized messages. Used when calling [AgoraRTCClient.sendCustomReportMessage]IAgoraRTCClient.sendCustomReportMessage.

interface EventCustomReportParams {
    category: string;
    event: string;
    label: string;
    reportId: string;
    value: number;
}

Properties

category: string

The category of the message.

event: string

The event name of the message.

label: string

The label of the message.

reportId: string

The ID of the message.

value: number

The value of the message.