package com.seewo.sdk.internal.command;

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

/* JADX INFO: loaded from: classes.dex */
public class CmdCommandBox implements SDKParsable {
    private String b;
    private String d;

    private CmdCommandBox() {
    }

    public String getParamsJson() {
        return this.d;
    }

    public String getRequestName() {
        return this.b;
    }

    public void setParamsJson(String str) {
        this.d = str;
    }

    public void setRequestName(String str) {
        this.b = str;
    }

    public CmdCommandBox(String str, String str2) {
        this();
        this.b = str;
        this.d = str2;
    }
}
