GetTransfers

data class GetTransfers(val perPage: Int?, val page: Int?) : TransferEndpoints

Endpoint for retrieving a paginated list of transfers (GET /v1/transfers).

Constructors

Link copied to clipboard
constructor(perPage: Int?, page: Int?)

Properties

Link copied to clipboard
open override val endpointURL: String

The resolved URL path for this endpoint.

Link copied to clipboard
open override val httpMethod: String

The HTTP method for this endpoint.

Link copied to clipboard
val page: Int?

The page number to retrieve, or null to retrieve the first page.

Link copied to clipboard
val perPage: Int?

The number of results per page, or null to use the API default.

Link copied to clipboard
open override val queryItems: List<QueryItem>?

Query parameters appended to the request URL, populated for GetTransfers only.