FiatApi: Fiat operations

FiatApiR Documentation

Fiat operations

Description

binanceRapi.Fiat

Format

An R6Class generator object

NA

Public fields

apiClient

Handles the client-server communication.

Methods

Public methods


Method new()

Usage
FiatApi$new(apiClient)

Method SapiV1FiatOrdersGet()

Usage
FiatApi$SapiV1FiatOrdersGet(
  transaction.type,
  begin.time = NULL,
  end.time = NULL,
  page = NULL,
  rows = NULL,
  recv.window = NULL,
  ...
)

Method SapiV1FiatOrdersGetWithHttpInfo()

Usage
FiatApi$SapiV1FiatOrdersGetWithHttpInfo(
  transaction.type,
  begin.time = NULL,
  end.time = NULL,
  page = NULL,
  rows = NULL,
  recv.window = NULL,
  ...
)

Method SapiV1FiatPaymentsGet()

Usage
FiatApi$SapiV1FiatPaymentsGet(
  transaction.type,
  begin.time = NULL,
  end.time = NULL,
  page = NULL,
  rows = NULL,
  recv.window = NULL,
  ...
)

Method SapiV1FiatPaymentsGetWithHttpInfo()

Usage
FiatApi$SapiV1FiatPaymentsGetWithHttpInfo(
  transaction.type,
  begin.time = NULL,
  end.time = NULL,
  page = NULL,
  rows = NULL,
  recv.window = NULL,
  ...
)

Method clone()

The objects of this class are cloneable with this method.

Usage
FiatApi$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Examples

## 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)

grahamjwhite/binanceRapi documentation built on Nov. 22, 2022, 9:37 p.m.