package com.seewo.sdk.internal.model;

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

    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;
    }
}
