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

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

/* JADX INFO: loaded from: classes.dex */
public class CmdSetCustomWindowMode implements SDKParsable {
    public boolean isEnable;
    public int total;
    public int value;

    private CmdSetCustomWindowMode() {
    }

    public String toString() {
        return "CmdSetCustomWindowMode{isEnable=" + this.isEnable + ", total=" + this.total + ", value=" + this.value + '}';
    }

    public CmdSetCustomWindowMode(boolean z2, int i2, int i3) {
        this();
        this.isEnable = z2;
        this.total = i2;
        this.value = i3;
    }
}
