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

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

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

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

    private CmdSetScreenStatusForce() {
        this.f322e = true;
    }

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

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

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

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

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

    public CmdSetScreenStatusForce(boolean z, boolean z2) {
        this();
        this.b = z;
        this.f322e = z2;
    }
}
