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

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

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

    public CmdUdiPostRequest() {
    }

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

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

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

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

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