PayApi: Pay operations

PayApiR Documentation

Pay operations

Description

binanceRapi.Pay

Format

An R6Class generator object

Methods

SapiV1PayTransactionsGet Get Pay Trade History (USER_DATA) - If startTimestamp and endTimestamp are not sent, the recent 90 days' data will be returned. - The max interval between startTimestamp and endTimestamp is 90 days. - Support for querying orders within the last 18 months. Weight(UID): 3000

  • @param start.timestamp integer

  • @param end.timestamp integer

  • @param limit integer

  • @param recv.window integer

  • @returnType InlineResponse200134

  • status code : 200 | Pay History

  • return type : InlineResponse200134

  • response headers :

  • status code : 400 | Bad Request

  • return type : Error

  • response headers :

  • status code : 401 | Unauthorized Request

  • return type : Error

  • response headers :

Public fields

apiClient

Handles the client-server communication.

Methods

Public methods


Method new()

Usage
PayApi$new(apiClient)

Method SapiV1PayTransactionsGet()

Usage
PayApi$SapiV1PayTransactionsGet(
  start.timestamp = NULL,
  end.timestamp = NULL,
  limit = NULL,
  recv.window = NULL,
  ...
)

Method SapiV1PayTransactionsGetWithHttpInfo()

Usage
PayApi$SapiV1PayTransactionsGetWithHttpInfo(
  start.timestamp = NULL,
  end.timestamp = NULL,
  limit = NULL,
  recv.window = NULL,
  ...
)

Method clone()

The objects of this class are cloneable with this method.

Usage
PayApi$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Examples

## Not run: 
####################  SapiV1PayTransactionsGet  ####################

library(binanceRapi)
var.start.timestamp <- 56 # integer | UTC timestamp in ms
var.end.timestamp <- 56 # integer | UTC timestamp in ms
var.limit <- 100 # integer | default 100, max 100
var.recv.window <- 5000 # integer | The value cannot be greater than 60000

#Get Pay Trade History (USER_DATA)
api.instance <- PayApi$new()

result <- api.instance$SapiV1PayTransactionsGet(start.timestamp=var.start.timestamp, end.timestamp=var.end.timestamp, limit=var.limit, recv.window=var.recv.window)



## End(Not run)

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