BLVTApi | R Documentation |
binanceRapi.BLVT
An R6Class
generator object
SapiV1BlvtRedeemPost Redeem BLVT (USER_DATA) Weight(IP): 1
@param token.name character
@param amount numeric
@param recv.window integer
@returnType InlineResponse200118
status code : 200 | Redemption record
return type : InlineResponse200118
response headers :
status code : 400 | Bad Request
return type : Error
response headers :
status code : 401 | Unauthorized Request
return type : Error
response headers :
SapiV1BlvtRedeemRecordGet Redemption Record (USER_DATA) - Only the data of the latest 90 days is available Weight(IP): 1
@param token.name character
@param id integer
@param start.time integer
@param end.time integer
@param limit integer
@param recv.window integer
@returnType list( inline_response_200_119 )
status code : 200 | List of redemption record
return type : array[InlineResponse200119]
response headers :
status code : 400 | Bad Request
return type : Error
response headers :
status code : 401 | Unauthorized Request
return type : Error
response headers :
SapiV1BlvtSubscribePost Subscribe BLVT (USER_DATA) Weight(IP): 1
@param token.name character
@param cost numeric
@param recv.window integer
@returnType InlineResponse200116
status code : 200 | Subscription Info
return type : InlineResponse200116
response headers :
status code : 400 | Bad Request
return type : Error
response headers :
status code : 401 | Unauthorized Request
return type : Error
response headers :
SapiV1BlvtSubscribeRecordGet Query Subscription Record (USER_DATA) - Only the data of the latest 90 days is available Weight(IP): 1
@param token.name character
@param id integer
@param start.time integer
@param end.time integer
@param limit integer
@param recv.window integer
@returnType InlineResponse200117
status code : 200 | List of subscription record
return type : InlineResponse200117
response headers :
status code : 400 | Bad Request
return type : Error
response headers :
status code : 401 | Unauthorized Request
return type : Error
response headers :
SapiV1BlvtTokenInfoGet BLVT Info (MARKET_DATA) Weight(IP): 1
@param token.name character
@returnType list( inline_response_200_115 )
status code : 200 | List of token information
return type : array[InlineResponse200115]
response headers :
status code : 400 | Bad Request
return type : Error
response headers :
SapiV1BlvtUserLimitGet BLVT User Limit Info (USER_DATA) Weight(IP): 1
@param token.name character
@param recv.window integer
@returnType list( inline_response_200_120 )
status code : 200 | List of token limits
return type : array[InlineResponse200120]
response headers :
status code : 400 | Bad Request
return type : Error
response headers :
status code : 401 | Unauthorized Request
return type : Error
response headers :
apiClient
Handles the client-server communication.
new()
BLVTApi$new(apiClient)
SapiV1BlvtRedeemPost()
BLVTApi$SapiV1BlvtRedeemPost(token.name, amount, recv.window = NULL, ...)
SapiV1BlvtRedeemPostWithHttpInfo()
BLVTApi$SapiV1BlvtRedeemPostWithHttpInfo( token.name, amount, recv.window = NULL, ... )
SapiV1BlvtRedeemRecordGet()
BLVTApi$SapiV1BlvtRedeemRecordGet( token.name = NULL, id = NULL, start.time = NULL, end.time = NULL, limit = NULL, recv.window = NULL, ... )
SapiV1BlvtRedeemRecordGetWithHttpInfo()
BLVTApi$SapiV1BlvtRedeemRecordGetWithHttpInfo( token.name = NULL, id = NULL, start.time = NULL, end.time = NULL, limit = NULL, recv.window = NULL, ... )
SapiV1BlvtSubscribePost()
BLVTApi$SapiV1BlvtSubscribePost(token.name, cost, recv.window = NULL, ...)
SapiV1BlvtSubscribePostWithHttpInfo()
BLVTApi$SapiV1BlvtSubscribePostWithHttpInfo( token.name, cost, recv.window = NULL, ... )
SapiV1BlvtSubscribeRecordGet()
BLVTApi$SapiV1BlvtSubscribeRecordGet( token.name = NULL, id = NULL, start.time = NULL, end.time = NULL, limit = NULL, recv.window = NULL, ... )
SapiV1BlvtSubscribeRecordGetWithHttpInfo()
BLVTApi$SapiV1BlvtSubscribeRecordGetWithHttpInfo( token.name = NULL, id = NULL, start.time = NULL, end.time = NULL, limit = NULL, recv.window = NULL, ... )
SapiV1BlvtTokenInfoGet()
BLVTApi$SapiV1BlvtTokenInfoGet(token.name = NULL, ...)
SapiV1BlvtTokenInfoGetWithHttpInfo()
BLVTApi$SapiV1BlvtTokenInfoGetWithHttpInfo(token.name = NULL, ...)
SapiV1BlvtUserLimitGet()
BLVTApi$SapiV1BlvtUserLimitGet(token.name = NULL, recv.window = NULL, ...)
SapiV1BlvtUserLimitGetWithHttpInfo()
BLVTApi$SapiV1BlvtUserLimitGetWithHttpInfo( token.name = NULL, recv.window = NULL, ... )
clone()
The objects of this class are cloneable with this method.
BLVTApi$clone(deep = FALSE)
deep
Whether to make a deep clone.
## Not run: #################### SapiV1BlvtRedeemPost #################### library(binanceRapi) var.token.name <- 'token.name_example' # character | BTCDOWN, BTCUP var.amount <- 1.01 # numeric | var.recv.window <- 5000 # integer | The value cannot be greater than 60000 #Redeem BLVT (USER_DATA) api.instance <- BLVTApi$new() result <- api.instance$SapiV1BlvtRedeemPost(var.token.name, var.amount, recv.window=var.recv.window) #################### SapiV1BlvtRedeemRecordGet #################### library(binanceRapi) var.token.name <- 'token.name_example' # character | BTCDOWN, BTCUP var.id <- 56 # integer | var.start.time <- 56 # integer | UTC timestamp in ms var.end.time <- 56 # integer | UTC timestamp in ms var.limit <- 56 # integer | default 1000, max 1000 var.recv.window <- 5000 # integer | The value cannot be greater than 60000 #Redemption Record (USER_DATA) api.instance <- BLVTApi$new() result <- api.instance$SapiV1BlvtRedeemRecordGet(token.name=var.token.name, id=var.id, start.time=var.start.time, end.time=var.end.time, limit=var.limit, recv.window=var.recv.window) #################### SapiV1BlvtSubscribePost #################### library(binanceRapi) var.token.name <- 'token.name_example' # character | BTCDOWN, BTCUP var.cost <- 3.4 # numeric | Spot balance var.recv.window <- 5000 # integer | The value cannot be greater than 60000 #Subscribe BLVT (USER_DATA) api.instance <- BLVTApi$new() result <- api.instance$SapiV1BlvtSubscribePost(var.token.name, var.cost, recv.window=var.recv.window) #################### SapiV1BlvtSubscribeRecordGet #################### library(binanceRapi) var.token.name <- 'token.name_example' # character | BTCDOWN, BTCUP var.id <- 56 # integer | var.start.time <- 56 # integer | UTC timestamp in ms var.end.time <- 56 # integer | UTC timestamp in ms var.limit <- 500 # integer | Default 500; max 1000. var.recv.window <- 5000 # integer | The value cannot be greater than 60000 #Query Subscription Record (USER_DATA) api.instance <- BLVTApi$new() result <- api.instance$SapiV1BlvtSubscribeRecordGet(token.name=var.token.name, id=var.id, start.time=var.start.time, end.time=var.end.time, limit=var.limit, recv.window=var.recv.window) #################### SapiV1BlvtTokenInfoGet #################### library(binanceRapi) var.token.name <- 'token.name_example' # character | BTCDOWN, BTCUP #BLVT Info (MARKET_DATA) api.instance <- BLVTApi$new() result <- api.instance$SapiV1BlvtTokenInfoGet(token.name=var.token.name) #################### SapiV1BlvtUserLimitGet #################### library(binanceRapi) var.token.name <- 'token.name_example' # character | BTCDOWN, BTCUP var.recv.window <- 5000 # integer | The value cannot be greater than 60000 #BLVT User Limit Info (USER_DATA) api.instance <- BLVTApi$new() result <- api.instance$SapiV1BlvtUserLimitGet(token.name=var.token.name, recv.window=var.recv.window) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.