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 b;

    /* JADX INFO: renamed from: e, reason: collision with root package name */
    private boolean f323e;

    /* JADX INFO: renamed from: f, reason: collision with root package name */
    private boolean f324f;

    private CmdSetScreenStatusMute() {
        this.f323e = true;
        this.f324f = true;
    }

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

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

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

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

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

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

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

    public CmdSetScreenStatusMute(boolean z, boolean z2) {
        this();
        this.b = z;
        this.f324f = z2;
    }
}
