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 CmdSetCustomWindowMode(boolean z, int i, int i2) {
        this();
        this.isEnable = z;
        this.total = i;
        this.value = i2;
    }

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