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 mIsAllowIntercept;
    private boolean mIsOn;

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

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

    public CmdSetScreenStatus(boolean z, boolean z2) {
        this();
        this.mIsOn = z;
        this.mIsAllowIntercept = z2;
    }

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

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

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

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