Interface MuteResponse

interface MuteResponse {
    id: string;
    payload: {
        muteStatus: boolean;
        returnValue: boolean;
        soundOutput: SoundOutput;
    };
    type: "error"
    | "response"
    | "registered"
    | "prompt";
}

Hierarchy

Properties

Properties

id: string
payload: { muteStatus: boolean; returnValue: boolean; soundOutput: SoundOutput }
type: "error" | "response" | "registered" | "prompt"