FiatApi | R Documentation |
binanceRapi.Fiat
An R6Class
generator object
NA
apiClient
Handles the client-server communication.
new()
FiatApi$new(apiClient)
SapiV1FiatOrdersGet()
FiatApi$SapiV1FiatOrdersGet( transaction.type, begin.time = NULL, end.time = NULL, page = NULL, rows = NULL, recv.window = NULL, ... )
SapiV1FiatOrdersGetWithHttpInfo()
FiatApi$SapiV1FiatOrdersGetWithHttpInfo( transaction.type, begin.time = NULL, end.time = NULL, page = NULL, rows = NULL, recv.window = NULL, ... )
SapiV1FiatPaymentsGet()
FiatApi$SapiV1FiatPaymentsGet( transaction.type, begin.time = NULL, end.time = NULL, page = NULL, rows = NULL, recv.window = NULL, ... )
SapiV1FiatPaymentsGetWithHttpInfo()
FiatApi$SapiV1FiatPaymentsGetWithHttpInfo( transaction.type, begin.time = NULL, end.time = NULL, page = NULL, rows = NULL, recv.window = NULL, ... )
clone()
The objects of this class are cloneable with this method.
FiatApi$clone(deep = FALSE)
deep
Whether to make a deep clone.
## Not run: #################### SapiV1FiatOrdersGet #################### library(binanceRapi) var.transaction.type <- '0' # character | * `0` - deposit * `1` - withdraw var.begin.time <- 1626144956000 # integer | var.end.time <- 56 # integer | UTC timestamp in ms var.page <- 1 # integer | Default 1 var.rows <- 300 # integer | Default 100, max 500 var.recv.window <- 5000 # integer | The value cannot be greater than 60000 #Fiat Deposit/Withdraw History (USER_DATA) api.instance <- FiatApi$new() result <- api.instance$SapiV1FiatOrdersGet(var.transaction.type, var.timestamp, var.signature, begin.time=var.begin.time, end.time=var.end.time, page=var.page, rows=var.rows, recv.window=var.recv.window) #################### SapiV1FiatPaymentsGet #################### library(binanceRapi) var.transaction.type <- '0' # character | * `0` - deposit * `1` - withdraw var.begin.time <- 1626144956000 # integer | var.end.time <- 56 # integer | UTC timestamp in ms var.page <- 1 # integer | Default 1 var.rows <- 300 # integer | Default 100, max 500 var.recv.window <- 5000 # integer | The value cannot be greater than 60000 #Fiat Payments History (USER_DATA) api.instance <- FiatApi$new() result <- api.instance$SapiV1FiatPaymentsGet(var.transaction.type, var.timestamp, var.signature, begin.time=var.begin.time, end.time=var.end.time, page=var.page, rows=var.rows, 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.