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 {

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

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

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

    private CmdSetScreenStatusMute() {
        this.f2704f = true;
        this.f2705g = true;
    }

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

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

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

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

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

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

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

    public CmdSetScreenStatusMute(boolean z, boolean z2) {
        this();
        this.f2703b = z;
        this.f2705g = z2;
    }
}
