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 {

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

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

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

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

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

    public void setIsAllowIntercept(boolean z2) {
        this.f3405g = z2;
    }

    public void setOn(boolean z2) {
        this.f3404b = z2;
    }

    public CmdSetScreenStatus(boolean z2) {
        this();
        this.f3404b = z2;
    }

    public CmdSetScreenStatus(boolean z2, boolean z3) {
        this();
        this.f3404b = z2;
        this.f3405g = z3;
    }
}
