com.petersamokhin.bots.sdk.utils.vkapi.calls.Call Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vk-bot-java-sdk Show documentation
Show all versions of vk-bot-java-sdk Show documentation
SDK for interacting with VK.com API
The newest version!
package com.petersamokhin.bots.sdk.utils.vkapi.calls;
import org.json.JSONObject;
/**
* Abstract class for backward compatibility
*/
public abstract class Call {
protected String methodName;
protected JSONObject params;
public String getMethodName() {
return methodName;
}
public JSONObject getParams() {
return params;
}
@Override
public String toString() {
return "Call{" +
"methodName='" + methodName + '\'' +
", params=" + params.toString() +
'}';
}
}