Web API
Represents a single interface that exists within the Web API.
Constructors
Functions
Link copied to clipboard
open fun call(function: String, callback: Consumer<KeyValue>, error: Consumer<WebAPI.WebAPIRequestException>)
open fun call(function: String, version: Int, callback: Consumer<KeyValue>, error: Consumer<WebAPI.WebAPIRequestException>)
open fun call(httpMethod: String, function: String, callback: Consumer<KeyValue>, error: Consumer<WebAPI.WebAPIRequestException>)
open fun call(httpMethod: String, function: String, version: Int, parameters: Map<String, String>): KeyValue
open fun call(function: String, parameters: Map<String, String>, callback: Consumer<KeyValue>, error: Consumer<WebAPI.WebAPIRequestException>)
open fun call(httpMethod: String, function: String, version: Int, callback: Consumer<KeyValue>, error: Consumer<WebAPI.WebAPIRequestException>)
open fun call(httpMethod: String, function: String, parameters: Map<String, String>, callback: Consumer<KeyValue>, error: Consumer<WebAPI.WebAPIRequestException>)
open fun call(httpMethod: String, function: String, version: Int, parameters: Map<String, String>, callback: Consumer<KeyValue>, error: Consumer<WebAPI.WebAPIRequestException>)
Manually calls the specified Web API function with the provided details.
Link copied to clipboard