package com.seewo.sdk.internal.command.device;

import com.seewo.sdk.internal.model.SDKParsable;

/* JADX INFO: loaded from: classes.dex */
public class CmdSetScreenStatusMute implements SDKParsable {
    private boolean mIsAllowIntercept;
    private boolean mIsMute;
    private boolean mIsOn;

    private CmdSetScreenStatusMute() {
        this.mIsAllowIntercept = true;
        this.mIsMute = true;
    }

    public CmdSetScreenStatusMute(boolean z) {
        this();
        this.mIsOn = z;
    }

    public CmdSetScreenStatusMute(boolean z, boolean z2) {
        this();
        this.mIsOn = z;
        this.mIsMute = z2;
    }

    public boolean isOn() {
        return this.mIsOn;
    }

    public void setOn(boolean z) {
        this.mIsOn = z;
    }

    public boolean isIsAllowIntercept() {
        return this.mIsAllowIntercept;
    }

    public void setIsAllowIntercept(boolean z) {
        this.mIsAllowIntercept = z;
    }

    public boolean isIsMute() {
        return this.mIsMute;
    }

    public void setIsMute(boolean z) {
        this.mIsMute = z;
    }
}
