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

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

/* JADX INFO: loaded from: classes.dex */
public class CmdUdiGetRequest implements SDKParsable {
    private String mUrl;

    public CmdUdiGetRequest() {
    }

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

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

    public CmdUdiGetRequest(String str) {
        this.mUrl = str;
    }
}
