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

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

/* JADX INFO: loaded from: classes.dex */
public class CmdSetScreenStatus implements SDKParsable {
    private boolean b;

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

    private CmdSetScreenStatus() {
        this.f321e = true;
    }

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

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

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

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

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

    public CmdSetScreenStatus(boolean z, boolean z2) {
        this();
        this.b = z;
        this.f321e = z2;
    }
}
