Categorygithub.com/Crypto-APIs/Crypto_APIs_2.0_SDK_Golang

# README

Go API client for cryptoapis

Crypto APIs is a complex and innovative infrastructure layer that radically simplifies the development of any Blockchain and Crypto related applications. Organized around REST, Crypto APIs can assist both novice Bitcoin/Ethereum enthusiasts and crypto experts with the development of their blockchain applications. Crypto APIs provides unified endpoints and data, raw data, automatic tokens and coins forwardings, callback functionalities, and much more.

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 2021-03-20
  • Package version: 1.7.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://cryptoapis.io

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import cryptoapis "github.com/Crypto-APIs/Crypto_APIs_2.0_SDK_Golang"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), cryptoapis.ContextServerIndex, 1)

Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), cryptoapis.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), cryptoapis.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), cryptoapis.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://rest.cryptoapis.io

ClassMethodHTTP requestDescription
AssetsApiGetAssetDetailsByAssetIDGet /market-data/assets/assetId/{assetId}Get Asset Details By Asset ID
AssetsApiGetAssetDetailsByAssetSymbolGet /market-data/assets/{assetSymbol}Get Asset Details By Asset Symbol
AutomaticCoinsForwardingApiCreateAutomaticCoinsForwardingPost /blockchain-automations/{blockchain}/{network}/coins-forwarding/automationsCreate Automatic Coins Forwarding
AutomaticCoinsForwardingApiDeleteAutomaticCoinsForwardingDelete /blockchain-automations/{blockchain}/{network}/coins-forwarding/automations/{referenceId}Delete Automatic Coins Forwarding
AutomaticCoinsForwardingApiListCoinsForwardingAutomationsGet /blockchain-automations/{blockchain}/{network}/coins-forwarding/automationsList Coins Forwarding Automations
AutomaticTokensForwardingApiAddTokensToExistingFromAddressPost /blockchain-automations/{blockchain}/{network}/tokens-forwarding/automations/add-tokenAdd Tokens To Existing fromAddress
AutomaticTokensForwardingApiCreateAutomaticTokensForwardingPost /blockchain-automations/{blockchain}/{network}/tokens-forwarding/automationsCreate Automatic Tokens Forwarding
AutomaticTokensForwardingApiDeleteAutomaticTokensForwardingDelete /blockchain-automations/{blockchain}/{network}/tokens-forwarding/automations/{referenceId}Delete Automatic Tokens Forwarding
AutomaticTokensForwardingApiGetFeeAddressDetailsGet /blockchain-automations/{blockchain}/{network}/tokens-forwarding/fee-addressesGet Fee Address Details
AutomaticTokensForwardingApiListTokensForwardingAutomationsGet /blockchain-automations/{blockchain}/{network}/tokens-forwarding/automationsList Tokens Forwarding Automations
CallbackDataApiGetAddressDetailsFromCallbackGet /blockchain-events/{blockchain}/{network}/addresses/{address}Get Address Details From Callback
CallbackDataApiGetBlockDetailsByBlockHashFromCallbackGet /blockchain-events/{blockchain}/{network}/blocks/hash/{blockHash}Get Block Details By Block Hash From Callback
CallbackDataApiGetBlockDetailsByBlockHeightFromCallbackGet /blockchain-events/{blockchain}/{network}/blocks/height/{blockHeight}Get Block Details By Block Height From Callback
CallbackDataApiGetTransactionDetailsByTransactionIDFromCallbackGet /blockchain-events/{blockchain}/{network}/transactions/{transactionId}Get Transaction Details By Transaction ID From Callback
CreateSubscriptionsForApiBlockHeightReachedPost /blockchain-events/{blockchain}/{network}/subscriptions/block-height-reachedBlock Height Reached
CreateSubscriptionsForApiMinedTransactionPost /blockchain-events/{blockchain}/{network}/subscriptions/transaction-minedMined transaction
CreateSubscriptionsForApiNewBlockPost /blockchain-events/{blockchain}/{network}/subscriptions/block-minedNew Block
CreateSubscriptionsForApiNewConfirmedCoinsTransactionsPost /blockchain-events/{blockchain}/{network}/subscriptions/address-coins-transactions-confirmedNew confirmed coins transactions
CreateSubscriptionsForApiNewConfirmedCoinsTransactionsAndEachConfirmationPost /blockchain-events/{blockchain}/{network}/subscriptions/address-coins-transactions-confirmed-each-confirmationNew confirmed coins transactions and each confirmation
CreateSubscriptionsForApiNewConfirmedCoinsTransactionsForSpecificAmountPost /blockchain-events/{blockchain}/{network}/subscriptions/coins-transactions-for-specific-amountNew Confirmed Coins Transactions For Specific Amount
CreateSubscriptionsForApiNewConfirmedInternalTransactionsPost /blockchain-events/{blockchain}/{network}/subscriptions/address-internal-transactions-confirmedNew confirmed internal transactions
CreateSubscriptionsForApiNewConfirmedInternalTransactionsAndEachConfirmationPost /blockchain-events/{blockchain}/{network}/subscriptions/address-internal-transactions-confirmed-each-confirmationNew confirmed internal transactions and each confirmation
CreateSubscriptionsForApiNewConfirmedInternalTransactionsForSpecificAmountPost /blockchain-events/{blockchain}/{network}/subscriptions/internal-transactions-for-specific-amountNew Confirmed Internal Transactions For Specific Amount
CreateSubscriptionsForApiNewConfirmedTokenTransactionsForSpecificAmountPost /blockchain-events/{blockchain}/{network}/subscriptions/tokens-transfers-for-specific-amountNew Confirmed Token Transactions For Specific Amount
CreateSubscriptionsForApiNewConfirmedTokensTransactionsPost /blockchain-events/{blockchain}/{network}/subscriptions/address-tokens-transactions-confirmedNew confirmed tokens transactions
CreateSubscriptionsForApiNewConfirmedTokensTransactionsAndEachConfirmationPost /blockchain-events/{blockchain}/{network}/subscriptions/address-tokens-transactions-confirmed-each-confirmationNew confirmed tokens transactions and each confirmation
CreateSubscriptionsForApiNewUnconfirmedCoinsTransactionsPost /blockchain-events/{blockchain}/{network}/subscriptions/address-coins-transactions-unconfirmedNew unconfirmed coins transactions
CreateSubscriptionsForApiNewUnconfirmedTokensTransactionsPost /blockchain-events/{blockchain}/{network}/subscriptions/address-tokens-transactions-unconfirmedNew unconfirmed tokens transactions
ExchangeRatesApiGetExchangeRateByAssetSymbolsGet /market-data/exchange-rates/by-symbols/{fromAssetSymbol}/{toAssetSymbol}Get Exchange Rate By Asset Symbols
ExchangeRatesApiGetExchangeRateByAssetsIDsGet /market-data/exchange-rates/by-asset-ids/{fromAssetId}/{toAssetId}Get Exchange Rate By Assets IDs
FeaturesApiBroadcastLocallySignedTransactionPost /blockchain-tools/{blockchain}/{network}/transactions/broadcastBroadcast Locally Signed Transaction
FeaturesApiConvertBitcoinCashAddressPost /blockchain-tools/{blockchain}/{network}/address/convertConvert Bitcoin Cash Address
FeaturesApiDecodeRawTransactionHexPost /blockchain-tools/{blockchain}/{network}/decode-raw-transactionDecode Raw Transaction Hex
FeaturesApiDecodeXAddressGet /blockchain-tools/{blockchain}/{network}/decode-x-address/{xAddress}Decode X-Address
FeaturesApiDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesGet /blockchain-tools/{blockchain}/{network}/hd/{extendedPublicKey}/addresses/derive-addressDerive HD Wallet (xPub, yPub, zPub) Change Or Receiving Addresses
FeaturesApiEncodeXAddressGet /blockchain-tools/{blockchain}/{network}/encode-x-address/{classicAddress}/{addressTag}Encode X-Address
FeaturesApiEstimateGasLimitPost /blockchain-tools/{blockchain}/{network}/gas-limitEstimate Gas Limit
FeaturesApiEstimateTokenGasLimitPost /blockchain-tools/{blockchain}/{network}/gas-limit/contractEstimate Token Gas Limit
FeaturesApiGetEIP1559FeeRecommendationsGet /blockchain-tools/{blockchain}/{network}/fees/eip1559Get EIP 1559 Fee Recommendations
FeaturesApiValidateAddressPost /blockchain-tools/{blockchain}/{network}/addresses/validateValidate Address
GeneratingApiGenerateDepositAddressPost /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addressesGenerate Deposit Address
HDWalletsApiDeriveAndSyncNewChangeAddressesPost /blockchain-data/{blockchain}/{network}/hd/derive-sync-changeDerive And Sync New Change Addresses
HDWalletsApiDeriveAndSyncNewReceivingAddressesPost /blockchain-data/{blockchain}/{network}/hd/derive-and-syncDerive And Sync New Receiving Addresses
HDWalletsApiGetHDWalletXPubYPubZPubAssetsGet /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/assetsGet HD Wallet (xPub, yPub, zPub) Assets
HDWalletsApiGetHDWalletXPubYPubZPubDetailsGet /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/detailsGet HD Wallet (xPub, yPub, zPub) Details
HDWalletsApiListHDWalletXPubYPubZPubTransactionsGet /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/transactionsList HD Wallet (xPub, yPub, zPub) Transactions
HDWalletsApiListHDWalletXPubYPubZPubUTXOsGet /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/utxosList HD Wallet (xPub, yPub, zPub) UTXOs
HDWalletsApiListSyncedAddressesGet /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/synced-addressesList Synced Addresses
HDWalletsApiPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubPost /blockchain-data/{blockchain}/{network}/transactions/prepare-utxo-transactionPrepare A UTXO-Based Transaction From HD Wallet (xPub, yPub, zPub)
HDWalletsApiPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubPost /blockchain-data/{blockchain}/{network}/transactions/prepare-account-based-transactionPrepare An Account-Based Transaction From HD Wallet (xPub, yPub, zPub)
HDWalletsApiSyncHDWalletXPubYPubZPubPost /blockchain-data/{blockchain}/{network}/hd/syncSync HD Wallet (xPub, yPub, zPub)
HDWalletsApiSyncNewHDWalletXPubYPubZPubPost /blockchain-data/{blockchain}/{network}/hd/sync-newSync New HD Wallet (xPub, yPub, zPub)
InformativeApiGetTransactionRequestDetailsGet /wallet-as-a-service/transactionRequests/{transactionRequestId}Get Transaction Request Details
InformativeApiGetWalletAssetDetailsGet /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}Get Wallet Asset Details
InformativeApiGetWalletTransactionDetailsByTransactionIDGet /wallet-as-a-service/wallets/{blockchain}/{network}/transactions/{transactionId}Get Wallet Transaction Details By Transaction ID
InformativeApiListAllAssetsByWalletIDGet /wallet-as-a-service/wallets/{walletId}/assetsList All Assets By Wallet ID
InformativeApiListAllAssetsFromAllWalletsGet /wallet-as-a-service/wallets/all-assetsList All Assets From All Wallets
InformativeApiListDepositAddressesGet /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addressesList Deposit Addresses
InformativeApiListSupportedTokensGet /wallet-as-a-service/info/{blockchain}/{network}/supported-tokensList Supported Tokens
InformativeApiListWalletTransactionsGet /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/transactionsList Wallet Transactions
InternalApiGetInternalTransactionByTransactionHashAndOperationIdGet /blockchain-data/{blockchain}/{network}/transactions/{transactionHash}/internal/{operationId}Get Internal Transaction by Transaction Hash and Operation Id
InternalApiListInternalTransactionDetailsByTransactionHashGet /blockchain-data/{blockchain}/{network}/transactions/{transactionHash}/internalList Internal Transaction Details by Transaction Hash
InternalApiListInternalTransactionsByAddressGet /blockchain-data/{blockchain}/{network}/addresses/{address}/internalList Internal Transactions By Address
ManageSubscriptionsApiActivateBlockchainEventSubscriptionPost /blockchain-events/subscriptions/{referenceId}/activateActivate Blockchain Event Subscription
ManageSubscriptionsApiDeleteBlockchainEventSubscriptionDelete /blockchain-events/{blockchain}/{network}/subscriptions/{referenceId}Delete Blockchain Event Subscription
ManageSubscriptionsApiGetBlockchainEventSubscriptionDetailsByReferenceIDGet /blockchain-events/subscriptions/{referenceId}Get Blockchain Event Subscription Details By Reference ID
ManageSubscriptionsApiListBlockchainEventsSubscriptionsGet /blockchain-events/{blockchain}/{network}/subscriptionsList Blockchain Events Subscriptions
MetadataApiListSupportedAssetsGet /market-data/assets/supportedList Supported Assets
TokensApiGetTokenDetailsByContractAddressGet /blockchain-data/{blockchain}/{network}/addresses/{contractAddress}/contractGet Token Details by Contract Address
TokensApiListConfirmedTokensTransfersByAddressGet /blockchain-data/{blockchain}/{network}/addresses/{address}/tokens-transfersList Confirmed Tokens Transfers By Address
TokensApiListTokensByAddressGet /blockchain-data/{blockchain}/{network}/addresses/{address}/tokensList Tokens By Address
TokensApiListTokensTransfersByTransactionHashGet /blockchain-data/{blockchain}/{network}/transactions/{transactionHash}/tokens-transfersList Tokens Transfers By Transaction Hash
TokensApiListUnconfirmedTokensTransfersByAddressGet /blockchain-data/{blockchain}/{network}/addresses/{address}/tokens-transfers-unconfirmedList Unconfirmed Tokens Transfers By Address
TransactionsApiCreateCoinsTransactionFromAddressForWholeAmountPost /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses/{address}/all-transaction-requestsCreate Coins Transaction From Address For Whole Amount
TransactionsApiCreateCoinsTransactionRequestFromAddressPost /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses/{address}/transaction-requestsCreate Coins Transaction Request from Address
TransactionsApiCreateCoinsTransactionRequestFromWalletPost /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/transaction-requestsCreate Coins Transaction Request from Wallet
TransactionsApiCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityPost /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses/{senderAddress}/feeless-token-transaction-requestsCreate Fungible Token Transaction Request From Address Without Fee Priority
TransactionsApiCreateFungibleTokensTransactionRequestFromAddressPost /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses/{senderAddress}/token-transaction-requestsCreate Fungible Tokens Transaction Request from Address
TransactionsApiCreateSingleTransactionRequestFromAddressWithoutFeePriorityPost /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses/{address}/feeless-transaction-requestsCreate Single Transaction Request From Address Without Fee Priority
UnifiedEndpointsApiEstimateTransactionSmartFeeGet /blockchain-data/{blockchain}/{network}/estimate-transaction-smart-feeEstimate Transaction Smart Fee
UnifiedEndpointsApiGetAddressBalanceGet /blockchain-data/{blockchain}/{network}/addresses/{address}/balanceGet Address Balance
UnifiedEndpointsApiGetAddressDetailsGet /blockchain-data/{blockchain}/{network}/addresses/{address}Get Address Details
UnifiedEndpointsApiGetBlockDetailsByBlockHashGet /blockchain-data/{blockchain}/{network}/blocks/hash/{blockHash}Get Block Details By Block Hash
UnifiedEndpointsApiGetBlockDetailsByBlockHeightGet /blockchain-data/{blockchain}/{network}/blocks/height/{height}Get Block Details By Block Height
UnifiedEndpointsApiGetFeeRecommendationsGet /blockchain-data/{blockchain}/{network}/mempool/feesGet Fee Recommendations
UnifiedEndpointsApiGetLastMinedBlockGet /blockchain-data/{blockchain}/{network}/blocks/lastGet Last Mined Block
UnifiedEndpointsApiGetNextAvailableNonceGet /blockchain-data/{blockchain}/{network}/addresses/{address}/next-available-nonceGet Next Available Nonce
UnifiedEndpointsApiGetRawTransactionDataGet /blockchain-data/{blockchain}/{network}/transactions/{transactionId}/raw-dataGet Raw Transaction Data
UnifiedEndpointsApiGetTransactionDetailsByTransactionIDGet /blockchain-data/{blockchain}/{network}/transactions/{transactionId}Get Transaction Details By Transaction ID
UnifiedEndpointsApiListConfirmedTokensTransfersByAddressAndTimeRangeGet /blockchain-data/{blockchain}/{network}/addresses/{address}/tokens-transfers-by-time-rangeList Confirmed Tokens Transfers By Address And Time Range
UnifiedEndpointsApiListConfirmedTransactionsByAddressGet /blockchain-data/{blockchain}/{network}/addresses/{address}/transactionsList Confirmed Transactions By Address
UnifiedEndpointsApiListConfirmedTransactionsByAddressAndTimeRangeGet /blockchain-data/{blockchain}/{network}/addresses/{address}/transactions-by-time-rangeList Confirmed Transactions By Address And Time Range
UnifiedEndpointsApiListInternalTransactionsByAddressAndTimeRangeGet /blockchain-data/{blockchain}/{network}/addresses/{address}/internal-by-time-rangeList Internal Transactions By Address And Time Range
UnifiedEndpointsApiListLatestMinedBlocksGet /blockchain-data/{blockchain}/{network}/blocks/last/{count}List Latest Mined Blocks
UnifiedEndpointsApiListTransactionsByBlockHashGet /blockchain-data/{blockchain}/{network}/blocks/hash/{blockHash}/transactionsList Transactions by Block Hash
UnifiedEndpointsApiListTransactionsByBlockHeightGet /blockchain-data/{blockchain}/{network}/blocks/height/{height}/transactionsList Transactions by Block Height
UnifiedEndpointsApiListUnconfirmedTransactionsByAddressGet /blockchain-data/{blockchain}/{network}/address-transactions-unconfirmed/{address}List Unconfirmed Transactions by Address
UnifiedEndpointsApiListUnspentTransactionOutputsByAddressGet /blockchain-data/{blockchain}/{network}/addresses/{address}/unspent-outputsList Unspent Transaction Outputs By Address
XRPRippleApiGetLatestMinedXRPRippleBlockGet /blockchain-data/xrp-specific/{network}/blocks/lastGet Latest Mined XRP (Ripple) Block
XRPRippleApiGetXRPRippleAddressDetailsGet /blockchain-data/xrp-specific/{network}/addresses/{address}Get XRP (Ripple) Address Details
XRPRippleApiGetXRPRippleBlockDetailsByBlockHashGet /blockchain-data/xrp-specific/{network}/blocks/hash/{blockHash}Get XRP (Ripple) Block Details By Block Hash
XRPRippleApiGetXRPRippleBlockDetailsByBlockHeightGet /blockchain-data/xrp-specific/{network}/blocks/height/{blockHeight}Get XRP (Ripple) Block Details By Block Height
XRPRippleApiGetXRPRippleTransactionDetailsByTransactionIDGet /blockchain-data/xrp-specific/{network}/transactions/{transactionHash}Get XRP (Ripple) Transaction Details By Transaction ID
XRPRippleApiListXRPRippleTransactionsByAddressGet /blockchain-data/xrp-specific/{network}/addresses/{address}/transactionsList XRP (Ripple) Transactions by Address
XRPRippleApiListXRPRippleTransactionsByAddressAndTimeRangeGet /blockchain-data/xrp-specific/{network}/addresses/{address}/transactions-by-time-rangeList XRP (Ripple) Transactions By Address And Time Range
XRPRippleApiListXRPRippleTransactionsByBlockHashGet /blockchain-data/xrp-specific/{network}/blocks/hash/{blockHash}/transactionsList XRP (Ripple) Transactions By Block Hash
XRPRippleApiListXRPRippleTransactionsByBlockHeightGet /blockchain-data/xrp-specific/{network}/blocks/height/{blockHeight}/transactionsList XRP (Ripple) Transactions By Block Height
ZilliqaApiGetLatestMinedZilliqaBlockGet /blockchain-data/zilliqa-specific/{network}/blocks/lastGet Latest Mined Zilliqa Block
ZilliqaApiGetZilliqaAddressDetailsGet /blockchain-data/zilliqa-specific/{network}/addresses/{address}Get Zilliqa Address Details
ZilliqaApiGetZilliqaBlockDetailsByBlockHashGet /blockchain-data/zilliqa-specific/{network}/blocks/hash/{blockHash}Get Zilliqa Block Details By Block Hash
ZilliqaApiGetZilliqaBlockDetailsByBlockHeightGet /blockchain-data/zilliqa-specific/{network}/blocks/height/{blockHeight}Get Zilliqa Block Details By Block Height
ZilliqaApiGetZilliqaTransactionDetailsByTransactionIDGet /blockchain-data/zilliqa-specific/{network}/transactions/{transactionHash}Get Zilliqa Transaction Details by Transaction ID
ZilliqaApiListZilliqaTransactionsByAddressGet /blockchain-data/zilliqa-specific/{network}/addresses/{address}/transactionsList Zilliqa Transactions by Address
ZilliqaApiListZilliqaTransactionsByBlockHashGet /blockchain-data/zilliqa-specific/{network}/blocks/hash/{blockHash}/transactionsList Zilliqa Transactions By Block Hash
ZilliqaApiListZilliqaTransactionsByBlockHeightGet /blockchain-data/zilliqa-specific/{network}/blocks/height/{blockHeight}/transactionsList Zilliqa Transactions By Block Height

Documentation For Models

Documentation For Authorization

ApiKey

  • Type: API key
  • API key parameter name: x-api-key
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: x-api-key and passed in as the auth context for each request.

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

[email protected]

# Functions

AddressTokensTransactionConfirmedBep20AsAddressTokensTransactionConfirmedToken is a convenience function that returns AddressTokensTransactionConfirmedBep20 wrapped in AddressTokensTransactionConfirmedToken.
AddressTokensTransactionConfirmedEachConfirmationBep20AsAddressTokensTransactionConfirmedEachConfirmationToken is a convenience function that returns AddressTokensTransactionConfirmedEachConfirmationBep20 wrapped in AddressTokensTransactionConfirmedEachConfirmationToken.
AddressTokensTransactionConfirmedEachConfirmationErc20AsAddressTokensTransactionConfirmedEachConfirmationToken is a convenience function that returns AddressTokensTransactionConfirmedEachConfirmationErc20 wrapped in AddressTokensTransactionConfirmedEachConfirmationToken.
AddressTokensTransactionConfirmedEachConfirmationErc721AsAddressTokensTransactionConfirmedEachConfirmationToken is a convenience function that returns AddressTokensTransactionConfirmedEachConfirmationErc721 wrapped in AddressTokensTransactionConfirmedEachConfirmationToken.
AddressTokensTransactionConfirmedEachConfirmationOmniAsAddressTokensTransactionConfirmedEachConfirmationToken is a convenience function that returns AddressTokensTransactionConfirmedEachConfirmationOmni wrapped in AddressTokensTransactionConfirmedEachConfirmationToken.
AddressTokensTransactionConfirmedErc20AsAddressTokensTransactionConfirmedToken is a convenience function that returns AddressTokensTransactionConfirmedErc20 wrapped in AddressTokensTransactionConfirmedToken.
AddressTokensTransactionConfirmedErc721AsAddressTokensTransactionConfirmedToken is a convenience function that returns AddressTokensTransactionConfirmedErc721 wrapped in AddressTokensTransactionConfirmedToken.
AddressTokensTransactionConfirmedOmniAsAddressTokensTransactionConfirmedToken is a convenience function that returns AddressTokensTransactionConfirmedOmni wrapped in AddressTokensTransactionConfirmedToken.
AddressTokensTransactionUnconfirmedErc20AsAddressTokensTransactionUnconfirmedToken is a convenience function that returns AddressTokensTransactionUnconfirmedErc20 wrapped in AddressTokensTransactionUnconfirmedToken.
AddressTokensTransactionUnconfirmedErc721AsAddressTokensTransactionUnconfirmedToken is a convenience function that returns AddressTokensTransactionUnconfirmedErc721 wrapped in AddressTokensTransactionUnconfirmedToken.
AddressTokensTransactionUnconfirmedOmniAsAddressTokensTransactionUnconfirmedToken is a convenience function that returns AddressTokensTransactionUnconfirmedOmni wrapped in AddressTokensTransactionUnconfirmedToken.
AddTokensToExistingFromAddressRBTokenDataBitcoinOmniTokenAsAddTokensToExistingFromAddressRBTokenData is a convenience function that returns AddTokensToExistingFromAddressRBTokenDataBitcoinOmniToken wrapped in AddTokensToExistingFromAddressRBTokenData.
AddTokensToExistingFromAddressRBTokenDataEthereumTokenAsAddTokensToExistingFromAddressRBTokenData is a convenience function that returns AddTokensToExistingFromAddressRBTokenDataEthereumToken wrapped in AddTokensToExistingFromAddressRBTokenData.
AddTokensToExistingFromAddressRITSBOTAsAddTokensToExistingFromAddressRITS is a convenience function that returns AddTokensToExistingFromAddressRITSBOT wrapped in AddTokensToExistingFromAddressRITS.
AddTokensToExistingFromAddressRITSETAsAddTokensToExistingFromAddressRITS is a convenience function that returns AddTokensToExistingFromAddressRITSET wrapped in AddTokensToExistingFromAddressRITS.
AlreadyExistsAsBlockHeightReachedE409 is a convenience function that returns AlreadyExists wrapped in BlockHeightReachedE409.
AlreadyExistsAsBroadcastLocallySignedTransactionE409 is a convenience function that returns AlreadyExists wrapped in BroadcastLocallySignedTransactionE409.
AlreadyExistsAsCreateAutomaticCoinsForwardingE409 is a convenience function that returns AlreadyExists wrapped in CreateAutomaticCoinsForwardingE409.
AlreadyExistsAsMinedTransactionE409 is a convenience function that returns AlreadyExists wrapped in MinedTransactionE409.
AlreadyExistsAsNewBlockE409 is a convenience function that returns AlreadyExists wrapped in NewBlockE409.
AlreadyExistsAsNewConfirmedCoinsTransactionsAndEachConfirmationE409 is a convenience function that returns AlreadyExists wrapped in NewConfirmedCoinsTransactionsAndEachConfirmationE409.
AlreadyExistsAsNewConfirmedCoinsTransactionsE409 is a convenience function that returns AlreadyExists wrapped in NewConfirmedCoinsTransactionsE409.
AlreadyExistsAsNewConfirmedCoinsTransactionsForSpecificAmountE409 is a convenience function that returns AlreadyExists wrapped in NewConfirmedCoinsTransactionsForSpecificAmountE409.
AlreadyExistsAsNewConfirmedInternalTransactionsAndEachConfirmationE409 is a convenience function that returns AlreadyExists wrapped in NewConfirmedInternalTransactionsAndEachConfirmationE409.
AlreadyExistsAsNewConfirmedInternalTransactionsE409 is a convenience function that returns AlreadyExists wrapped in NewConfirmedInternalTransactionsE409.
AlreadyExistsAsNewConfirmedInternalTransactionsForSpecificAmountE409 is a convenience function that returns AlreadyExists wrapped in NewConfirmedInternalTransactionsForSpecificAmountE409.
AlreadyExistsAsNewConfirmedTokensTransactionsAndEachConfirmationE409 is a convenience function that returns AlreadyExists wrapped in NewConfirmedTokensTransactionsAndEachConfirmationE409.
AlreadyExistsAsNewConfirmedTokensTransactionsE409 is a convenience function that returns AlreadyExists wrapped in NewConfirmedTokensTransactionsE409.
AlreadyExistsAsNewConfirmedTokenTransactionsForSpecificAmountE409 is a convenience function that returns AlreadyExists wrapped in NewConfirmedTokenTransactionsForSpecificAmountE409.
AlreadyExistsAsNewUnconfirmedCoinsTransactionsE409 is a convenience function that returns AlreadyExists wrapped in NewUnconfirmedCoinsTransactionsE409.
AlreadyExistsAsNewUnconfirmedTokensTransactionsE409 is a convenience function that returns AlreadyExists wrapped in NewUnconfirmedTokensTransactionsE409.
AlreadyExistsAsSyncHDWalletXPubYPubZPubE409 is a convenience function that returns AlreadyExists wrapped in SyncHDWalletXPubYPubZPubE409.
AlreadyExistsAsSyncNewHDWalletXPubYPubZPubE409 is a convenience function that returns AlreadyExists wrapped in SyncNewHDWalletXPubYPubZPubE409.
BannedIpAddressAsActivateBlockchainEventSubscriptionE403 is a convenience function that returns BannedIpAddress wrapped in ActivateBlockchainEventSubscriptionE403.
BannedIpAddressAsAddTokensToExistingFromAddressE403 is a convenience function that returns BannedIpAddress wrapped in AddTokensToExistingFromAddressE403.
BannedIpAddressAsBlockHeightReachedE403 is a convenience function that returns BannedIpAddress wrapped in BlockHeightReachedE403.
BannedIpAddressAsBroadcastLocallySignedTransactionE403 is a convenience function that returns BannedIpAddress wrapped in BroadcastLocallySignedTransactionE403.
BannedIpAddressAsConvertBitcoinCashAddressE403 is a convenience function that returns BannedIpAddress wrapped in ConvertBitcoinCashAddressE403.
BannedIpAddressAsCreateAutomaticCoinsForwardingE403 is a convenience function that returns BannedIpAddress wrapped in CreateAutomaticCoinsForwardingE403.
BannedIpAddressAsCreateAutomaticTokensForwardingE403 is a convenience function that returns BannedIpAddress wrapped in CreateAutomaticTokensForwardingE403.
BannedIpAddressAsCreateCoinsTransactionFromAddressForWholeAmountE403 is a convenience function that returns BannedIpAddress wrapped in CreateCoinsTransactionFromAddressForWholeAmountE403.
BannedIpAddressAsCreateCoinsTransactionRequestFromAddressE403 is a convenience function that returns BannedIpAddress wrapped in CreateCoinsTransactionRequestFromAddressE403.
BannedIpAddressAsCreateCoinsTransactionRequestFromWalletE403 is a convenience function that returns BannedIpAddress wrapped in CreateCoinsTransactionRequestFromWalletE403.
BannedIpAddressAsCreateFungibleTokensTransactionRequestFromAddressE403 is a convenience function that returns BannedIpAddress wrapped in CreateFungibleTokensTransactionRequestFromAddressE403.
BannedIpAddressAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE403 is a convenience function that returns BannedIpAddress wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE403.
BannedIpAddressAsCreateSingleTransactionRequestFromAddressWithoutFeePriorityE403 is a convenience function that returns BannedIpAddress wrapped in CreateSingleTransactionRequestFromAddressWithoutFeePriorityE403.
BannedIpAddressAsDecodeRawTransactionHexE403 is a convenience function that returns BannedIpAddress wrapped in DecodeRawTransactionHexE403.
BannedIpAddressAsDecodeXAddressE403 is a convenience function that returns BannedIpAddress wrapped in DecodeXAddressE403.
BannedIpAddressAsDeleteAutomaticCoinsForwardingE403 is a convenience function that returns BannedIpAddress wrapped in DeleteAutomaticCoinsForwardingE403.
BannedIpAddressAsDeleteAutomaticTokensForwardingE403 is a convenience function that returns BannedIpAddress wrapped in DeleteAutomaticTokensForwardingE403.
BannedIpAddressAsDeleteBlockchainEventSubscriptionE403 is a convenience function that returns BannedIpAddress wrapped in DeleteBlockchainEventSubscriptionE403.
BannedIpAddressAsDeriveAndSyncNewChangeAddressesE403 is a convenience function that returns BannedIpAddress wrapped in DeriveAndSyncNewChangeAddressesE403.
BannedIpAddressAsDeriveAndSyncNewReceivingAddressesE403 is a convenience function that returns BannedIpAddress wrapped in DeriveAndSyncNewReceivingAddressesE403.
BannedIpAddressAsDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE403 is a convenience function that returns BannedIpAddress wrapped in DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE403.
BannedIpAddressAsEncodeXAddressE403 is a convenience function that returns BannedIpAddress wrapped in EncodeXAddressE403.
BannedIpAddressAsEstimateGasLimitE403 is a convenience function that returns BannedIpAddress wrapped in EstimateGasLimitE403.
BannedIpAddressAsEstimateTokenGasLimitE403 is a convenience function that returns BannedIpAddress wrapped in EstimateTokenGasLimitE403.
BannedIpAddressAsEstimateTransactionSmartFeeE403 is a convenience function that returns BannedIpAddress wrapped in EstimateTransactionSmartFeeE403.
BannedIpAddressAsGenerateDepositAddressE403 is a convenience function that returns BannedIpAddress wrapped in GenerateDepositAddressE403.
BannedIpAddressAsGetAddressBalanceE403 is a convenience function that returns BannedIpAddress wrapped in GetAddressBalanceE403.
BannedIpAddressAsGetAddressDetailsE403 is a convenience function that returns BannedIpAddress wrapped in GetAddressDetailsE403.
BannedIpAddressAsGetAddressDetailsFromCallbackE403 is a convenience function that returns BannedIpAddress wrapped in GetAddressDetailsFromCallbackE403.
BannedIpAddressAsGetAssetDetailsByAssetIDE403 is a convenience function that returns BannedIpAddress wrapped in GetAssetDetailsByAssetIDE403.
BannedIpAddressAsGetAssetDetailsByAssetSymbolE403 is a convenience function that returns BannedIpAddress wrapped in GetAssetDetailsByAssetSymbolE403.
BannedIpAddressAsGetBlockchainEventSubscriptionDetailsByReferenceIDE403 is a convenience function that returns BannedIpAddress wrapped in GetBlockchainEventSubscriptionDetailsByReferenceIDE403.
BannedIpAddressAsGetBlockDetailsByBlockHashE403 is a convenience function that returns BannedIpAddress wrapped in GetBlockDetailsByBlockHashE403.
BannedIpAddressAsGetBlockDetailsByBlockHashFromCallbackE403 is a convenience function that returns BannedIpAddress wrapped in GetBlockDetailsByBlockHashFromCallbackE403.
BannedIpAddressAsGetBlockDetailsByBlockHeightE403 is a convenience function that returns BannedIpAddress wrapped in GetBlockDetailsByBlockHeightE403.
BannedIpAddressAsGetBlockDetailsByBlockHeightFromCallbackE403 is a convenience function that returns BannedIpAddress wrapped in GetBlockDetailsByBlockHeightFromCallbackE403.
BannedIpAddressAsGetEIP1559FeeRecommendationsE403 is a convenience function that returns BannedIpAddress wrapped in GetEIP1559FeeRecommendationsE403.
BannedIpAddressAsGetExchangeRateByAssetsIDsE403 is a convenience function that returns BannedIpAddress wrapped in GetExchangeRateByAssetsIDsE403.
BannedIpAddressAsGetExchangeRateByAssetSymbolsE403 is a convenience function that returns BannedIpAddress wrapped in GetExchangeRateByAssetSymbolsE403.
BannedIpAddressAsGetFeeAddressDetailsE403 is a convenience function that returns BannedIpAddress wrapped in GetFeeAddressDetailsE403.
BannedIpAddressAsGetFeeRecommendationsE403 is a convenience function that returns BannedIpAddress wrapped in GetFeeRecommendationsE403.
BannedIpAddressAsGetHDWalletXPubYPubZPubAssetsE403 is a convenience function that returns BannedIpAddress wrapped in GetHDWalletXPubYPubZPubAssetsE403.
BannedIpAddressAsGetHDWalletXPubYPubZPubDetailsE403 is a convenience function that returns BannedIpAddress wrapped in GetHDWalletXPubYPubZPubDetailsE403.
BannedIpAddressAsGetInternalTransactionByTransactionHashAndOperationIdE403 is a convenience function that returns BannedIpAddress wrapped in GetInternalTransactionByTransactionHashAndOperationIdE403.
BannedIpAddressAsGetLastMinedBlockE403 is a convenience function that returns BannedIpAddress wrapped in GetLastMinedBlockE403.
BannedIpAddressAsGetLatestMinedXRPRippleBlockE403 is a convenience function that returns BannedIpAddress wrapped in GetLatestMinedXRPRippleBlockE403.
BannedIpAddressAsGetLatestMinedZilliqaBlockE403 is a convenience function that returns BannedIpAddress wrapped in GetLatestMinedZilliqaBlockE403.
BannedIpAddressAsGetNextAvailableNonceE403 is a convenience function that returns BannedIpAddress wrapped in GetNextAvailableNonceE403.
BannedIpAddressAsGetRawTransactionDataE403 is a convenience function that returns BannedIpAddress wrapped in GetRawTransactionDataE403.
BannedIpAddressAsGetTokenDetailsByContractAddressE403 is a convenience function that returns BannedIpAddress wrapped in GetTokenDetailsByContractAddressE403.
BannedIpAddressAsGetTransactionDetailsByTransactionIDE403 is a convenience function that returns BannedIpAddress wrapped in GetTransactionDetailsByTransactionIDE403.
BannedIpAddressAsGetTransactionDetailsByTransactionIDFromCallbackE403 is a convenience function that returns BannedIpAddress wrapped in GetTransactionDetailsByTransactionIDFromCallbackE403.
BannedIpAddressAsGetTransactionRequestDetailsE403 is a convenience function that returns BannedIpAddress wrapped in GetTransactionRequestDetailsE403.
BannedIpAddressAsGetWalletAssetDetailsE403 is a convenience function that returns BannedIpAddress wrapped in GetWalletAssetDetailsE403.
BannedIpAddressAsGetWalletTransactionDetailsByTransactionIDE403 is a convenience function that returns BannedIpAddress wrapped in GetWalletTransactionDetailsByTransactionIDE403.
BannedIpAddressAsGetXRPRippleAddressDetailsE403 is a convenience function that returns BannedIpAddress wrapped in GetXRPRippleAddressDetailsE403.
BannedIpAddressAsGetXRPRippleBlockDetailsByBlockHashE403 is a convenience function that returns BannedIpAddress wrapped in GetXRPRippleBlockDetailsByBlockHashE403.
BannedIpAddressAsGetXRPRippleBlockDetailsByBlockHeightE403 is a convenience function that returns BannedIpAddress wrapped in GetXRPRippleBlockDetailsByBlockHeightE403.
BannedIpAddressAsGetXRPRippleTransactionDetailsByTransactionIDE403 is a convenience function that returns BannedIpAddress wrapped in GetXRPRippleTransactionDetailsByTransactionIDE403.
BannedIpAddressAsGetZilliqaAddressDetailsE403 is a convenience function that returns BannedIpAddress wrapped in GetZilliqaAddressDetailsE403.
BannedIpAddressAsGetZilliqaBlockDetailsByBlockHashE403 is a convenience function that returns BannedIpAddress wrapped in GetZilliqaBlockDetailsByBlockHashE403.
BannedIpAddressAsGetZilliqaBlockDetailsByBlockHeightE403 is a convenience function that returns BannedIpAddress wrapped in GetZilliqaBlockDetailsByBlockHeightE403.
BannedIpAddressAsGetZilliqaTransactionDetailsByTransactionIDE403 is a convenience function that returns BannedIpAddress wrapped in GetZilliqaTransactionDetailsByTransactionIDE403.
BannedIpAddressAsListAllAssetsByWalletIDE403 is a convenience function that returns BannedIpAddress wrapped in ListAllAssetsByWalletIDE403.
BannedIpAddressAsListAllAssetsFromAllWalletsE403 is a convenience function that returns BannedIpAddress wrapped in ListAllAssetsFromAllWalletsE403.
BannedIpAddressAsListBlockchainEventsSubscriptionsE403 is a convenience function that returns BannedIpAddress wrapped in ListBlockchainEventsSubscriptionsE403.
BannedIpAddressAsListCoinsForwardingAutomationsE403 is a convenience function that returns BannedIpAddress wrapped in ListCoinsForwardingAutomationsE403.
BannedIpAddressAsListConfirmedTokensTransfersByAddressAndTimeRangeE403 is a convenience function that returns BannedIpAddress wrapped in ListConfirmedTokensTransfersByAddressAndTimeRangeE403.
BannedIpAddressAsListConfirmedTokensTransfersByAddressE403 is a convenience function that returns BannedIpAddress wrapped in ListConfirmedTokensTransfersByAddressE403.
BannedIpAddressAsListConfirmedTransactionsByAddressAndTimeRangeE403 is a convenience function that returns BannedIpAddress wrapped in ListConfirmedTransactionsByAddressAndTimeRangeE403.
BannedIpAddressAsListConfirmedTransactionsByAddressE403 is a convenience function that returns BannedIpAddress wrapped in ListConfirmedTransactionsByAddressE403.
BannedIpAddressAsListDepositAddressesE403 is a convenience function that returns BannedIpAddress wrapped in ListDepositAddressesE403.
BannedIpAddressAsListHDWalletXPubYPubZPubTransactionsE403 is a convenience function that returns BannedIpAddress wrapped in ListHDWalletXPubYPubZPubTransactionsE403.
BannedIpAddressAsListHDWalletXPubYPubZPubUTXOsE403 is a convenience function that returns BannedIpAddress wrapped in ListHDWalletXPubYPubZPubUTXOsE403.
BannedIpAddressAsListInternalTransactionDetailsByTransactionHashE403 is a convenience function that returns BannedIpAddress wrapped in ListInternalTransactionDetailsByTransactionHashE403.
BannedIpAddressAsListInternalTransactionsByAddressAndTimeRangeE403 is a convenience function that returns BannedIpAddress wrapped in ListInternalTransactionsByAddressAndTimeRangeE403.
BannedIpAddressAsListInternalTransactionsByAddressE403 is a convenience function that returns BannedIpAddress wrapped in ListInternalTransactionsByAddressE403.
BannedIpAddressAsListLatestMinedBlocksE403 is a convenience function that returns BannedIpAddress wrapped in ListLatestMinedBlocksE403.
BannedIpAddressAsListSupportedAssetsE403 is a convenience function that returns BannedIpAddress wrapped in ListSupportedAssetsE403.
BannedIpAddressAsListSupportedTokensE403 is a convenience function that returns BannedIpAddress wrapped in ListSupportedTokensE403.
BannedIpAddressAsListSyncedAddressesE403 is a convenience function that returns BannedIpAddress wrapped in ListSyncedAddressesE403.
BannedIpAddressAsListTokensByAddressE403 is a convenience function that returns BannedIpAddress wrapped in ListTokensByAddressE403.
BannedIpAddressAsListTokensForwardingAutomationsE403 is a convenience function that returns BannedIpAddress wrapped in ListTokensForwardingAutomationsE403.
BannedIpAddressAsListTokensTransfersByTransactionHashE403 is a convenience function that returns BannedIpAddress wrapped in ListTokensTransfersByTransactionHashE403.
BannedIpAddressAsListTransactionsByBlockHashE403 is a convenience function that returns BannedIpAddress wrapped in ListTransactionsByBlockHashE403.
BannedIpAddressAsListTransactionsByBlockHeightE403 is a convenience function that returns BannedIpAddress wrapped in ListTransactionsByBlockHeightE403.
BannedIpAddressAsListUnconfirmedTokensTransfersByAddressE403 is a convenience function that returns BannedIpAddress wrapped in ListUnconfirmedTokensTransfersByAddressE403.
BannedIpAddressAsListUnconfirmedTransactionsByAddressE403 is a convenience function that returns BannedIpAddress wrapped in ListUnconfirmedTransactionsByAddressE403.
BannedIpAddressAsListUnspentTransactionOutputsByAddressE403 is a convenience function that returns BannedIpAddress wrapped in ListUnspentTransactionOutputsByAddressE403.
BannedIpAddressAsListWalletTransactionsE403 is a convenience function that returns BannedIpAddress wrapped in ListWalletTransactionsE403.
BannedIpAddressAsListXRPRippleTransactionsByAddressAndTimeRangeE403 is a convenience function that returns BannedIpAddress wrapped in ListXRPRippleTransactionsByAddressAndTimeRangeE403.
BannedIpAddressAsListXRPRippleTransactionsByAddressE403 is a convenience function that returns BannedIpAddress wrapped in ListXRPRippleTransactionsByAddressE403.
BannedIpAddressAsListXRPRippleTransactionsByBlockHashE403 is a convenience function that returns BannedIpAddress wrapped in ListXRPRippleTransactionsByBlockHashE403.
BannedIpAddressAsListXRPRippleTransactionsByBlockHeightE403 is a convenience function that returns BannedIpAddress wrapped in ListXRPRippleTransactionsByBlockHeightE403.
BannedIpAddressAsListZilliqaTransactionsByAddressE403 is a convenience function that returns BannedIpAddress wrapped in ListZilliqaTransactionsByAddressE403.
BannedIpAddressAsListZilliqaTransactionsByBlockHashE403 is a convenience function that returns BannedIpAddress wrapped in ListZilliqaTransactionsByBlockHashE403.
BannedIpAddressAsListZilliqaTransactionsByBlockHeightE403 is a convenience function that returns BannedIpAddress wrapped in ListZilliqaTransactionsByBlockHeightE403.
BannedIpAddressAsMinedTransactionE403 is a convenience function that returns BannedIpAddress wrapped in MinedTransactionE403.
BannedIpAddressAsNewBlockE403 is a convenience function that returns BannedIpAddress wrapped in NewBlockE403.
BannedIpAddressAsNewConfirmedCoinsTransactionsAndEachConfirmationE403 is a convenience function that returns BannedIpAddress wrapped in NewConfirmedCoinsTransactionsAndEachConfirmationE403.
BannedIpAddressAsNewConfirmedCoinsTransactionsE403 is a convenience function that returns BannedIpAddress wrapped in NewConfirmedCoinsTransactionsE403.
BannedIpAddressAsNewConfirmedCoinsTransactionsForSpecificAmountE403 is a convenience function that returns BannedIpAddress wrapped in NewConfirmedCoinsTransactionsForSpecificAmountE403.
BannedIpAddressAsNewConfirmedInternalTransactionsAndEachConfirmationE403 is a convenience function that returns BannedIpAddress wrapped in NewConfirmedInternalTransactionsAndEachConfirmationE403.
BannedIpAddressAsNewConfirmedInternalTransactionsE403 is a convenience function that returns BannedIpAddress wrapped in NewConfirmedInternalTransactionsE403.
BannedIpAddressAsNewConfirmedInternalTransactionsForSpecificAmountE403 is a convenience function that returns BannedIpAddress wrapped in NewConfirmedInternalTransactionsForSpecificAmountE403.
BannedIpAddressAsNewConfirmedTokensTransactionsAndEachConfirmationE403 is a convenience function that returns BannedIpAddress wrapped in NewConfirmedTokensTransactionsAndEachConfirmationE403.
BannedIpAddressAsNewConfirmedTokensTransactionsE403 is a convenience function that returns BannedIpAddress wrapped in NewConfirmedTokensTransactionsE403.
BannedIpAddressAsNewConfirmedTokenTransactionsForSpecificAmountE403 is a convenience function that returns BannedIpAddress wrapped in NewConfirmedTokenTransactionsForSpecificAmountE403.
BannedIpAddressAsNewUnconfirmedCoinsTransactionsE403 is a convenience function that returns BannedIpAddress wrapped in NewUnconfirmedCoinsTransactionsE403.
BannedIpAddressAsNewUnconfirmedTokensTransactionsE403 is a convenience function that returns BannedIpAddress wrapped in NewUnconfirmedTokensTransactionsE403.
BannedIpAddressAsPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE403 is a convenience function that returns BannedIpAddress wrapped in PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE403.
BannedIpAddressAsPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE403 is a convenience function that returns BannedIpAddress wrapped in PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE403.
BannedIpAddressAsSyncHDWalletXPubYPubZPubE403 is a convenience function that returns BannedIpAddress wrapped in SyncHDWalletXPubYPubZPubE403.
BannedIpAddressAsSyncNewHDWalletXPubYPubZPubE403 is a convenience function that returns BannedIpAddress wrapped in SyncNewHDWalletXPubYPubZPubE403.
BannedIpAddressAsValidateAddressE403 is a convenience function that returns BannedIpAddress wrapped in ValidateAddressE403.
BlockchainEventsCallbacksLimitReachedAsBlockHeightReachedE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in BlockHeightReachedE403.
BlockchainEventsCallbacksLimitReachedAsMinedTransactionE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in MinedTransactionE403.
BlockchainEventsCallbacksLimitReachedAsNewBlockE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in NewBlockE403.
BlockchainEventsCallbacksLimitReachedAsNewConfirmedCoinsTransactionsAndEachConfirmationE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in NewConfirmedCoinsTransactionsAndEachConfirmationE403.
BlockchainEventsCallbacksLimitReachedAsNewConfirmedCoinsTransactionsE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in NewConfirmedCoinsTransactionsE403.
BlockchainEventsCallbacksLimitReachedAsNewConfirmedCoinsTransactionsForSpecificAmountE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in NewConfirmedCoinsTransactionsForSpecificAmountE403.
BlockchainEventsCallbacksLimitReachedAsNewConfirmedInternalTransactionsAndEachConfirmationE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in NewConfirmedInternalTransactionsAndEachConfirmationE403.
BlockchainEventsCallbacksLimitReachedAsNewConfirmedInternalTransactionsE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in NewConfirmedInternalTransactionsE403.
BlockchainEventsCallbacksLimitReachedAsNewConfirmedInternalTransactionsForSpecificAmountE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in NewConfirmedInternalTransactionsForSpecificAmountE403.
BlockchainEventsCallbacksLimitReachedAsNewConfirmedTokensTransactionsAndEachConfirmationE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in NewConfirmedTokensTransactionsAndEachConfirmationE403.
BlockchainEventsCallbacksLimitReachedAsNewConfirmedTokensTransactionsE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in NewConfirmedTokensTransactionsE403.
BlockchainEventsCallbacksLimitReachedAsNewConfirmedTokenTransactionsForSpecificAmountE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in NewConfirmedTokenTransactionsForSpecificAmountE403.
BlockchainEventsCallbacksLimitReachedAsNewUnconfirmedCoinsTransactionsE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in NewUnconfirmedCoinsTransactionsE403.
BlockchainEventsCallbacksLimitReachedAsNewUnconfirmedTokensTransactionsE403 is a convenience function that returns BlockchainEventsCallbacksLimitReached wrapped in NewUnconfirmedTokensTransactionsE403.
CacheExpires helper function to determine remaining time before repeating a request.
CoinsForwardingAutomationsLimitReachedAsCreateAutomaticCoinsForwardingE403 is a convenience function that returns CoinsForwardingAutomationsLimitReached wrapped in CreateAutomaticCoinsForwardingE403.
ConfirmedTokensTransactionForCertainAmountOrHigherBep20AsConfirmedTokensTransactionForCertainAmountOrHigherToken is a convenience function that returns ConfirmedTokensTransactionForCertainAmountOrHigherBep20 wrapped in ConfirmedTokensTransactionForCertainAmountOrHigherToken.
ConfirmedTokensTransactionForCertainAmountOrHigherErc20AsConfirmedTokensTransactionForCertainAmountOrHigherToken is a convenience function that returns ConfirmedTokensTransactionForCertainAmountOrHigherErc20 wrapped in ConfirmedTokensTransactionForCertainAmountOrHigherToken.
ConfirmedTokensTransactionForCertainAmountOrHigherErc721AsConfirmedTokensTransactionForCertainAmountOrHigherToken is a convenience function that returns ConfirmedTokensTransactionForCertainAmountOrHigherErc721 wrapped in ConfirmedTokensTransactionForCertainAmountOrHigherToken.
CouldNotCalculateRateForPairAsGetExchangeRateByAssetsIDsE422 is a convenience function that returns CouldNotCalculateRateForPair wrapped in GetExchangeRateByAssetsIDsE422.
CouldNotCalculateRateForPairAsGetExchangeRateByAssetSymbolsE422 is a convenience function that returns CouldNotCalculateRateForPair wrapped in GetExchangeRateByAssetSymbolsE422.
CreateAutomaticTokensForwardingRBTokenDataBitcoinOmniTokenAsCreateAutomaticTokensForwardingRBTokenData is a convenience function that returns CreateAutomaticTokensForwardingRBTokenDataBitcoinOmniToken wrapped in CreateAutomaticTokensForwardingRBTokenData.
CreateAutomaticTokensForwardingRBTokenDataEthereumTokenAsCreateAutomaticTokensForwardingRBTokenData is a convenience function that returns CreateAutomaticTokensForwardingRBTokenDataEthereumToken wrapped in CreateAutomaticTokensForwardingRBTokenData.
CreateAutomaticTokensForwardingRITSBOTAsCreateAutomaticTokensForwardingRITS is a convenience function that returns CreateAutomaticTokensForwardingRITSBOT wrapped in CreateAutomaticTokensForwardingRITS.
CreateAutomaticTokensForwardingRITSETAsCreateAutomaticTokensForwardingRITS is a convenience function that returns CreateAutomaticTokensForwardingRITSET wrapped in CreateAutomaticTokensForwardingRITS.
CreateFungibleTokensTransactionRequestFromAddressRISEAsCreateFungibleTokensTransactionRequestFromAddressRIS is a convenience function that returns CreateFungibleTokensTransactionRequestFromAddressRISE wrapped in CreateFungibleTokensTransactionRequestFromAddressRIS.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRISTAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIS is a convenience function that returns CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIST wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIS.
DecodeRawTransactionHexRISB22AsDecodeRawTransactionHexRIS is a convenience function that returns DecodeRawTransactionHexRISB22 wrapped in DecodeRawTransactionHexRIS.
DecodeRawTransactionHexRISB2AsDecodeRawTransactionHexRIS is a convenience function that returns DecodeRawTransactionHexRISB2 wrapped in DecodeRawTransactionHexRIS.
DecodeRawTransactionHexRISBAsDecodeRawTransactionHexRIS is a convenience function that returns DecodeRawTransactionHexRISB wrapped in DecodeRawTransactionHexRIS.
DecodeRawTransactionHexRISD2AsDecodeRawTransactionHexRIS is a convenience function that returns DecodeRawTransactionHexRISD2 wrapped in DecodeRawTransactionHexRIS.
DecodeRawTransactionHexRISDAsDecodeRawTransactionHexRIS is a convenience function that returns DecodeRawTransactionHexRISD wrapped in DecodeRawTransactionHexRIS.
DecodeRawTransactionHexRISE2AsDecodeRawTransactionHexRIS is a convenience function that returns DecodeRawTransactionHexRISE2 wrapped in DecodeRawTransactionHexRIS.
DecodeRawTransactionHexRISEAsDecodeRawTransactionHexRIS is a convenience function that returns DecodeRawTransactionHexRISE wrapped in DecodeRawTransactionHexRIS.
DecodeRawTransactionHexRISLAsDecodeRawTransactionHexRIS is a convenience function that returns DecodeRawTransactionHexRISL wrapped in DecodeRawTransactionHexRIS.
DecodeRawTransactionHexRISZAsDecodeRawTransactionHexRIS is a convenience function that returns DecodeRawTransactionHexRISZ wrapped in DecodeRawTransactionHexRIS.
DeleteAutomaticTokensForwardingRITSBOTAsDeleteAutomaticTokensForwardingRITS is a convenience function that returns DeleteAutomaticTokensForwardingRITSBOT wrapped in DeleteAutomaticTokensForwardingRITS.
DeleteAutomaticTokensForwardingRITSETAsDeleteAutomaticTokensForwardingRITS is a convenience function that returns DeleteAutomaticTokensForwardingRITSET wrapped in DeleteAutomaticTokensForwardingRITS.
EndpointNotAllowedForApiKeyAsActivateBlockchainEventSubscriptionE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ActivateBlockchainEventSubscriptionE403.
EndpointNotAllowedForApiKeyAsAddTokensToExistingFromAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in AddTokensToExistingFromAddressE403.
EndpointNotAllowedForApiKeyAsBlockHeightReachedE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in BlockHeightReachedE403.
EndpointNotAllowedForApiKeyAsBroadcastLocallySignedTransactionE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in BroadcastLocallySignedTransactionE403.
EndpointNotAllowedForApiKeyAsConvertBitcoinCashAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ConvertBitcoinCashAddressE403.
EndpointNotAllowedForApiKeyAsCreateAutomaticCoinsForwardingE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in CreateAutomaticCoinsForwardingE403.
EndpointNotAllowedForApiKeyAsCreateAutomaticTokensForwardingE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in CreateAutomaticTokensForwardingE403.
EndpointNotAllowedForApiKeyAsCreateCoinsTransactionFromAddressForWholeAmountE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in CreateCoinsTransactionFromAddressForWholeAmountE403.
EndpointNotAllowedForApiKeyAsCreateCoinsTransactionRequestFromAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in CreateCoinsTransactionRequestFromAddressE403.
EndpointNotAllowedForApiKeyAsCreateCoinsTransactionRequestFromWalletE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in CreateCoinsTransactionRequestFromWalletE403.
EndpointNotAllowedForApiKeyAsCreateFungibleTokensTransactionRequestFromAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in CreateFungibleTokensTransactionRequestFromAddressE403.
EndpointNotAllowedForApiKeyAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE403.
EndpointNotAllowedForApiKeyAsCreateSingleTransactionRequestFromAddressWithoutFeePriorityE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in CreateSingleTransactionRequestFromAddressWithoutFeePriorityE403.
EndpointNotAllowedForApiKeyAsDecodeRawTransactionHexE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in DecodeRawTransactionHexE403.
EndpointNotAllowedForApiKeyAsDecodeXAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in DecodeXAddressE403.
EndpointNotAllowedForApiKeyAsDeleteAutomaticCoinsForwardingE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in DeleteAutomaticCoinsForwardingE403.
EndpointNotAllowedForApiKeyAsDeleteAutomaticTokensForwardingE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in DeleteAutomaticTokensForwardingE403.
EndpointNotAllowedForApiKeyAsDeleteBlockchainEventSubscriptionE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in DeleteBlockchainEventSubscriptionE403.
EndpointNotAllowedForApiKeyAsDeriveAndSyncNewChangeAddressesE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in DeriveAndSyncNewChangeAddressesE403.
EndpointNotAllowedForApiKeyAsDeriveAndSyncNewReceivingAddressesE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in DeriveAndSyncNewReceivingAddressesE403.
EndpointNotAllowedForApiKeyAsDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE403.
EndpointNotAllowedForApiKeyAsEncodeXAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in EncodeXAddressE403.
EndpointNotAllowedForApiKeyAsEstimateGasLimitE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in EstimateGasLimitE403.
EndpointNotAllowedForApiKeyAsEstimateTokenGasLimitE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in EstimateTokenGasLimitE403.
EndpointNotAllowedForApiKeyAsEstimateTransactionSmartFeeE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in EstimateTransactionSmartFeeE403.
EndpointNotAllowedForApiKeyAsGenerateDepositAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GenerateDepositAddressE403.
EndpointNotAllowedForApiKeyAsGetAddressBalanceE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetAddressBalanceE403.
EndpointNotAllowedForApiKeyAsGetAddressDetailsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetAddressDetailsE403.
EndpointNotAllowedForApiKeyAsGetAddressDetailsFromCallbackE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetAddressDetailsFromCallbackE403.
EndpointNotAllowedForApiKeyAsGetAssetDetailsByAssetIDE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetAssetDetailsByAssetIDE403.
EndpointNotAllowedForApiKeyAsGetAssetDetailsByAssetSymbolE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetAssetDetailsByAssetSymbolE403.
EndpointNotAllowedForApiKeyAsGetBlockchainEventSubscriptionDetailsByReferenceIDE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetBlockchainEventSubscriptionDetailsByReferenceIDE403.
EndpointNotAllowedForApiKeyAsGetBlockDetailsByBlockHashE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetBlockDetailsByBlockHashE403.
EndpointNotAllowedForApiKeyAsGetBlockDetailsByBlockHashFromCallbackE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetBlockDetailsByBlockHashFromCallbackE403.
EndpointNotAllowedForApiKeyAsGetBlockDetailsByBlockHeightE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetBlockDetailsByBlockHeightE403.
EndpointNotAllowedForApiKeyAsGetBlockDetailsByBlockHeightFromCallbackE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetBlockDetailsByBlockHeightFromCallbackE403.
EndpointNotAllowedForApiKeyAsGetEIP1559FeeRecommendationsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetEIP1559FeeRecommendationsE403.
EndpointNotAllowedForApiKeyAsGetExchangeRateByAssetsIDsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetExchangeRateByAssetsIDsE403.
EndpointNotAllowedForApiKeyAsGetExchangeRateByAssetSymbolsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetExchangeRateByAssetSymbolsE403.
EndpointNotAllowedForApiKeyAsGetFeeAddressDetailsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetFeeAddressDetailsE403.
EndpointNotAllowedForApiKeyAsGetFeeRecommendationsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetFeeRecommendationsE403.
EndpointNotAllowedForApiKeyAsGetHDWalletXPubYPubZPubAssetsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetHDWalletXPubYPubZPubAssetsE403.
EndpointNotAllowedForApiKeyAsGetHDWalletXPubYPubZPubDetailsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetHDWalletXPubYPubZPubDetailsE403.
EndpointNotAllowedForApiKeyAsGetInternalTransactionByTransactionHashAndOperationIdE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetInternalTransactionByTransactionHashAndOperationIdE403.
EndpointNotAllowedForApiKeyAsGetLastMinedBlockE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetLastMinedBlockE403.
EndpointNotAllowedForApiKeyAsGetLatestMinedXRPRippleBlockE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetLatestMinedXRPRippleBlockE403.
EndpointNotAllowedForApiKeyAsGetLatestMinedZilliqaBlockE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetLatestMinedZilliqaBlockE403.
EndpointNotAllowedForApiKeyAsGetNextAvailableNonceE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetNextAvailableNonceE403.
EndpointNotAllowedForApiKeyAsGetRawTransactionDataE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetRawTransactionDataE403.
EndpointNotAllowedForApiKeyAsGetTokenDetailsByContractAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetTokenDetailsByContractAddressE403.
EndpointNotAllowedForApiKeyAsGetTransactionDetailsByTransactionIDE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetTransactionDetailsByTransactionIDE403.
EndpointNotAllowedForApiKeyAsGetTransactionDetailsByTransactionIDFromCallbackE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetTransactionDetailsByTransactionIDFromCallbackE403.
EndpointNotAllowedForApiKeyAsGetTransactionRequestDetailsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetTransactionRequestDetailsE403.
EndpointNotAllowedForApiKeyAsGetWalletAssetDetailsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetWalletAssetDetailsE403.
EndpointNotAllowedForApiKeyAsGetWalletTransactionDetailsByTransactionIDE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetWalletTransactionDetailsByTransactionIDE403.
EndpointNotAllowedForApiKeyAsGetXRPRippleAddressDetailsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetXRPRippleAddressDetailsE403.
EndpointNotAllowedForApiKeyAsGetXRPRippleBlockDetailsByBlockHashE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetXRPRippleBlockDetailsByBlockHashE403.
EndpointNotAllowedForApiKeyAsGetXRPRippleBlockDetailsByBlockHeightE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetXRPRippleBlockDetailsByBlockHeightE403.
EndpointNotAllowedForApiKeyAsGetXRPRippleTransactionDetailsByTransactionIDE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetXRPRippleTransactionDetailsByTransactionIDE403.
EndpointNotAllowedForApiKeyAsGetZilliqaAddressDetailsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetZilliqaAddressDetailsE403.
EndpointNotAllowedForApiKeyAsGetZilliqaBlockDetailsByBlockHashE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetZilliqaBlockDetailsByBlockHashE403.
EndpointNotAllowedForApiKeyAsGetZilliqaBlockDetailsByBlockHeightE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetZilliqaBlockDetailsByBlockHeightE403.
EndpointNotAllowedForApiKeyAsGetZilliqaTransactionDetailsByTransactionIDE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in GetZilliqaTransactionDetailsByTransactionIDE403.
EndpointNotAllowedForApiKeyAsListAllAssetsByWalletIDE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListAllAssetsByWalletIDE403.
EndpointNotAllowedForApiKeyAsListAllAssetsFromAllWalletsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListAllAssetsFromAllWalletsE403.
EndpointNotAllowedForApiKeyAsListBlockchainEventsSubscriptionsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListBlockchainEventsSubscriptionsE403.
EndpointNotAllowedForApiKeyAsListCoinsForwardingAutomationsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListCoinsForwardingAutomationsE403.
EndpointNotAllowedForApiKeyAsListConfirmedTokensTransfersByAddressAndTimeRangeE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListConfirmedTokensTransfersByAddressAndTimeRangeE403.
EndpointNotAllowedForApiKeyAsListConfirmedTokensTransfersByAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListConfirmedTokensTransfersByAddressE403.
EndpointNotAllowedForApiKeyAsListConfirmedTransactionsByAddressAndTimeRangeE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListConfirmedTransactionsByAddressAndTimeRangeE403.
EndpointNotAllowedForApiKeyAsListConfirmedTransactionsByAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListConfirmedTransactionsByAddressE403.
EndpointNotAllowedForApiKeyAsListDepositAddressesE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListDepositAddressesE403.
EndpointNotAllowedForApiKeyAsListHDWalletXPubYPubZPubTransactionsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListHDWalletXPubYPubZPubTransactionsE403.
EndpointNotAllowedForApiKeyAsListHDWalletXPubYPubZPubUTXOsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListHDWalletXPubYPubZPubUTXOsE403.
EndpointNotAllowedForApiKeyAsListInternalTransactionDetailsByTransactionHashE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListInternalTransactionDetailsByTransactionHashE403.
EndpointNotAllowedForApiKeyAsListInternalTransactionsByAddressAndTimeRangeE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListInternalTransactionsByAddressAndTimeRangeE403.
EndpointNotAllowedForApiKeyAsListInternalTransactionsByAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListInternalTransactionsByAddressE403.
EndpointNotAllowedForApiKeyAsListLatestMinedBlocksE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListLatestMinedBlocksE403.
EndpointNotAllowedForApiKeyAsListSupportedAssetsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListSupportedAssetsE403.
EndpointNotAllowedForApiKeyAsListSupportedTokensE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListSupportedTokensE403.
EndpointNotAllowedForApiKeyAsListSyncedAddressesE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListSyncedAddressesE403.
EndpointNotAllowedForApiKeyAsListTokensByAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListTokensByAddressE403.
EndpointNotAllowedForApiKeyAsListTokensForwardingAutomationsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListTokensForwardingAutomationsE403.
EndpointNotAllowedForApiKeyAsListTokensTransfersByTransactionHashE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListTokensTransfersByTransactionHashE403.
EndpointNotAllowedForApiKeyAsListTransactionsByBlockHashE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListTransactionsByBlockHashE403.
EndpointNotAllowedForApiKeyAsListTransactionsByBlockHeightE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListTransactionsByBlockHeightE403.
EndpointNotAllowedForApiKeyAsListUnconfirmedTokensTransfersByAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListUnconfirmedTokensTransfersByAddressE403.
EndpointNotAllowedForApiKeyAsListUnconfirmedTransactionsByAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListUnconfirmedTransactionsByAddressE403.
EndpointNotAllowedForApiKeyAsListUnspentTransactionOutputsByAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListUnspentTransactionOutputsByAddressE403.
EndpointNotAllowedForApiKeyAsListWalletTransactionsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListWalletTransactionsE403.
EndpointNotAllowedForApiKeyAsListXRPRippleTransactionsByAddressAndTimeRangeE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListXRPRippleTransactionsByAddressAndTimeRangeE403.
EndpointNotAllowedForApiKeyAsListXRPRippleTransactionsByAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListXRPRippleTransactionsByAddressE403.
EndpointNotAllowedForApiKeyAsListXRPRippleTransactionsByBlockHashE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListXRPRippleTransactionsByBlockHashE403.
EndpointNotAllowedForApiKeyAsListXRPRippleTransactionsByBlockHeightE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListXRPRippleTransactionsByBlockHeightE403.
EndpointNotAllowedForApiKeyAsListZilliqaTransactionsByAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListZilliqaTransactionsByAddressE403.
EndpointNotAllowedForApiKeyAsListZilliqaTransactionsByBlockHashE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListZilliqaTransactionsByBlockHashE403.
EndpointNotAllowedForApiKeyAsListZilliqaTransactionsByBlockHeightE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ListZilliqaTransactionsByBlockHeightE403.
EndpointNotAllowedForApiKeyAsMinedTransactionE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in MinedTransactionE403.
EndpointNotAllowedForApiKeyAsNewBlockE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in NewBlockE403.
EndpointNotAllowedForApiKeyAsNewConfirmedCoinsTransactionsAndEachConfirmationE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in NewConfirmedCoinsTransactionsAndEachConfirmationE403.
EndpointNotAllowedForApiKeyAsNewConfirmedCoinsTransactionsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in NewConfirmedCoinsTransactionsE403.
EndpointNotAllowedForApiKeyAsNewConfirmedCoinsTransactionsForSpecificAmountE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in NewConfirmedCoinsTransactionsForSpecificAmountE403.
EndpointNotAllowedForApiKeyAsNewConfirmedInternalTransactionsAndEachConfirmationE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in NewConfirmedInternalTransactionsAndEachConfirmationE403.
EndpointNotAllowedForApiKeyAsNewConfirmedInternalTransactionsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in NewConfirmedInternalTransactionsE403.
EndpointNotAllowedForApiKeyAsNewConfirmedInternalTransactionsForSpecificAmountE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in NewConfirmedInternalTransactionsForSpecificAmountE403.
EndpointNotAllowedForApiKeyAsNewConfirmedTokensTransactionsAndEachConfirmationE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in NewConfirmedTokensTransactionsAndEachConfirmationE403.
EndpointNotAllowedForApiKeyAsNewConfirmedTokensTransactionsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in NewConfirmedTokensTransactionsE403.
EndpointNotAllowedForApiKeyAsNewConfirmedTokenTransactionsForSpecificAmountE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in NewConfirmedTokenTransactionsForSpecificAmountE403.
EndpointNotAllowedForApiKeyAsNewUnconfirmedCoinsTransactionsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in NewUnconfirmedCoinsTransactionsE403.
EndpointNotAllowedForApiKeyAsNewUnconfirmedTokensTransactionsE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in NewUnconfirmedTokensTransactionsE403.
EndpointNotAllowedForApiKeyAsPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE403.
EndpointNotAllowedForApiKeyAsPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE403.
EndpointNotAllowedForApiKeyAsSyncHDWalletXPubYPubZPubE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in SyncHDWalletXPubYPubZPubE403.
EndpointNotAllowedForApiKeyAsSyncNewHDWalletXPubYPubZPubE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in SyncNewHDWalletXPubYPubZPubE403.
EndpointNotAllowedForApiKeyAsValidateAddressE403 is a convenience function that returns EndpointNotAllowedForApiKey wrapped in ValidateAddressE403.
EndpointNotAllowedForPlanAsActivateBlockchainEventSubscriptionE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ActivateBlockchainEventSubscriptionE403.
EndpointNotAllowedForPlanAsAddTokensToExistingFromAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in AddTokensToExistingFromAddressE403.
EndpointNotAllowedForPlanAsBlockHeightReachedE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in BlockHeightReachedE403.
EndpointNotAllowedForPlanAsBroadcastLocallySignedTransactionE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in BroadcastLocallySignedTransactionE403.
EndpointNotAllowedForPlanAsConvertBitcoinCashAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ConvertBitcoinCashAddressE403.
EndpointNotAllowedForPlanAsCreateAutomaticCoinsForwardingE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in CreateAutomaticCoinsForwardingE403.
EndpointNotAllowedForPlanAsCreateAutomaticTokensForwardingE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in CreateAutomaticTokensForwardingE403.
EndpointNotAllowedForPlanAsCreateCoinsTransactionFromAddressForWholeAmountE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in CreateCoinsTransactionFromAddressForWholeAmountE403.
EndpointNotAllowedForPlanAsCreateCoinsTransactionRequestFromAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in CreateCoinsTransactionRequestFromAddressE403.
EndpointNotAllowedForPlanAsCreateCoinsTransactionRequestFromWalletE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in CreateCoinsTransactionRequestFromWalletE403.
EndpointNotAllowedForPlanAsCreateFungibleTokensTransactionRequestFromAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in CreateFungibleTokensTransactionRequestFromAddressE403.
EndpointNotAllowedForPlanAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE403.
EndpointNotAllowedForPlanAsCreateSingleTransactionRequestFromAddressWithoutFeePriorityE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in CreateSingleTransactionRequestFromAddressWithoutFeePriorityE403.
EndpointNotAllowedForPlanAsDecodeRawTransactionHexE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in DecodeRawTransactionHexE403.
EndpointNotAllowedForPlanAsDecodeXAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in DecodeXAddressE403.
EndpointNotAllowedForPlanAsDeleteAutomaticCoinsForwardingE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in DeleteAutomaticCoinsForwardingE403.
EndpointNotAllowedForPlanAsDeleteAutomaticTokensForwardingE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in DeleteAutomaticTokensForwardingE403.
EndpointNotAllowedForPlanAsDeleteBlockchainEventSubscriptionE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in DeleteBlockchainEventSubscriptionE403.
EndpointNotAllowedForPlanAsDeriveAndSyncNewChangeAddressesE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in DeriveAndSyncNewChangeAddressesE403.
EndpointNotAllowedForPlanAsDeriveAndSyncNewReceivingAddressesE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in DeriveAndSyncNewReceivingAddressesE403.
EndpointNotAllowedForPlanAsDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE403.
EndpointNotAllowedForPlanAsEncodeXAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in EncodeXAddressE403.
EndpointNotAllowedForPlanAsEstimateGasLimitE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in EstimateGasLimitE403.
EndpointNotAllowedForPlanAsEstimateTokenGasLimitE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in EstimateTokenGasLimitE403.
EndpointNotAllowedForPlanAsEstimateTransactionSmartFeeE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in EstimateTransactionSmartFeeE403.
EndpointNotAllowedForPlanAsGenerateDepositAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GenerateDepositAddressE403.
EndpointNotAllowedForPlanAsGetAddressBalanceE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetAddressBalanceE403.
EndpointNotAllowedForPlanAsGetAddressDetailsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetAddressDetailsE403.
EndpointNotAllowedForPlanAsGetAddressDetailsFromCallbackE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetAddressDetailsFromCallbackE403.
EndpointNotAllowedForPlanAsGetAssetDetailsByAssetIDE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetAssetDetailsByAssetIDE403.
EndpointNotAllowedForPlanAsGetAssetDetailsByAssetSymbolE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetAssetDetailsByAssetSymbolE403.
EndpointNotAllowedForPlanAsGetBlockchainEventSubscriptionDetailsByReferenceIDE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetBlockchainEventSubscriptionDetailsByReferenceIDE403.
EndpointNotAllowedForPlanAsGetBlockDetailsByBlockHashE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetBlockDetailsByBlockHashE403.
EndpointNotAllowedForPlanAsGetBlockDetailsByBlockHashFromCallbackE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetBlockDetailsByBlockHashFromCallbackE403.
EndpointNotAllowedForPlanAsGetBlockDetailsByBlockHeightE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetBlockDetailsByBlockHeightE403.
EndpointNotAllowedForPlanAsGetBlockDetailsByBlockHeightFromCallbackE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetBlockDetailsByBlockHeightFromCallbackE403.
EndpointNotAllowedForPlanAsGetEIP1559FeeRecommendationsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetEIP1559FeeRecommendationsE403.
EndpointNotAllowedForPlanAsGetExchangeRateByAssetsIDsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetExchangeRateByAssetsIDsE403.
EndpointNotAllowedForPlanAsGetExchangeRateByAssetSymbolsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetExchangeRateByAssetSymbolsE403.
EndpointNotAllowedForPlanAsGetFeeAddressDetailsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetFeeAddressDetailsE403.
EndpointNotAllowedForPlanAsGetFeeRecommendationsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetFeeRecommendationsE403.
EndpointNotAllowedForPlanAsGetHDWalletXPubYPubZPubAssetsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetHDWalletXPubYPubZPubAssetsE403.
EndpointNotAllowedForPlanAsGetHDWalletXPubYPubZPubDetailsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetHDWalletXPubYPubZPubDetailsE403.
EndpointNotAllowedForPlanAsGetInternalTransactionByTransactionHashAndOperationIdE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetInternalTransactionByTransactionHashAndOperationIdE403.
EndpointNotAllowedForPlanAsGetLastMinedBlockE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetLastMinedBlockE403.
EndpointNotAllowedForPlanAsGetLatestMinedXRPRippleBlockE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetLatestMinedXRPRippleBlockE403.
EndpointNotAllowedForPlanAsGetLatestMinedZilliqaBlockE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetLatestMinedZilliqaBlockE403.
EndpointNotAllowedForPlanAsGetNextAvailableNonceE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetNextAvailableNonceE403.
EndpointNotAllowedForPlanAsGetRawTransactionDataE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetRawTransactionDataE403.
EndpointNotAllowedForPlanAsGetTokenDetailsByContractAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetTokenDetailsByContractAddressE403.
EndpointNotAllowedForPlanAsGetTransactionDetailsByTransactionIDE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetTransactionDetailsByTransactionIDE403.
EndpointNotAllowedForPlanAsGetTransactionDetailsByTransactionIDFromCallbackE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetTransactionDetailsByTransactionIDFromCallbackE403.
EndpointNotAllowedForPlanAsGetTransactionRequestDetailsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetTransactionRequestDetailsE403.
EndpointNotAllowedForPlanAsGetWalletAssetDetailsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetWalletAssetDetailsE403.
EndpointNotAllowedForPlanAsGetWalletTransactionDetailsByTransactionIDE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetWalletTransactionDetailsByTransactionIDE403.
EndpointNotAllowedForPlanAsGetXRPRippleAddressDetailsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetXRPRippleAddressDetailsE403.
EndpointNotAllowedForPlanAsGetXRPRippleBlockDetailsByBlockHashE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetXRPRippleBlockDetailsByBlockHashE403.
EndpointNotAllowedForPlanAsGetXRPRippleBlockDetailsByBlockHeightE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetXRPRippleBlockDetailsByBlockHeightE403.
EndpointNotAllowedForPlanAsGetXRPRippleTransactionDetailsByTransactionIDE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetXRPRippleTransactionDetailsByTransactionIDE403.
EndpointNotAllowedForPlanAsGetZilliqaAddressDetailsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetZilliqaAddressDetailsE403.
EndpointNotAllowedForPlanAsGetZilliqaBlockDetailsByBlockHashE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetZilliqaBlockDetailsByBlockHashE403.
EndpointNotAllowedForPlanAsGetZilliqaBlockDetailsByBlockHeightE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetZilliqaBlockDetailsByBlockHeightE403.
EndpointNotAllowedForPlanAsGetZilliqaTransactionDetailsByTransactionIDE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in GetZilliqaTransactionDetailsByTransactionIDE403.
EndpointNotAllowedForPlanAsListAllAssetsByWalletIDE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListAllAssetsByWalletIDE403.
EndpointNotAllowedForPlanAsListAllAssetsFromAllWalletsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListAllAssetsFromAllWalletsE403.
EndpointNotAllowedForPlanAsListBlockchainEventsSubscriptionsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListBlockchainEventsSubscriptionsE403.
EndpointNotAllowedForPlanAsListCoinsForwardingAutomationsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListCoinsForwardingAutomationsE403.
EndpointNotAllowedForPlanAsListConfirmedTokensTransfersByAddressAndTimeRangeE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListConfirmedTokensTransfersByAddressAndTimeRangeE403.
EndpointNotAllowedForPlanAsListConfirmedTokensTransfersByAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListConfirmedTokensTransfersByAddressE403.
EndpointNotAllowedForPlanAsListConfirmedTransactionsByAddressAndTimeRangeE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListConfirmedTransactionsByAddressAndTimeRangeE403.
EndpointNotAllowedForPlanAsListConfirmedTransactionsByAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListConfirmedTransactionsByAddressE403.
EndpointNotAllowedForPlanAsListDepositAddressesE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListDepositAddressesE403.
EndpointNotAllowedForPlanAsListHDWalletXPubYPubZPubTransactionsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListHDWalletXPubYPubZPubTransactionsE403.
EndpointNotAllowedForPlanAsListHDWalletXPubYPubZPubUTXOsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListHDWalletXPubYPubZPubUTXOsE403.
EndpointNotAllowedForPlanAsListInternalTransactionDetailsByTransactionHashE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListInternalTransactionDetailsByTransactionHashE403.
EndpointNotAllowedForPlanAsListInternalTransactionsByAddressAndTimeRangeE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListInternalTransactionsByAddressAndTimeRangeE403.
EndpointNotAllowedForPlanAsListInternalTransactionsByAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListInternalTransactionsByAddressE403.
EndpointNotAllowedForPlanAsListLatestMinedBlocksE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListLatestMinedBlocksE403.
EndpointNotAllowedForPlanAsListSupportedAssetsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListSupportedAssetsE403.
EndpointNotAllowedForPlanAsListSupportedTokensE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListSupportedTokensE403.
EndpointNotAllowedForPlanAsListSyncedAddressesE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListSyncedAddressesE403.
EndpointNotAllowedForPlanAsListTokensByAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListTokensByAddressE403.
EndpointNotAllowedForPlanAsListTokensForwardingAutomationsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListTokensForwardingAutomationsE403.
EndpointNotAllowedForPlanAsListTokensTransfersByTransactionHashE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListTokensTransfersByTransactionHashE403.
EndpointNotAllowedForPlanAsListTransactionsByBlockHashE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListTransactionsByBlockHashE403.
EndpointNotAllowedForPlanAsListTransactionsByBlockHeightE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListTransactionsByBlockHeightE403.
EndpointNotAllowedForPlanAsListUnconfirmedTokensTransfersByAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListUnconfirmedTokensTransfersByAddressE403.
EndpointNotAllowedForPlanAsListUnconfirmedTransactionsByAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListUnconfirmedTransactionsByAddressE403.
EndpointNotAllowedForPlanAsListUnspentTransactionOutputsByAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListUnspentTransactionOutputsByAddressE403.
EndpointNotAllowedForPlanAsListWalletTransactionsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListWalletTransactionsE403.
EndpointNotAllowedForPlanAsListXRPRippleTransactionsByAddressAndTimeRangeE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListXRPRippleTransactionsByAddressAndTimeRangeE403.
EndpointNotAllowedForPlanAsListXRPRippleTransactionsByAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListXRPRippleTransactionsByAddressE403.
EndpointNotAllowedForPlanAsListXRPRippleTransactionsByBlockHashE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListXRPRippleTransactionsByBlockHashE403.
EndpointNotAllowedForPlanAsListXRPRippleTransactionsByBlockHeightE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListXRPRippleTransactionsByBlockHeightE403.
EndpointNotAllowedForPlanAsListZilliqaTransactionsByAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListZilliqaTransactionsByAddressE403.
EndpointNotAllowedForPlanAsListZilliqaTransactionsByBlockHashE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListZilliqaTransactionsByBlockHashE403.
EndpointNotAllowedForPlanAsListZilliqaTransactionsByBlockHeightE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ListZilliqaTransactionsByBlockHeightE403.
EndpointNotAllowedForPlanAsMinedTransactionE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in MinedTransactionE403.
EndpointNotAllowedForPlanAsNewBlockE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in NewBlockE403.
EndpointNotAllowedForPlanAsNewConfirmedCoinsTransactionsAndEachConfirmationE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in NewConfirmedCoinsTransactionsAndEachConfirmationE403.
EndpointNotAllowedForPlanAsNewConfirmedCoinsTransactionsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in NewConfirmedCoinsTransactionsE403.
EndpointNotAllowedForPlanAsNewConfirmedCoinsTransactionsForSpecificAmountE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in NewConfirmedCoinsTransactionsForSpecificAmountE403.
EndpointNotAllowedForPlanAsNewConfirmedInternalTransactionsAndEachConfirmationE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in NewConfirmedInternalTransactionsAndEachConfirmationE403.
EndpointNotAllowedForPlanAsNewConfirmedInternalTransactionsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in NewConfirmedInternalTransactionsE403.
EndpointNotAllowedForPlanAsNewConfirmedInternalTransactionsForSpecificAmountE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in NewConfirmedInternalTransactionsForSpecificAmountE403.
EndpointNotAllowedForPlanAsNewConfirmedTokensTransactionsAndEachConfirmationE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in NewConfirmedTokensTransactionsAndEachConfirmationE403.
EndpointNotAllowedForPlanAsNewConfirmedTokensTransactionsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in NewConfirmedTokensTransactionsE403.
EndpointNotAllowedForPlanAsNewConfirmedTokenTransactionsForSpecificAmountE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in NewConfirmedTokenTransactionsForSpecificAmountE403.
EndpointNotAllowedForPlanAsNewUnconfirmedCoinsTransactionsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in NewUnconfirmedCoinsTransactionsE403.
EndpointNotAllowedForPlanAsNewUnconfirmedTokensTransactionsE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in NewUnconfirmedTokensTransactionsE403.
EndpointNotAllowedForPlanAsPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE403.
EndpointNotAllowedForPlanAsPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE403.
EndpointNotAllowedForPlanAsSyncHDWalletXPubYPubZPubE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in SyncHDWalletXPubYPubZPubE403.
EndpointNotAllowedForPlanAsSyncNewHDWalletXPubYPubZPubE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in SyncNewHDWalletXPubYPubZPubE403.
EndpointNotAllowedForPlanAsValidateAddressE403 is a convenience function that returns EndpointNotAllowedForPlan wrapped in ValidateAddressE403.
FeatureMainnetsNotAllowedForPlanAsActivateBlockchainEventSubscriptionE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ActivateBlockchainEventSubscriptionE403.
FeatureMainnetsNotAllowedForPlanAsAddTokensToExistingFromAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in AddTokensToExistingFromAddressE403.
FeatureMainnetsNotAllowedForPlanAsBlockHeightReachedE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in BlockHeightReachedE403.
FeatureMainnetsNotAllowedForPlanAsBroadcastLocallySignedTransactionE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in BroadcastLocallySignedTransactionE403.
FeatureMainnetsNotAllowedForPlanAsConvertBitcoinCashAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ConvertBitcoinCashAddressE403.
FeatureMainnetsNotAllowedForPlanAsCreateAutomaticCoinsForwardingE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in CreateAutomaticCoinsForwardingE403.
FeatureMainnetsNotAllowedForPlanAsCreateAutomaticTokensForwardingE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in CreateAutomaticTokensForwardingE403.
FeatureMainnetsNotAllowedForPlanAsCreateCoinsTransactionFromAddressForWholeAmountE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in CreateCoinsTransactionFromAddressForWholeAmountE403.
FeatureMainnetsNotAllowedForPlanAsCreateCoinsTransactionRequestFromAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in CreateCoinsTransactionRequestFromAddressE403.
FeatureMainnetsNotAllowedForPlanAsCreateCoinsTransactionRequestFromWalletE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in CreateCoinsTransactionRequestFromWalletE403.
FeatureMainnetsNotAllowedForPlanAsCreateFungibleTokensTransactionRequestFromAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in CreateFungibleTokensTransactionRequestFromAddressE403.
FeatureMainnetsNotAllowedForPlanAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE403.
FeatureMainnetsNotAllowedForPlanAsCreateSingleTransactionRequestFromAddressWithoutFeePriorityE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in CreateSingleTransactionRequestFromAddressWithoutFeePriorityE403.
FeatureMainnetsNotAllowedForPlanAsDecodeRawTransactionHexE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in DecodeRawTransactionHexE403.
FeatureMainnetsNotAllowedForPlanAsDecodeXAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in DecodeXAddressE403.
FeatureMainnetsNotAllowedForPlanAsDeleteAutomaticCoinsForwardingE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in DeleteAutomaticCoinsForwardingE403.
FeatureMainnetsNotAllowedForPlanAsDeleteAutomaticTokensForwardingE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in DeleteAutomaticTokensForwardingE403.
FeatureMainnetsNotAllowedForPlanAsDeleteBlockchainEventSubscriptionE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in DeleteBlockchainEventSubscriptionE403.
FeatureMainnetsNotAllowedForPlanAsDeriveAndSyncNewChangeAddressesE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in DeriveAndSyncNewChangeAddressesE403.
FeatureMainnetsNotAllowedForPlanAsDeriveAndSyncNewReceivingAddressesE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in DeriveAndSyncNewReceivingAddressesE403.
FeatureMainnetsNotAllowedForPlanAsDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE403.
FeatureMainnetsNotAllowedForPlanAsEncodeXAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in EncodeXAddressE403.
FeatureMainnetsNotAllowedForPlanAsEstimateGasLimitE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in EstimateGasLimitE403.
FeatureMainnetsNotAllowedForPlanAsEstimateTokenGasLimitE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in EstimateTokenGasLimitE403.
FeatureMainnetsNotAllowedForPlanAsEstimateTransactionSmartFeeE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in EstimateTransactionSmartFeeE403.
FeatureMainnetsNotAllowedForPlanAsGenerateDepositAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GenerateDepositAddressE403.
FeatureMainnetsNotAllowedForPlanAsGetAddressBalanceE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetAddressBalanceE403.
FeatureMainnetsNotAllowedForPlanAsGetAddressDetailsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetAddressDetailsE403.
FeatureMainnetsNotAllowedForPlanAsGetAddressDetailsFromCallbackE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetAddressDetailsFromCallbackE403.
FeatureMainnetsNotAllowedForPlanAsGetAssetDetailsByAssetIDE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetAssetDetailsByAssetIDE403.
FeatureMainnetsNotAllowedForPlanAsGetAssetDetailsByAssetSymbolE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetAssetDetailsByAssetSymbolE403.
FeatureMainnetsNotAllowedForPlanAsGetBlockchainEventSubscriptionDetailsByReferenceIDE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetBlockchainEventSubscriptionDetailsByReferenceIDE403.
FeatureMainnetsNotAllowedForPlanAsGetBlockDetailsByBlockHashE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetBlockDetailsByBlockHashE403.
FeatureMainnetsNotAllowedForPlanAsGetBlockDetailsByBlockHashFromCallbackE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetBlockDetailsByBlockHashFromCallbackE403.
FeatureMainnetsNotAllowedForPlanAsGetBlockDetailsByBlockHeightE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetBlockDetailsByBlockHeightE403.
FeatureMainnetsNotAllowedForPlanAsGetBlockDetailsByBlockHeightFromCallbackE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetBlockDetailsByBlockHeightFromCallbackE403.
FeatureMainnetsNotAllowedForPlanAsGetEIP1559FeeRecommendationsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetEIP1559FeeRecommendationsE403.
FeatureMainnetsNotAllowedForPlanAsGetExchangeRateByAssetsIDsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetExchangeRateByAssetsIDsE403.
FeatureMainnetsNotAllowedForPlanAsGetExchangeRateByAssetSymbolsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetExchangeRateByAssetSymbolsE403.
FeatureMainnetsNotAllowedForPlanAsGetFeeAddressDetailsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetFeeAddressDetailsE403.
FeatureMainnetsNotAllowedForPlanAsGetFeeRecommendationsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetFeeRecommendationsE403.
FeatureMainnetsNotAllowedForPlanAsGetHDWalletXPubYPubZPubAssetsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetHDWalletXPubYPubZPubAssetsE403.
FeatureMainnetsNotAllowedForPlanAsGetHDWalletXPubYPubZPubDetailsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetHDWalletXPubYPubZPubDetailsE403.
FeatureMainnetsNotAllowedForPlanAsGetInternalTransactionByTransactionHashAndOperationIdE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetInternalTransactionByTransactionHashAndOperationIdE403.
FeatureMainnetsNotAllowedForPlanAsGetLastMinedBlockE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetLastMinedBlockE403.
FeatureMainnetsNotAllowedForPlanAsGetLatestMinedXRPRippleBlockE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetLatestMinedXRPRippleBlockE403.
FeatureMainnetsNotAllowedForPlanAsGetLatestMinedZilliqaBlockE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetLatestMinedZilliqaBlockE403.
FeatureMainnetsNotAllowedForPlanAsGetNextAvailableNonceE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetNextAvailableNonceE403.
FeatureMainnetsNotAllowedForPlanAsGetRawTransactionDataE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetRawTransactionDataE403.
FeatureMainnetsNotAllowedForPlanAsGetTokenDetailsByContractAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetTokenDetailsByContractAddressE403.
FeatureMainnetsNotAllowedForPlanAsGetTransactionDetailsByTransactionIDE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetTransactionDetailsByTransactionIDE403.
FeatureMainnetsNotAllowedForPlanAsGetTransactionDetailsByTransactionIDFromCallbackE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetTransactionDetailsByTransactionIDFromCallbackE403.
FeatureMainnetsNotAllowedForPlanAsGetTransactionRequestDetailsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetTransactionRequestDetailsE403.
FeatureMainnetsNotAllowedForPlanAsGetWalletAssetDetailsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetWalletAssetDetailsE403.
FeatureMainnetsNotAllowedForPlanAsGetWalletTransactionDetailsByTransactionIDE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetWalletTransactionDetailsByTransactionIDE403.
FeatureMainnetsNotAllowedForPlanAsGetXRPRippleAddressDetailsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetXRPRippleAddressDetailsE403.
FeatureMainnetsNotAllowedForPlanAsGetXRPRippleBlockDetailsByBlockHashE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetXRPRippleBlockDetailsByBlockHashE403.
FeatureMainnetsNotAllowedForPlanAsGetXRPRippleBlockDetailsByBlockHeightE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetXRPRippleBlockDetailsByBlockHeightE403.
FeatureMainnetsNotAllowedForPlanAsGetXRPRippleTransactionDetailsByTransactionIDE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetXRPRippleTransactionDetailsByTransactionIDE403.
FeatureMainnetsNotAllowedForPlanAsGetZilliqaAddressDetailsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetZilliqaAddressDetailsE403.
FeatureMainnetsNotAllowedForPlanAsGetZilliqaBlockDetailsByBlockHashE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetZilliqaBlockDetailsByBlockHashE403.
FeatureMainnetsNotAllowedForPlanAsGetZilliqaBlockDetailsByBlockHeightE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetZilliqaBlockDetailsByBlockHeightE403.
FeatureMainnetsNotAllowedForPlanAsGetZilliqaTransactionDetailsByTransactionIDE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in GetZilliqaTransactionDetailsByTransactionIDE403.
FeatureMainnetsNotAllowedForPlanAsListAllAssetsByWalletIDE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListAllAssetsByWalletIDE403.
FeatureMainnetsNotAllowedForPlanAsListAllAssetsFromAllWalletsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListAllAssetsFromAllWalletsE403.
FeatureMainnetsNotAllowedForPlanAsListBlockchainEventsSubscriptionsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListBlockchainEventsSubscriptionsE403.
FeatureMainnetsNotAllowedForPlanAsListCoinsForwardingAutomationsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListCoinsForwardingAutomationsE403.
FeatureMainnetsNotAllowedForPlanAsListConfirmedTokensTransfersByAddressAndTimeRangeE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListConfirmedTokensTransfersByAddressAndTimeRangeE403.
FeatureMainnetsNotAllowedForPlanAsListConfirmedTokensTransfersByAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListConfirmedTokensTransfersByAddressE403.
FeatureMainnetsNotAllowedForPlanAsListConfirmedTransactionsByAddressAndTimeRangeE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListConfirmedTransactionsByAddressAndTimeRangeE403.
FeatureMainnetsNotAllowedForPlanAsListConfirmedTransactionsByAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListConfirmedTransactionsByAddressE403.
FeatureMainnetsNotAllowedForPlanAsListDepositAddressesE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListDepositAddressesE403.
FeatureMainnetsNotAllowedForPlanAsListHDWalletXPubYPubZPubTransactionsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListHDWalletXPubYPubZPubTransactionsE403.
FeatureMainnetsNotAllowedForPlanAsListHDWalletXPubYPubZPubUTXOsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListHDWalletXPubYPubZPubUTXOsE403.
FeatureMainnetsNotAllowedForPlanAsListInternalTransactionDetailsByTransactionHashE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListInternalTransactionDetailsByTransactionHashE403.
FeatureMainnetsNotAllowedForPlanAsListInternalTransactionsByAddressAndTimeRangeE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListInternalTransactionsByAddressAndTimeRangeE403.
FeatureMainnetsNotAllowedForPlanAsListInternalTransactionsByAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListInternalTransactionsByAddressE403.
FeatureMainnetsNotAllowedForPlanAsListLatestMinedBlocksE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListLatestMinedBlocksE403.
FeatureMainnetsNotAllowedForPlanAsListSupportedAssetsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListSupportedAssetsE403.
FeatureMainnetsNotAllowedForPlanAsListSupportedTokensE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListSupportedTokensE403.
FeatureMainnetsNotAllowedForPlanAsListSyncedAddressesE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListSyncedAddressesE403.
FeatureMainnetsNotAllowedForPlanAsListTokensByAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListTokensByAddressE403.
FeatureMainnetsNotAllowedForPlanAsListTokensForwardingAutomationsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListTokensForwardingAutomationsE403.
FeatureMainnetsNotAllowedForPlanAsListTokensTransfersByTransactionHashE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListTokensTransfersByTransactionHashE403.
FeatureMainnetsNotAllowedForPlanAsListTransactionsByBlockHashE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListTransactionsByBlockHashE403.
FeatureMainnetsNotAllowedForPlanAsListTransactionsByBlockHeightE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListTransactionsByBlockHeightE403.
FeatureMainnetsNotAllowedForPlanAsListUnconfirmedTokensTransfersByAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListUnconfirmedTokensTransfersByAddressE403.
FeatureMainnetsNotAllowedForPlanAsListUnconfirmedTransactionsByAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListUnconfirmedTransactionsByAddressE403.
FeatureMainnetsNotAllowedForPlanAsListUnspentTransactionOutputsByAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListUnspentTransactionOutputsByAddressE403.
FeatureMainnetsNotAllowedForPlanAsListWalletTransactionsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListWalletTransactionsE403.
FeatureMainnetsNotAllowedForPlanAsListXRPRippleTransactionsByAddressAndTimeRangeE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListXRPRippleTransactionsByAddressAndTimeRangeE403.
FeatureMainnetsNotAllowedForPlanAsListXRPRippleTransactionsByAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListXRPRippleTransactionsByAddressE403.
FeatureMainnetsNotAllowedForPlanAsListXRPRippleTransactionsByBlockHashE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListXRPRippleTransactionsByBlockHashE403.
FeatureMainnetsNotAllowedForPlanAsListXRPRippleTransactionsByBlockHeightE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListXRPRippleTransactionsByBlockHeightE403.
FeatureMainnetsNotAllowedForPlanAsListZilliqaTransactionsByAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListZilliqaTransactionsByAddressE403.
FeatureMainnetsNotAllowedForPlanAsListZilliqaTransactionsByBlockHashE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListZilliqaTransactionsByBlockHashE403.
FeatureMainnetsNotAllowedForPlanAsListZilliqaTransactionsByBlockHeightE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ListZilliqaTransactionsByBlockHeightE403.
FeatureMainnetsNotAllowedForPlanAsMinedTransactionE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in MinedTransactionE403.
FeatureMainnetsNotAllowedForPlanAsNewBlockE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in NewBlockE403.
FeatureMainnetsNotAllowedForPlanAsNewConfirmedCoinsTransactionsAndEachConfirmationE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in NewConfirmedCoinsTransactionsAndEachConfirmationE403.
FeatureMainnetsNotAllowedForPlanAsNewConfirmedCoinsTransactionsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in NewConfirmedCoinsTransactionsE403.
FeatureMainnetsNotAllowedForPlanAsNewConfirmedCoinsTransactionsForSpecificAmountE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in NewConfirmedCoinsTransactionsForSpecificAmountE403.
FeatureMainnetsNotAllowedForPlanAsNewConfirmedInternalTransactionsAndEachConfirmationE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in NewConfirmedInternalTransactionsAndEachConfirmationE403.
FeatureMainnetsNotAllowedForPlanAsNewConfirmedInternalTransactionsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in NewConfirmedInternalTransactionsE403.
FeatureMainnetsNotAllowedForPlanAsNewConfirmedInternalTransactionsForSpecificAmountE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in NewConfirmedInternalTransactionsForSpecificAmountE403.
FeatureMainnetsNotAllowedForPlanAsNewConfirmedTokensTransactionsAndEachConfirmationE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in NewConfirmedTokensTransactionsAndEachConfirmationE403.
FeatureMainnetsNotAllowedForPlanAsNewConfirmedTokensTransactionsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in NewConfirmedTokensTransactionsE403.
FeatureMainnetsNotAllowedForPlanAsNewConfirmedTokenTransactionsForSpecificAmountE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in NewConfirmedTokenTransactionsForSpecificAmountE403.
FeatureMainnetsNotAllowedForPlanAsNewUnconfirmedCoinsTransactionsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in NewUnconfirmedCoinsTransactionsE403.
FeatureMainnetsNotAllowedForPlanAsNewUnconfirmedTokensTransactionsE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in NewUnconfirmedTokensTransactionsE403.
FeatureMainnetsNotAllowedForPlanAsPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE403.
FeatureMainnetsNotAllowedForPlanAsPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE403.
FeatureMainnetsNotAllowedForPlanAsSyncHDWalletXPubYPubZPubE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in SyncHDWalletXPubYPubZPubE403.
FeatureMainnetsNotAllowedForPlanAsSyncNewHDWalletXPubYPubZPubE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in SyncNewHDWalletXPubYPubZPubE403.
FeatureMainnetsNotAllowedForPlanAsValidateAddressE403 is a convenience function that returns FeatureMainnetsNotAllowedForPlan wrapped in ValidateAddressE403.
GetAssetDetailsByAssetIDRISCAsGetAssetDetailsByAssetIDRIS is a convenience function that returns GetAssetDetailsByAssetIDRISC wrapped in GetAssetDetailsByAssetIDRIS.
GetAssetDetailsByAssetSymbolRISCAsGetAssetDetailsByAssetSymbolRIS is a convenience function that returns GetAssetDetailsByAssetSymbolRISC wrapped in GetAssetDetailsByAssetSymbolRIS.
GetBlockDetailsByBlockHashFromCallbackRIBSBAsGetBlockDetailsByBlockHashFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHashFromCallbackRIBSB wrapped in GetBlockDetailsByBlockHashFromCallbackRIBS.
GetBlockDetailsByBlockHashFromCallbackRIBSBCAsGetBlockDetailsByBlockHashFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHashFromCallbackRIBSBC wrapped in GetBlockDetailsByBlockHashFromCallbackRIBS.
GetBlockDetailsByBlockHashFromCallbackRIBSBSCAsGetBlockDetailsByBlockHashFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHashFromCallbackRIBSBSC wrapped in GetBlockDetailsByBlockHashFromCallbackRIBS.
GetBlockDetailsByBlockHashFromCallbackRIBSD2AsGetBlockDetailsByBlockHashFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHashFromCallbackRIBSD2 wrapped in GetBlockDetailsByBlockHashFromCallbackRIBS.
GetBlockDetailsByBlockHashFromCallbackRIBSDAsGetBlockDetailsByBlockHashFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHashFromCallbackRIBSD wrapped in GetBlockDetailsByBlockHashFromCallbackRIBS.
GetBlockDetailsByBlockHashFromCallbackRIBSEAsGetBlockDetailsByBlockHashFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHashFromCallbackRIBSE wrapped in GetBlockDetailsByBlockHashFromCallbackRIBS.
GetBlockDetailsByBlockHashFromCallbackRIBSECAsGetBlockDetailsByBlockHashFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHashFromCallbackRIBSEC wrapped in GetBlockDetailsByBlockHashFromCallbackRIBS.
GetBlockDetailsByBlockHashFromCallbackRIBSLAsGetBlockDetailsByBlockHashFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHashFromCallbackRIBSL wrapped in GetBlockDetailsByBlockHashFromCallbackRIBS.
GetBlockDetailsByBlockHashFromCallbackRIBSTAsGetBlockDetailsByBlockHashFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHashFromCallbackRIBST wrapped in GetBlockDetailsByBlockHashFromCallbackRIBS.
GetBlockDetailsByBlockHashFromCallbackRIBSXAsGetBlockDetailsByBlockHashFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHashFromCallbackRIBSX wrapped in GetBlockDetailsByBlockHashFromCallbackRIBS.
GetBlockDetailsByBlockHashFromCallbackRIBSZ2AsGetBlockDetailsByBlockHashFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHashFromCallbackRIBSZ2 wrapped in GetBlockDetailsByBlockHashFromCallbackRIBS.
GetBlockDetailsByBlockHashFromCallbackRIBSZAsGetBlockDetailsByBlockHashFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHashFromCallbackRIBSZ wrapped in GetBlockDetailsByBlockHashFromCallbackRIBS.
GetBlockDetailsByBlockHashRIBSBAsGetBlockDetailsByBlockHashRIBS is a convenience function that returns GetBlockDetailsByBlockHashRIBSB wrapped in GetBlockDetailsByBlockHashRIBS.
GetBlockDetailsByBlockHashRIBSBCAsGetBlockDetailsByBlockHashRIBS is a convenience function that returns GetBlockDetailsByBlockHashRIBSBC wrapped in GetBlockDetailsByBlockHashRIBS.
GetBlockDetailsByBlockHashRIBSBSCAsGetBlockDetailsByBlockHashRIBS is a convenience function that returns GetBlockDetailsByBlockHashRIBSBSC wrapped in GetBlockDetailsByBlockHashRIBS.
GetBlockDetailsByBlockHashRIBSD2AsGetBlockDetailsByBlockHashRIBS is a convenience function that returns GetBlockDetailsByBlockHashRIBSD2 wrapped in GetBlockDetailsByBlockHashRIBS.
GetBlockDetailsByBlockHashRIBSDAsGetBlockDetailsByBlockHashRIBS is a convenience function that returns GetBlockDetailsByBlockHashRIBSD wrapped in GetBlockDetailsByBlockHashRIBS.
GetBlockDetailsByBlockHashRIBSEAsGetBlockDetailsByBlockHashRIBS is a convenience function that returns GetBlockDetailsByBlockHashRIBSE wrapped in GetBlockDetailsByBlockHashRIBS.
GetBlockDetailsByBlockHashRIBSECAsGetBlockDetailsByBlockHashRIBS is a convenience function that returns GetBlockDetailsByBlockHashRIBSEC wrapped in GetBlockDetailsByBlockHashRIBS.
GetBlockDetailsByBlockHashRIBSLAsGetBlockDetailsByBlockHashRIBS is a convenience function that returns GetBlockDetailsByBlockHashRIBSL wrapped in GetBlockDetailsByBlockHashRIBS.
GetBlockDetailsByBlockHashRIBSZ2AsGetBlockDetailsByBlockHashRIBS is a convenience function that returns GetBlockDetailsByBlockHashRIBSZ2 wrapped in GetBlockDetailsByBlockHashRIBS.
GetBlockDetailsByBlockHashRIBSZAsGetBlockDetailsByBlockHashRIBS is a convenience function that returns GetBlockDetailsByBlockHashRIBSZ wrapped in GetBlockDetailsByBlockHashRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSBAsGetBlockDetailsByBlockHeightFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHeightFromCallbackRIBSB wrapped in GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSBCAsGetBlockDetailsByBlockHeightFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHeightFromCallbackRIBSBC wrapped in GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSBSCAsGetBlockDetailsByBlockHeightFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHeightFromCallbackRIBSBSC wrapped in GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSD2AsGetBlockDetailsByBlockHeightFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHeightFromCallbackRIBSD2 wrapped in GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSDAsGetBlockDetailsByBlockHeightFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHeightFromCallbackRIBSD wrapped in GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSEAsGetBlockDetailsByBlockHeightFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHeightFromCallbackRIBSE wrapped in GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSECAsGetBlockDetailsByBlockHeightFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHeightFromCallbackRIBSEC wrapped in GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSLAsGetBlockDetailsByBlockHeightFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHeightFromCallbackRIBSL wrapped in GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSPAsGetBlockDetailsByBlockHeightFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHeightFromCallbackRIBSP wrapped in GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSTAsGetBlockDetailsByBlockHeightFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHeightFromCallbackRIBST wrapped in GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSXAsGetBlockDetailsByBlockHeightFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHeightFromCallbackRIBSX wrapped in GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSZ2AsGetBlockDetailsByBlockHeightFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHeightFromCallbackRIBSZ2 wrapped in GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSZAsGetBlockDetailsByBlockHeightFromCallbackRIBS is a convenience function that returns GetBlockDetailsByBlockHeightFromCallbackRIBSZ wrapped in GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightRIBSBAsGetBlockDetailsByBlockHeightRIBS is a convenience function that returns GetBlockDetailsByBlockHeightRIBSB wrapped in GetBlockDetailsByBlockHeightRIBS.
GetBlockDetailsByBlockHeightRIBSBCAsGetBlockDetailsByBlockHeightRIBS is a convenience function that returns GetBlockDetailsByBlockHeightRIBSBC wrapped in GetBlockDetailsByBlockHeightRIBS.
GetBlockDetailsByBlockHeightRIBSBSCAsGetBlockDetailsByBlockHeightRIBS is a convenience function that returns GetBlockDetailsByBlockHeightRIBSBSC wrapped in GetBlockDetailsByBlockHeightRIBS.
GetBlockDetailsByBlockHeightRIBSD2AsGetBlockDetailsByBlockHeightRIBS is a convenience function that returns GetBlockDetailsByBlockHeightRIBSD2 wrapped in GetBlockDetailsByBlockHeightRIBS.
GetBlockDetailsByBlockHeightRIBSDAsGetBlockDetailsByBlockHeightRIBS is a convenience function that returns GetBlockDetailsByBlockHeightRIBSD wrapped in GetBlockDetailsByBlockHeightRIBS.
GetBlockDetailsByBlockHeightRIBSEAsGetBlockDetailsByBlockHeightRIBS is a convenience function that returns GetBlockDetailsByBlockHeightRIBSE wrapped in GetBlockDetailsByBlockHeightRIBS.
GetBlockDetailsByBlockHeightRIBSECAsGetBlockDetailsByBlockHeightRIBS is a convenience function that returns GetBlockDetailsByBlockHeightRIBSEC wrapped in GetBlockDetailsByBlockHeightRIBS.
GetBlockDetailsByBlockHeightRIBSLAsGetBlockDetailsByBlockHeightRIBS is a convenience function that returns GetBlockDetailsByBlockHeightRIBSL wrapped in GetBlockDetailsByBlockHeightRIBS.
GetBlockDetailsByBlockHeightRIBSZ2AsGetBlockDetailsByBlockHeightRIBS is a convenience function that returns GetBlockDetailsByBlockHeightRIBSZ2 wrapped in GetBlockDetailsByBlockHeightRIBS.
GetBlockDetailsByBlockHeightRIBSZAsGetBlockDetailsByBlockHeightRIBS is a convenience function that returns GetBlockDetailsByBlockHeightRIBSZ wrapped in GetBlockDetailsByBlockHeightRIBS.
GetLastMinedBlockRIBSBAsGetLastMinedBlockRIBS is a convenience function that returns GetLastMinedBlockRIBSB wrapped in GetLastMinedBlockRIBS.
GetLastMinedBlockRIBSBCAsGetLastMinedBlockRIBS is a convenience function that returns GetLastMinedBlockRIBSBC wrapped in GetLastMinedBlockRIBS.
GetLastMinedBlockRIBSBSCAsGetLastMinedBlockRIBS is a convenience function that returns GetLastMinedBlockRIBSBSC wrapped in GetLastMinedBlockRIBS.
GetLastMinedBlockRIBSD2AsGetLastMinedBlockRIBS is a convenience function that returns GetLastMinedBlockRIBSD2 wrapped in GetLastMinedBlockRIBS.
GetLastMinedBlockRIBSDAsGetLastMinedBlockRIBS is a convenience function that returns GetLastMinedBlockRIBSD wrapped in GetLastMinedBlockRIBS.
GetLastMinedBlockRIBSEAsGetLastMinedBlockRIBS is a convenience function that returns GetLastMinedBlockRIBSE wrapped in GetLastMinedBlockRIBS.
GetLastMinedBlockRIBSECAsGetLastMinedBlockRIBS is a convenience function that returns GetLastMinedBlockRIBSEC wrapped in GetLastMinedBlockRIBS.
GetLastMinedBlockRIBSLAsGetLastMinedBlockRIBS is a convenience function that returns GetLastMinedBlockRIBSL wrapped in GetLastMinedBlockRIBS.
GetLastMinedBlockRIBSZ2AsGetLastMinedBlockRIBS is a convenience function that returns GetLastMinedBlockRIBSZ2 wrapped in GetLastMinedBlockRIBS.
GetLastMinedBlockRIBSZAsGetLastMinedBlockRIBS is a convenience function that returns GetLastMinedBlockRIBSZ wrapped in GetLastMinedBlockRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSBAsGetTransactionDetailsByTransactionIDFromCallbackRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDFromCallbackRIBSB wrapped in GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSBCAsGetTransactionDetailsByTransactionIDFromCallbackRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDFromCallbackRIBSBC wrapped in GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSBSCAsGetTransactionDetailsByTransactionIDFromCallbackRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDFromCallbackRIBSBSC wrapped in GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSD2AsGetTransactionDetailsByTransactionIDFromCallbackRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDFromCallbackRIBSD2 wrapped in GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSDAsGetTransactionDetailsByTransactionIDFromCallbackRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDFromCallbackRIBSD wrapped in GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSEAsGetTransactionDetailsByTransactionIDFromCallbackRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDFromCallbackRIBSE wrapped in GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSECAsGetTransactionDetailsByTransactionIDFromCallbackRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDFromCallbackRIBSEC wrapped in GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSLAsGetTransactionDetailsByTransactionIDFromCallbackRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDFromCallbackRIBSL wrapped in GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSPAsGetTransactionDetailsByTransactionIDFromCallbackRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDFromCallbackRIBSP wrapped in GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSTAsGetTransactionDetailsByTransactionIDFromCallbackRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDFromCallbackRIBST wrapped in GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSXAsGetTransactionDetailsByTransactionIDFromCallbackRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDFromCallbackRIBSX wrapped in GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSZ2AsGetTransactionDetailsByTransactionIDFromCallbackRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDFromCallbackRIBSZ2 wrapped in GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSZAsGetTransactionDetailsByTransactionIDFromCallbackRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDFromCallbackRIBSZ wrapped in GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDRIBSBAsGetTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDRIBSB wrapped in GetTransactionDetailsByTransactionIDRIBS.
GetTransactionDetailsByTransactionIDRIBSBCAsGetTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDRIBSBC wrapped in GetTransactionDetailsByTransactionIDRIBS.
GetTransactionDetailsByTransactionIDRIBSBSCAsGetTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDRIBSBSC wrapped in GetTransactionDetailsByTransactionIDRIBS.
GetTransactionDetailsByTransactionIDRIBSD2AsGetTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDRIBSD2 wrapped in GetTransactionDetailsByTransactionIDRIBS.
GetTransactionDetailsByTransactionIDRIBSDAsGetTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDRIBSD wrapped in GetTransactionDetailsByTransactionIDRIBS.
GetTransactionDetailsByTransactionIDRIBSEAsGetTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDRIBSE wrapped in GetTransactionDetailsByTransactionIDRIBS.
GetTransactionDetailsByTransactionIDRIBSECAsGetTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDRIBSEC wrapped in GetTransactionDetailsByTransactionIDRIBS.
GetTransactionDetailsByTransactionIDRIBSLAsGetTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDRIBSL wrapped in GetTransactionDetailsByTransactionIDRIBS.
GetTransactionDetailsByTransactionIDRIBSZAsGetTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetTransactionDetailsByTransactionIDRIBSZ wrapped in GetTransactionDetailsByTransactionIDRIBS.
GetWalletTransactionDetailsByTransactionIDRIBSBAsGetWalletTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetWalletTransactionDetailsByTransactionIDRIBSB wrapped in GetWalletTransactionDetailsByTransactionIDRIBS.
GetWalletTransactionDetailsByTransactionIDRIBSBCAsGetWalletTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetWalletTransactionDetailsByTransactionIDRIBSBC wrapped in GetWalletTransactionDetailsByTransactionIDRIBS.
GetWalletTransactionDetailsByTransactionIDRIBSBSCAsGetWalletTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetWalletTransactionDetailsByTransactionIDRIBSBSC wrapped in GetWalletTransactionDetailsByTransactionIDRIBS.
GetWalletTransactionDetailsByTransactionIDRIBSD2AsGetWalletTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetWalletTransactionDetailsByTransactionIDRIBSD2 wrapped in GetWalletTransactionDetailsByTransactionIDRIBS.
GetWalletTransactionDetailsByTransactionIDRIBSDAsGetWalletTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetWalletTransactionDetailsByTransactionIDRIBSD wrapped in GetWalletTransactionDetailsByTransactionIDRIBS.
GetWalletTransactionDetailsByTransactionIDRIBSEAsGetWalletTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetWalletTransactionDetailsByTransactionIDRIBSE wrapped in GetWalletTransactionDetailsByTransactionIDRIBS.
GetWalletTransactionDetailsByTransactionIDRIBSECAsGetWalletTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetWalletTransactionDetailsByTransactionIDRIBSEC wrapped in GetWalletTransactionDetailsByTransactionIDRIBS.
GetWalletTransactionDetailsByTransactionIDRIBSLAsGetWalletTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetWalletTransactionDetailsByTransactionIDRIBSL wrapped in GetWalletTransactionDetailsByTransactionIDRIBS.
GetWalletTransactionDetailsByTransactionIDRIBSPAsGetWalletTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetWalletTransactionDetailsByTransactionIDRIBSP wrapped in GetWalletTransactionDetailsByTransactionIDRIBS.
GetWalletTransactionDetailsByTransactionIDRIBSTAsGetWalletTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetWalletTransactionDetailsByTransactionIDRIBST wrapped in GetWalletTransactionDetailsByTransactionIDRIBS.
GetWalletTransactionDetailsByTransactionIDRIBSZAsGetWalletTransactionDetailsByTransactionIDRIBS is a convenience function that returns GetWalletTransactionDetailsByTransactionIDRIBSZ wrapped in GetWalletTransactionDetailsByTransactionIDRIBS.
InvalidApiKeyAsActivateBlockchainEventSubscriptionE401 is a convenience function that returns InvalidApiKey wrapped in ActivateBlockchainEventSubscriptionE401.
InvalidApiKeyAsAddTokensToExistingFromAddressE401 is a convenience function that returns InvalidApiKey wrapped in AddTokensToExistingFromAddressE401.
InvalidApiKeyAsBlockHeightReachedE401 is a convenience function that returns InvalidApiKey wrapped in BlockHeightReachedE401.
InvalidApiKeyAsBroadcastLocallySignedTransactionE401 is a convenience function that returns InvalidApiKey wrapped in BroadcastLocallySignedTransactionE401.
InvalidApiKeyAsConvertBitcoinCashAddressE401 is a convenience function that returns InvalidApiKey wrapped in ConvertBitcoinCashAddressE401.
InvalidApiKeyAsCreateAutomaticCoinsForwardingE401 is a convenience function that returns InvalidApiKey wrapped in CreateAutomaticCoinsForwardingE401.
InvalidApiKeyAsCreateAutomaticTokensForwardingE401 is a convenience function that returns InvalidApiKey wrapped in CreateAutomaticTokensForwardingE401.
InvalidApiKeyAsCreateCoinsTransactionFromAddressForWholeAmountE401 is a convenience function that returns InvalidApiKey wrapped in CreateCoinsTransactionFromAddressForWholeAmountE401.
InvalidApiKeyAsCreateCoinsTransactionRequestFromAddressE401 is a convenience function that returns InvalidApiKey wrapped in CreateCoinsTransactionRequestFromAddressE401.
InvalidApiKeyAsCreateCoinsTransactionRequestFromWalletE401 is a convenience function that returns InvalidApiKey wrapped in CreateCoinsTransactionRequestFromWalletE401.
InvalidApiKeyAsCreateFungibleTokensTransactionRequestFromAddressE401 is a convenience function that returns InvalidApiKey wrapped in CreateFungibleTokensTransactionRequestFromAddressE401.
InvalidApiKeyAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE401 is a convenience function that returns InvalidApiKey wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE401.
InvalidApiKeyAsCreateSingleTransactionRequestFromAddressWithoutFeePriorityE401 is a convenience function that returns InvalidApiKey wrapped in CreateSingleTransactionRequestFromAddressWithoutFeePriorityE401.
InvalidApiKeyAsDecodeRawTransactionHexE401 is a convenience function that returns InvalidApiKey wrapped in DecodeRawTransactionHexE401.
InvalidApiKeyAsDecodeXAddressE401 is a convenience function that returns InvalidApiKey wrapped in DecodeXAddressE401.
InvalidApiKeyAsDeleteAutomaticCoinsForwardingE401 is a convenience function that returns InvalidApiKey wrapped in DeleteAutomaticCoinsForwardingE401.
InvalidApiKeyAsDeleteAutomaticTokensForwardingE401 is a convenience function that returns InvalidApiKey wrapped in DeleteAutomaticTokensForwardingE401.
InvalidApiKeyAsDeleteBlockchainEventSubscriptionE401 is a convenience function that returns InvalidApiKey wrapped in DeleteBlockchainEventSubscriptionE401.
InvalidApiKeyAsDeriveAndSyncNewChangeAddressesE401 is a convenience function that returns InvalidApiKey wrapped in DeriveAndSyncNewChangeAddressesE401.
InvalidApiKeyAsDeriveAndSyncNewReceivingAddressesE401 is a convenience function that returns InvalidApiKey wrapped in DeriveAndSyncNewReceivingAddressesE401.
InvalidApiKeyAsDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE401 is a convenience function that returns InvalidApiKey wrapped in DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE401.
InvalidApiKeyAsEncodeXAddressE401 is a convenience function that returns InvalidApiKey wrapped in EncodeXAddressE401.
InvalidApiKeyAsEstimateGasLimitE401 is a convenience function that returns InvalidApiKey wrapped in EstimateGasLimitE401.
InvalidApiKeyAsEstimateTokenGasLimitE401 is a convenience function that returns InvalidApiKey wrapped in EstimateTokenGasLimitE401.
InvalidApiKeyAsEstimateTransactionSmartFeeE401 is a convenience function that returns InvalidApiKey wrapped in EstimateTransactionSmartFeeE401.
InvalidApiKeyAsGenerateDepositAddressE401 is a convenience function that returns InvalidApiKey wrapped in GenerateDepositAddressE401.
InvalidApiKeyAsGetAddressBalanceE401 is a convenience function that returns InvalidApiKey wrapped in GetAddressBalanceE401.
InvalidApiKeyAsGetAddressDetailsE401 is a convenience function that returns InvalidApiKey wrapped in GetAddressDetailsE401.
InvalidApiKeyAsGetAddressDetailsFromCallbackE401 is a convenience function that returns InvalidApiKey wrapped in GetAddressDetailsFromCallbackE401.
InvalidApiKeyAsGetAssetDetailsByAssetIDE401 is a convenience function that returns InvalidApiKey wrapped in GetAssetDetailsByAssetIDE401.
InvalidApiKeyAsGetAssetDetailsByAssetSymbolE401 is a convenience function that returns InvalidApiKey wrapped in GetAssetDetailsByAssetSymbolE401.
InvalidApiKeyAsGetBlockchainEventSubscriptionDetailsByReferenceIDE401 is a convenience function that returns InvalidApiKey wrapped in GetBlockchainEventSubscriptionDetailsByReferenceIDE401.
InvalidApiKeyAsGetBlockDetailsByBlockHashE401 is a convenience function that returns InvalidApiKey wrapped in GetBlockDetailsByBlockHashE401.
InvalidApiKeyAsGetBlockDetailsByBlockHashFromCallbackE401 is a convenience function that returns InvalidApiKey wrapped in GetBlockDetailsByBlockHashFromCallbackE401.
InvalidApiKeyAsGetBlockDetailsByBlockHeightE401 is a convenience function that returns InvalidApiKey wrapped in GetBlockDetailsByBlockHeightE401.
InvalidApiKeyAsGetBlockDetailsByBlockHeightFromCallbackE401 is a convenience function that returns InvalidApiKey wrapped in GetBlockDetailsByBlockHeightFromCallbackE401.
InvalidApiKeyAsGetEIP1559FeeRecommendationsE401 is a convenience function that returns InvalidApiKey wrapped in GetEIP1559FeeRecommendationsE401.
InvalidApiKeyAsGetExchangeRateByAssetsIDsE401 is a convenience function that returns InvalidApiKey wrapped in GetExchangeRateByAssetsIDsE401.
InvalidApiKeyAsGetExchangeRateByAssetSymbolsE401 is a convenience function that returns InvalidApiKey wrapped in GetExchangeRateByAssetSymbolsE401.
InvalidApiKeyAsGetFeeAddressDetailsE401 is a convenience function that returns InvalidApiKey wrapped in GetFeeAddressDetailsE401.
InvalidApiKeyAsGetFeeRecommendationsE401 is a convenience function that returns InvalidApiKey wrapped in GetFeeRecommendationsE401.
InvalidApiKeyAsGetHDWalletXPubYPubZPubAssetsE401 is a convenience function that returns InvalidApiKey wrapped in GetHDWalletXPubYPubZPubAssetsE401.
InvalidApiKeyAsGetHDWalletXPubYPubZPubDetailsE401 is a convenience function that returns InvalidApiKey wrapped in GetHDWalletXPubYPubZPubDetailsE401.
InvalidApiKeyAsGetInternalTransactionByTransactionHashAndOperationIdE401 is a convenience function that returns InvalidApiKey wrapped in GetInternalTransactionByTransactionHashAndOperationIdE401.
InvalidApiKeyAsGetLastMinedBlockE401 is a convenience function that returns InvalidApiKey wrapped in GetLastMinedBlockE401.
InvalidApiKeyAsGetLatestMinedXRPRippleBlockE401 is a convenience function that returns InvalidApiKey wrapped in GetLatestMinedXRPRippleBlockE401.
InvalidApiKeyAsGetLatestMinedZilliqaBlockE401 is a convenience function that returns InvalidApiKey wrapped in GetLatestMinedZilliqaBlockE401.
InvalidApiKeyAsGetNextAvailableNonceE401 is a convenience function that returns InvalidApiKey wrapped in GetNextAvailableNonceE401.
InvalidApiKeyAsGetRawTransactionDataE401 is a convenience function that returns InvalidApiKey wrapped in GetRawTransactionDataE401.
InvalidApiKeyAsGetTokenDetailsByContractAddressE401 is a convenience function that returns InvalidApiKey wrapped in GetTokenDetailsByContractAddressE401.
InvalidApiKeyAsGetTransactionDetailsByTransactionIDE401 is a convenience function that returns InvalidApiKey wrapped in GetTransactionDetailsByTransactionIDE401.
InvalidApiKeyAsGetTransactionDetailsByTransactionIDFromCallbackE401 is a convenience function that returns InvalidApiKey wrapped in GetTransactionDetailsByTransactionIDFromCallbackE401.
InvalidApiKeyAsGetTransactionRequestDetailsE401 is a convenience function that returns InvalidApiKey wrapped in GetTransactionRequestDetailsE401.
InvalidApiKeyAsGetWalletAssetDetailsE401 is a convenience function that returns InvalidApiKey wrapped in GetWalletAssetDetailsE401.
InvalidApiKeyAsGetWalletTransactionDetailsByTransactionIDE401 is a convenience function that returns InvalidApiKey wrapped in GetWalletTransactionDetailsByTransactionIDE401.
InvalidApiKeyAsGetXRPRippleAddressDetailsE401 is a convenience function that returns InvalidApiKey wrapped in GetXRPRippleAddressDetailsE401.
InvalidApiKeyAsGetXRPRippleBlockDetailsByBlockHashE401 is a convenience function that returns InvalidApiKey wrapped in GetXRPRippleBlockDetailsByBlockHashE401.
InvalidApiKeyAsGetXRPRippleBlockDetailsByBlockHeightE401 is a convenience function that returns InvalidApiKey wrapped in GetXRPRippleBlockDetailsByBlockHeightE401.
InvalidApiKeyAsGetXRPRippleTransactionDetailsByTransactionIDE401 is a convenience function that returns InvalidApiKey wrapped in GetXRPRippleTransactionDetailsByTransactionIDE401.
InvalidApiKeyAsGetZilliqaAddressDetailsE401 is a convenience function that returns InvalidApiKey wrapped in GetZilliqaAddressDetailsE401.
InvalidApiKeyAsGetZilliqaBlockDetailsByBlockHashE401 is a convenience function that returns InvalidApiKey wrapped in GetZilliqaBlockDetailsByBlockHashE401.
InvalidApiKeyAsGetZilliqaBlockDetailsByBlockHeightE401 is a convenience function that returns InvalidApiKey wrapped in GetZilliqaBlockDetailsByBlockHeightE401.
InvalidApiKeyAsGetZilliqaTransactionDetailsByTransactionIDE401 is a convenience function that returns InvalidApiKey wrapped in GetZilliqaTransactionDetailsByTransactionIDE401.
InvalidApiKeyAsListAllAssetsByWalletIDE401 is a convenience function that returns InvalidApiKey wrapped in ListAllAssetsByWalletIDE401.
InvalidApiKeyAsListAllAssetsFromAllWalletsE401 is a convenience function that returns InvalidApiKey wrapped in ListAllAssetsFromAllWalletsE401.
InvalidApiKeyAsListBlockchainEventsSubscriptionsE401 is a convenience function that returns InvalidApiKey wrapped in ListBlockchainEventsSubscriptionsE401.
InvalidApiKeyAsListCoinsForwardingAutomationsE401 is a convenience function that returns InvalidApiKey wrapped in ListCoinsForwardingAutomationsE401.
InvalidApiKeyAsListConfirmedTokensTransfersByAddressAndTimeRangeE401 is a convenience function that returns InvalidApiKey wrapped in ListConfirmedTokensTransfersByAddressAndTimeRangeE401.
InvalidApiKeyAsListConfirmedTokensTransfersByAddressE401 is a convenience function that returns InvalidApiKey wrapped in ListConfirmedTokensTransfersByAddressE401.
InvalidApiKeyAsListConfirmedTransactionsByAddressAndTimeRangeE401 is a convenience function that returns InvalidApiKey wrapped in ListConfirmedTransactionsByAddressAndTimeRangeE401.
InvalidApiKeyAsListConfirmedTransactionsByAddressE401 is a convenience function that returns InvalidApiKey wrapped in ListConfirmedTransactionsByAddressE401.
InvalidApiKeyAsListDepositAddressesE401 is a convenience function that returns InvalidApiKey wrapped in ListDepositAddressesE401.
InvalidApiKeyAsListHDWalletXPubYPubZPubTransactionsE401 is a convenience function that returns InvalidApiKey wrapped in ListHDWalletXPubYPubZPubTransactionsE401.
InvalidApiKeyAsListHDWalletXPubYPubZPubUTXOsE401 is a convenience function that returns InvalidApiKey wrapped in ListHDWalletXPubYPubZPubUTXOsE401.
InvalidApiKeyAsListInternalTransactionDetailsByTransactionHashE401 is a convenience function that returns InvalidApiKey wrapped in ListInternalTransactionDetailsByTransactionHashE401.
InvalidApiKeyAsListInternalTransactionsByAddressAndTimeRangeE401 is a convenience function that returns InvalidApiKey wrapped in ListInternalTransactionsByAddressAndTimeRangeE401.
InvalidApiKeyAsListInternalTransactionsByAddressE401 is a convenience function that returns InvalidApiKey wrapped in ListInternalTransactionsByAddressE401.
InvalidApiKeyAsListLatestMinedBlocksE401 is a convenience function that returns InvalidApiKey wrapped in ListLatestMinedBlocksE401.
InvalidApiKeyAsListSupportedAssetsE401 is a convenience function that returns InvalidApiKey wrapped in ListSupportedAssetsE401.
InvalidApiKeyAsListSupportedTokensE401 is a convenience function that returns InvalidApiKey wrapped in ListSupportedTokensE401.
InvalidApiKeyAsListSyncedAddressesE401 is a convenience function that returns InvalidApiKey wrapped in ListSyncedAddressesE401.
InvalidApiKeyAsListTokensByAddressE401 is a convenience function that returns InvalidApiKey wrapped in ListTokensByAddressE401.
InvalidApiKeyAsListTokensForwardingAutomationsE401 is a convenience function that returns InvalidApiKey wrapped in ListTokensForwardingAutomationsE401.
InvalidApiKeyAsListTokensTransfersByTransactionHashE401 is a convenience function that returns InvalidApiKey wrapped in ListTokensTransfersByTransactionHashE401.
InvalidApiKeyAsListTransactionsByBlockHashE401 is a convenience function that returns InvalidApiKey wrapped in ListTransactionsByBlockHashE401.
InvalidApiKeyAsListTransactionsByBlockHeightE401 is a convenience function that returns InvalidApiKey wrapped in ListTransactionsByBlockHeightE401.
InvalidApiKeyAsListUnconfirmedTokensTransfersByAddressE401 is a convenience function that returns InvalidApiKey wrapped in ListUnconfirmedTokensTransfersByAddressE401.
InvalidApiKeyAsListUnconfirmedTransactionsByAddressE401 is a convenience function that returns InvalidApiKey wrapped in ListUnconfirmedTransactionsByAddressE401.
InvalidApiKeyAsListUnspentTransactionOutputsByAddressE401 is a convenience function that returns InvalidApiKey wrapped in ListUnspentTransactionOutputsByAddressE401.
InvalidApiKeyAsListWalletTransactionsE401 is a convenience function that returns InvalidApiKey wrapped in ListWalletTransactionsE401.
InvalidApiKeyAsListXRPRippleTransactionsByAddressAndTimeRangeE401 is a convenience function that returns InvalidApiKey wrapped in ListXRPRippleTransactionsByAddressAndTimeRangeE401.
InvalidApiKeyAsListXRPRippleTransactionsByAddressE401 is a convenience function that returns InvalidApiKey wrapped in ListXRPRippleTransactionsByAddressE401.
InvalidApiKeyAsListXRPRippleTransactionsByBlockHashE401 is a convenience function that returns InvalidApiKey wrapped in ListXRPRippleTransactionsByBlockHashE401.
InvalidApiKeyAsListXRPRippleTransactionsByBlockHeightE401 is a convenience function that returns InvalidApiKey wrapped in ListXRPRippleTransactionsByBlockHeightE401.
InvalidApiKeyAsListZilliqaTransactionsByAddressE401 is a convenience function that returns InvalidApiKey wrapped in ListZilliqaTransactionsByAddressE401.
InvalidApiKeyAsListZilliqaTransactionsByBlockHashE401 is a convenience function that returns InvalidApiKey wrapped in ListZilliqaTransactionsByBlockHashE401.
InvalidApiKeyAsListZilliqaTransactionsByBlockHeightE401 is a convenience function that returns InvalidApiKey wrapped in ListZilliqaTransactionsByBlockHeightE401.
InvalidApiKeyAsMinedTransactionE401 is a convenience function that returns InvalidApiKey wrapped in MinedTransactionE401.
InvalidApiKeyAsNewBlockE401 is a convenience function that returns InvalidApiKey wrapped in NewBlockE401.
InvalidApiKeyAsNewConfirmedCoinsTransactionsAndEachConfirmationE401 is a convenience function that returns InvalidApiKey wrapped in NewConfirmedCoinsTransactionsAndEachConfirmationE401.
InvalidApiKeyAsNewConfirmedCoinsTransactionsE401 is a convenience function that returns InvalidApiKey wrapped in NewConfirmedCoinsTransactionsE401.
InvalidApiKeyAsNewConfirmedCoinsTransactionsForSpecificAmountE401 is a convenience function that returns InvalidApiKey wrapped in NewConfirmedCoinsTransactionsForSpecificAmountE401.
InvalidApiKeyAsNewConfirmedInternalTransactionsAndEachConfirmationE401 is a convenience function that returns InvalidApiKey wrapped in NewConfirmedInternalTransactionsAndEachConfirmationE401.
InvalidApiKeyAsNewConfirmedInternalTransactionsE401 is a convenience function that returns InvalidApiKey wrapped in NewConfirmedInternalTransactionsE401.
InvalidApiKeyAsNewConfirmedInternalTransactionsForSpecificAmountE401 is a convenience function that returns InvalidApiKey wrapped in NewConfirmedInternalTransactionsForSpecificAmountE401.
InvalidApiKeyAsNewConfirmedTokensTransactionsAndEachConfirmationE401 is a convenience function that returns InvalidApiKey wrapped in NewConfirmedTokensTransactionsAndEachConfirmationE401.
InvalidApiKeyAsNewConfirmedTokensTransactionsE401 is a convenience function that returns InvalidApiKey wrapped in NewConfirmedTokensTransactionsE401.
InvalidApiKeyAsNewConfirmedTokenTransactionsForSpecificAmountE401 is a convenience function that returns InvalidApiKey wrapped in NewConfirmedTokenTransactionsForSpecificAmountE401.
InvalidApiKeyAsNewUnconfirmedCoinsTransactionsE401 is a convenience function that returns InvalidApiKey wrapped in NewUnconfirmedCoinsTransactionsE401.
InvalidApiKeyAsNewUnconfirmedTokensTransactionsE401 is a convenience function that returns InvalidApiKey wrapped in NewUnconfirmedTokensTransactionsE401.
InvalidApiKeyAsPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE401 is a convenience function that returns InvalidApiKey wrapped in PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE401.
InvalidApiKeyAsPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE401 is a convenience function that returns InvalidApiKey wrapped in PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE401.
InvalidApiKeyAsSyncHDWalletXPubYPubZPubE401 is a convenience function that returns InvalidApiKey wrapped in SyncHDWalletXPubYPubZPubE401.
InvalidApiKeyAsSyncNewHDWalletXPubYPubZPubE401 is a convenience function that returns InvalidApiKey wrapped in SyncNewHDWalletXPubYPubZPubE401.
InvalidApiKeyAsValidateAddressE401 is a convenience function that returns InvalidApiKey wrapped in ValidateAddressE401.
InvalidBlockchainAsConvertBitcoinCashAddressE400 is a convenience function that returns InvalidBlockchain wrapped in ConvertBitcoinCashAddressE400.
InvalidBlockchainAsDecodeRawTransactionHexE400 is a convenience function that returns InvalidBlockchain wrapped in DecodeRawTransactionHexE400.
InvalidBlockchainAsDecodeXAddressE400 is a convenience function that returns InvalidBlockchain wrapped in DecodeXAddressE400.
InvalidBlockchainAsDeriveAndSyncNewChangeAddressesE400 is a convenience function that returns InvalidBlockchain wrapped in DeriveAndSyncNewChangeAddressesE400.
InvalidBlockchainAsDeriveAndSyncNewReceivingAddressesE400 is a convenience function that returns InvalidBlockchain wrapped in DeriveAndSyncNewReceivingAddressesE400.
InvalidBlockchainAsDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE400 is a convenience function that returns InvalidBlockchain wrapped in DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE400.
InvalidBlockchainAsEncodeXAddressE400 is a convenience function that returns InvalidBlockchain wrapped in EncodeXAddressE400.
InvalidBlockchainAsGetHDWalletXPubYPubZPubAssetsE400 is a convenience function that returns InvalidBlockchain wrapped in GetHDWalletXPubYPubZPubAssetsE400.
InvalidBlockchainAsGetHDWalletXPubYPubZPubDetailsE400 is a convenience function that returns InvalidBlockchain wrapped in GetHDWalletXPubYPubZPubDetailsE400.
InvalidBlockchainAsListHDWalletXPubYPubZPubTransactionsE400 is a convenience function that returns InvalidBlockchain wrapped in ListHDWalletXPubYPubZPubTransactionsE400.
InvalidBlockchainAsSyncHDWalletXPubYPubZPubE400 is a convenience function that returns InvalidBlockchain wrapped in SyncHDWalletXPubYPubZPubE400.
InvalidBlockchainAsSyncNewHDWalletXPubYPubZPubE400 is a convenience function that returns InvalidBlockchain wrapped in SyncNewHDWalletXPubYPubZPubE400.
InvalidDataAsBlockHeightReachedE409 is a convenience function that returns InvalidData wrapped in BlockHeightReachedE409.
InvalidDataAsBroadcastLocallySignedTransactionE409 is a convenience function that returns InvalidData wrapped in BroadcastLocallySignedTransactionE409.
InvalidDataAsCreateAutomaticCoinsForwardingE409 is a convenience function that returns InvalidData wrapped in CreateAutomaticCoinsForwardingE409.
InvalidDataAsCreateCoinsTransactionFromAddressForWholeAmountE409 is a convenience function that returns InvalidData wrapped in CreateCoinsTransactionFromAddressForWholeAmountE409.
InvalidDataAsCreateCoinsTransactionRequestFromAddressE409 is a convenience function that returns InvalidData wrapped in CreateCoinsTransactionRequestFromAddressE409.
InvalidDataAsCreateCoinsTransactionRequestFromWalletE409 is a convenience function that returns InvalidData wrapped in CreateCoinsTransactionRequestFromWalletE409.
InvalidDataAsCreateFungibleTokensTransactionRequestFromAddressE409 is a convenience function that returns InvalidData wrapped in CreateFungibleTokensTransactionRequestFromAddressE409.
InvalidDataAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE409 is a convenience function that returns InvalidData wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE409.
InvalidDataAsCreateSingleTransactionRequestFromAddressWithoutFeePriorityE409 is a convenience function that returns InvalidData wrapped in CreateSingleTransactionRequestFromAddressWithoutFeePriorityE409.
InvalidDataAsMinedTransactionE409 is a convenience function that returns InvalidData wrapped in MinedTransactionE409.
InvalidDataAsNewBlockE409 is a convenience function that returns InvalidData wrapped in NewBlockE409.
InvalidDataAsNewConfirmedCoinsTransactionsAndEachConfirmationE409 is a convenience function that returns InvalidData wrapped in NewConfirmedCoinsTransactionsAndEachConfirmationE409.
InvalidDataAsNewConfirmedCoinsTransactionsE409 is a convenience function that returns InvalidData wrapped in NewConfirmedCoinsTransactionsE409.
InvalidDataAsNewConfirmedCoinsTransactionsForSpecificAmountE409 is a convenience function that returns InvalidData wrapped in NewConfirmedCoinsTransactionsForSpecificAmountE409.
InvalidDataAsNewConfirmedInternalTransactionsAndEachConfirmationE409 is a convenience function that returns InvalidData wrapped in NewConfirmedInternalTransactionsAndEachConfirmationE409.
InvalidDataAsNewConfirmedInternalTransactionsE409 is a convenience function that returns InvalidData wrapped in NewConfirmedInternalTransactionsE409.
InvalidDataAsNewConfirmedInternalTransactionsForSpecificAmountE409 is a convenience function that returns InvalidData wrapped in NewConfirmedInternalTransactionsForSpecificAmountE409.
InvalidDataAsNewConfirmedTokensTransactionsAndEachConfirmationE409 is a convenience function that returns InvalidData wrapped in NewConfirmedTokensTransactionsAndEachConfirmationE409.
InvalidDataAsNewConfirmedTokensTransactionsE409 is a convenience function that returns InvalidData wrapped in NewConfirmedTokensTransactionsE409.
InvalidDataAsNewConfirmedTokenTransactionsForSpecificAmountE409 is a convenience function that returns InvalidData wrapped in NewConfirmedTokenTransactionsForSpecificAmountE409.
InvalidDataAsNewUnconfirmedCoinsTransactionsE409 is a convenience function that returns InvalidData wrapped in NewUnconfirmedCoinsTransactionsE409.
InvalidDataAsNewUnconfirmedTokensTransactionsE409 is a convenience function that returns InvalidData wrapped in NewUnconfirmedTokensTransactionsE409.
InvalidDataAsSyncHDWalletXPubYPubZPubE409 is a convenience function that returns InvalidData wrapped in SyncHDWalletXPubYPubZPubE409.
InvalidDataAsSyncNewHDWalletXPubYPubZPubE409 is a convenience function that returns InvalidData wrapped in SyncNewHDWalletXPubYPubZPubE409.
InvalidNetworkAsDecodeRawTransactionHexE400 is a convenience function that returns InvalidNetwork wrapped in DecodeRawTransactionHexE400.
InvalidNetworkAsDecodeXAddressE400 is a convenience function that returns InvalidNetwork wrapped in DecodeXAddressE400.
InvalidNetworkAsDeriveAndSyncNewChangeAddressesE400 is a convenience function that returns InvalidNetwork wrapped in DeriveAndSyncNewChangeAddressesE400.
InvalidNetworkAsDeriveAndSyncNewReceivingAddressesE400 is a convenience function that returns InvalidNetwork wrapped in DeriveAndSyncNewReceivingAddressesE400.
InvalidNetworkAsDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE400 is a convenience function that returns InvalidNetwork wrapped in DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE400.
InvalidNetworkAsEncodeXAddressE400 is a convenience function that returns InvalidNetwork wrapped in EncodeXAddressE400.
InvalidNetworkAsGetHDWalletXPubYPubZPubAssetsE400 is a convenience function that returns InvalidNetwork wrapped in GetHDWalletXPubYPubZPubAssetsE400.
InvalidNetworkAsGetHDWalletXPubYPubZPubDetailsE400 is a convenience function that returns InvalidNetwork wrapped in GetHDWalletXPubYPubZPubDetailsE400.
InvalidNetworkAsListHDWalletXPubYPubZPubTransactionsE400 is a convenience function that returns InvalidNetwork wrapped in ListHDWalletXPubYPubZPubTransactionsE400.
InvalidNetworkAsSyncHDWalletXPubYPubZPubE400 is a convenience function that returns InvalidNetwork wrapped in SyncHDWalletXPubYPubZPubE400.
InvalidNetworkAsSyncNewHDWalletXPubYPubZPubE400 is a convenience function that returns InvalidNetwork wrapped in SyncNewHDWalletXPubYPubZPubE400.
InvalidPaginationAsActivateBlockchainEventSubscriptionE400 is a convenience function that returns InvalidPagination wrapped in ActivateBlockchainEventSubscriptionE400.
InvalidPaginationAsAddTokensToExistingFromAddressE400 is a convenience function that returns InvalidPagination wrapped in AddTokensToExistingFromAddressE400.
InvalidPaginationAsBlockHeightReachedE400 is a convenience function that returns InvalidPagination wrapped in BlockHeightReachedE400.
InvalidPaginationAsBroadcastLocallySignedTransactionE400 is a convenience function that returns InvalidPagination wrapped in BroadcastLocallySignedTransactionE400.
InvalidPaginationAsConvertBitcoinCashAddressE400 is a convenience function that returns InvalidPagination wrapped in ConvertBitcoinCashAddressE400.
InvalidPaginationAsCreateAutomaticCoinsForwardingE400 is a convenience function that returns InvalidPagination wrapped in CreateAutomaticCoinsForwardingE400.
InvalidPaginationAsCreateAutomaticTokensForwardingE400 is a convenience function that returns InvalidPagination wrapped in CreateAutomaticTokensForwardingE400.
InvalidPaginationAsCreateCoinsTransactionFromAddressForWholeAmountE400 is a convenience function that returns InvalidPagination wrapped in CreateCoinsTransactionFromAddressForWholeAmountE400.
InvalidPaginationAsCreateCoinsTransactionRequestFromAddressE400 is a convenience function that returns InvalidPagination wrapped in CreateCoinsTransactionRequestFromAddressE400.
InvalidPaginationAsCreateCoinsTransactionRequestFromWalletE400 is a convenience function that returns InvalidPagination wrapped in CreateCoinsTransactionRequestFromWalletE400.
InvalidPaginationAsCreateFungibleTokensTransactionRequestFromAddressE400 is a convenience function that returns InvalidPagination wrapped in CreateFungibleTokensTransactionRequestFromAddressE400.
InvalidPaginationAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE400 is a convenience function that returns InvalidPagination wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE400.
InvalidPaginationAsCreateSingleTransactionRequestFromAddressWithoutFeePriorityE400 is a convenience function that returns InvalidPagination wrapped in CreateSingleTransactionRequestFromAddressWithoutFeePriorityE400.
InvalidPaginationAsDecodeRawTransactionHexE400 is a convenience function that returns InvalidPagination wrapped in DecodeRawTransactionHexE400.
InvalidPaginationAsDecodeXAddressE400 is a convenience function that returns InvalidPagination wrapped in DecodeXAddressE400.
InvalidPaginationAsDeleteAutomaticCoinsForwardingE400 is a convenience function that returns InvalidPagination wrapped in DeleteAutomaticCoinsForwardingE400.
InvalidPaginationAsDeleteAutomaticTokensForwardingE400 is a convenience function that returns InvalidPagination wrapped in DeleteAutomaticTokensForwardingE400.
InvalidPaginationAsDeleteBlockchainEventSubscriptionE400 is a convenience function that returns InvalidPagination wrapped in DeleteBlockchainEventSubscriptionE400.
InvalidPaginationAsDeriveAndSyncNewChangeAddressesE400 is a convenience function that returns InvalidPagination wrapped in DeriveAndSyncNewChangeAddressesE400.
InvalidPaginationAsDeriveAndSyncNewReceivingAddressesE400 is a convenience function that returns InvalidPagination wrapped in DeriveAndSyncNewReceivingAddressesE400.
InvalidPaginationAsDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE400 is a convenience function that returns InvalidPagination wrapped in DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE400.
InvalidPaginationAsEncodeXAddressE400 is a convenience function that returns InvalidPagination wrapped in EncodeXAddressE400.
InvalidPaginationAsEstimateGasLimitE400 is a convenience function that returns InvalidPagination wrapped in EstimateGasLimitE400.
InvalidPaginationAsEstimateTokenGasLimitE400 is a convenience function that returns InvalidPagination wrapped in EstimateTokenGasLimitE400.
InvalidPaginationAsEstimateTransactionSmartFeeE400 is a convenience function that returns InvalidPagination wrapped in EstimateTransactionSmartFeeE400.
InvalidPaginationAsGenerateDepositAddressE400 is a convenience function that returns InvalidPagination wrapped in GenerateDepositAddressE400.
InvalidPaginationAsGetAddressBalanceE400 is a convenience function that returns InvalidPagination wrapped in GetAddressBalanceE400.
InvalidPaginationAsGetAddressDetailsE400 is a convenience function that returns InvalidPagination wrapped in GetAddressDetailsE400.
InvalidPaginationAsGetAddressDetailsFromCallbackE400 is a convenience function that returns InvalidPagination wrapped in GetAddressDetailsFromCallbackE400.
InvalidPaginationAsGetAssetDetailsByAssetIDE400 is a convenience function that returns InvalidPagination wrapped in GetAssetDetailsByAssetIDE400.
InvalidPaginationAsGetAssetDetailsByAssetSymbolE400 is a convenience function that returns InvalidPagination wrapped in GetAssetDetailsByAssetSymbolE400.
InvalidPaginationAsGetBlockchainEventSubscriptionDetailsByReferenceIDE400 is a convenience function that returns InvalidPagination wrapped in GetBlockchainEventSubscriptionDetailsByReferenceIDE400.
InvalidPaginationAsGetBlockDetailsByBlockHashE400 is a convenience function that returns InvalidPagination wrapped in GetBlockDetailsByBlockHashE400.
InvalidPaginationAsGetBlockDetailsByBlockHashFromCallbackE400 is a convenience function that returns InvalidPagination wrapped in GetBlockDetailsByBlockHashFromCallbackE400.
InvalidPaginationAsGetBlockDetailsByBlockHeightE400 is a convenience function that returns InvalidPagination wrapped in GetBlockDetailsByBlockHeightE400.
InvalidPaginationAsGetBlockDetailsByBlockHeightFromCallbackE400 is a convenience function that returns InvalidPagination wrapped in GetBlockDetailsByBlockHeightFromCallbackE400.
InvalidPaginationAsGetEIP1559FeeRecommendationsE400 is a convenience function that returns InvalidPagination wrapped in GetEIP1559FeeRecommendationsE400.
InvalidPaginationAsGetExchangeRateByAssetsIDsE400 is a convenience function that returns InvalidPagination wrapped in GetExchangeRateByAssetsIDsE400.
InvalidPaginationAsGetExchangeRateByAssetSymbolsE400 is a convenience function that returns InvalidPagination wrapped in GetExchangeRateByAssetSymbolsE400.
InvalidPaginationAsGetFeeAddressDetailsE400 is a convenience function that returns InvalidPagination wrapped in GetFeeAddressDetailsE400.
InvalidPaginationAsGetFeeRecommendationsE400 is a convenience function that returns InvalidPagination wrapped in GetFeeRecommendationsE400.
InvalidPaginationAsGetHDWalletXPubYPubZPubAssetsE400 is a convenience function that returns InvalidPagination wrapped in GetHDWalletXPubYPubZPubAssetsE400.
InvalidPaginationAsGetHDWalletXPubYPubZPubDetailsE400 is a convenience function that returns InvalidPagination wrapped in GetHDWalletXPubYPubZPubDetailsE400.
InvalidPaginationAsGetInternalTransactionByTransactionHashAndOperationIdE400 is a convenience function that returns InvalidPagination wrapped in GetInternalTransactionByTransactionHashAndOperationIdE400.
InvalidPaginationAsGetLastMinedBlockE400 is a convenience function that returns InvalidPagination wrapped in GetLastMinedBlockE400.
InvalidPaginationAsGetLatestMinedXRPRippleBlockE400 is a convenience function that returns InvalidPagination wrapped in GetLatestMinedXRPRippleBlockE400.
InvalidPaginationAsGetLatestMinedZilliqaBlockE400 is a convenience function that returns InvalidPagination wrapped in GetLatestMinedZilliqaBlockE400.
InvalidPaginationAsGetNextAvailableNonceE400 is a convenience function that returns InvalidPagination wrapped in GetNextAvailableNonceE400.
InvalidPaginationAsGetRawTransactionDataE400 is a convenience function that returns InvalidPagination wrapped in GetRawTransactionDataE400.
InvalidPaginationAsGetTokenDetailsByContractAddressE400 is a convenience function that returns InvalidPagination wrapped in GetTokenDetailsByContractAddressE400.
InvalidPaginationAsGetTransactionDetailsByTransactionIDE400 is a convenience function that returns InvalidPagination wrapped in GetTransactionDetailsByTransactionIDE400.
InvalidPaginationAsGetTransactionDetailsByTransactionIDFromCallbackE400 is a convenience function that returns InvalidPagination wrapped in GetTransactionDetailsByTransactionIDFromCallbackE400.
InvalidPaginationAsGetTransactionRequestDetailsE400 is a convenience function that returns InvalidPagination wrapped in GetTransactionRequestDetailsE400.
InvalidPaginationAsGetWalletAssetDetailsE400 is a convenience function that returns InvalidPagination wrapped in GetWalletAssetDetailsE400.
InvalidPaginationAsGetWalletTransactionDetailsByTransactionIDE400 is a convenience function that returns InvalidPagination wrapped in GetWalletTransactionDetailsByTransactionIDE400.
InvalidPaginationAsGetXRPRippleAddressDetailsE400 is a convenience function that returns InvalidPagination wrapped in GetXRPRippleAddressDetailsE400.
InvalidPaginationAsGetXRPRippleBlockDetailsByBlockHashE400 is a convenience function that returns InvalidPagination wrapped in GetXRPRippleBlockDetailsByBlockHashE400.
InvalidPaginationAsGetXRPRippleBlockDetailsByBlockHeightE400 is a convenience function that returns InvalidPagination wrapped in GetXRPRippleBlockDetailsByBlockHeightE400.
InvalidPaginationAsGetXRPRippleTransactionDetailsByTransactionIDE400 is a convenience function that returns InvalidPagination wrapped in GetXRPRippleTransactionDetailsByTransactionIDE400.
InvalidPaginationAsGetZilliqaAddressDetailsE400 is a convenience function that returns InvalidPagination wrapped in GetZilliqaAddressDetailsE400.
InvalidPaginationAsGetZilliqaBlockDetailsByBlockHashE400 is a convenience function that returns InvalidPagination wrapped in GetZilliqaBlockDetailsByBlockHashE400.
InvalidPaginationAsGetZilliqaBlockDetailsByBlockHeightE400 is a convenience function that returns InvalidPagination wrapped in GetZilliqaBlockDetailsByBlockHeightE400.
InvalidPaginationAsGetZilliqaTransactionDetailsByTransactionIDE400 is a convenience function that returns InvalidPagination wrapped in GetZilliqaTransactionDetailsByTransactionIDE400.
InvalidPaginationAsListAllAssetsByWalletIDE400 is a convenience function that returns InvalidPagination wrapped in ListAllAssetsByWalletIDE400.
InvalidPaginationAsListAllAssetsFromAllWalletsE400 is a convenience function that returns InvalidPagination wrapped in ListAllAssetsFromAllWalletsE400.
InvalidPaginationAsListBlockchainEventsSubscriptionsE400 is a convenience function that returns InvalidPagination wrapped in ListBlockchainEventsSubscriptionsE400.
InvalidPaginationAsListCoinsForwardingAutomationsE400 is a convenience function that returns InvalidPagination wrapped in ListCoinsForwardingAutomationsE400.
InvalidPaginationAsListConfirmedTokensTransfersByAddressAndTimeRangeE400 is a convenience function that returns InvalidPagination wrapped in ListConfirmedTokensTransfersByAddressAndTimeRangeE400.
InvalidPaginationAsListConfirmedTokensTransfersByAddressE400 is a convenience function that returns InvalidPagination wrapped in ListConfirmedTokensTransfersByAddressE400.
InvalidPaginationAsListConfirmedTransactionsByAddressAndTimeRangeE400 is a convenience function that returns InvalidPagination wrapped in ListConfirmedTransactionsByAddressAndTimeRangeE400.
InvalidPaginationAsListConfirmedTransactionsByAddressE400 is a convenience function that returns InvalidPagination wrapped in ListConfirmedTransactionsByAddressE400.
InvalidPaginationAsListDepositAddressesE400 is a convenience function that returns InvalidPagination wrapped in ListDepositAddressesE400.
InvalidPaginationAsListHDWalletXPubYPubZPubTransactionsE400 is a convenience function that returns InvalidPagination wrapped in ListHDWalletXPubYPubZPubTransactionsE400.
InvalidPaginationAsListHDWalletXPubYPubZPubUTXOsE400 is a convenience function that returns InvalidPagination wrapped in ListHDWalletXPubYPubZPubUTXOsE400.
InvalidPaginationAsListInternalTransactionDetailsByTransactionHashE400 is a convenience function that returns InvalidPagination wrapped in ListInternalTransactionDetailsByTransactionHashE400.
InvalidPaginationAsListInternalTransactionsByAddressAndTimeRangeE400 is a convenience function that returns InvalidPagination wrapped in ListInternalTransactionsByAddressAndTimeRangeE400.
InvalidPaginationAsListInternalTransactionsByAddressE400 is a convenience function that returns InvalidPagination wrapped in ListInternalTransactionsByAddressE400.
InvalidPaginationAsListLatestMinedBlocksE400 is a convenience function that returns InvalidPagination wrapped in ListLatestMinedBlocksE400.
InvalidPaginationAsListSupportedAssetsE400 is a convenience function that returns InvalidPagination wrapped in ListSupportedAssetsE400.
InvalidPaginationAsListSupportedTokensE400 is a convenience function that returns InvalidPagination wrapped in ListSupportedTokensE400.
InvalidPaginationAsListSyncedAddressesE400 is a convenience function that returns InvalidPagination wrapped in ListSyncedAddressesE400.
InvalidPaginationAsListTokensByAddressE400 is a convenience function that returns InvalidPagination wrapped in ListTokensByAddressE400.
InvalidPaginationAsListTokensForwardingAutomationsE400 is a convenience function that returns InvalidPagination wrapped in ListTokensForwardingAutomationsE400.
InvalidPaginationAsListTokensTransfersByTransactionHashE400 is a convenience function that returns InvalidPagination wrapped in ListTokensTransfersByTransactionHashE400.
InvalidPaginationAsListTransactionsByBlockHashE400 is a convenience function that returns InvalidPagination wrapped in ListTransactionsByBlockHashE400.
InvalidPaginationAsListTransactionsByBlockHeightE400 is a convenience function that returns InvalidPagination wrapped in ListTransactionsByBlockHeightE400.
InvalidPaginationAsListUnconfirmedTokensTransfersByAddressE400 is a convenience function that returns InvalidPagination wrapped in ListUnconfirmedTokensTransfersByAddressE400.
InvalidPaginationAsListUnconfirmedTransactionsByAddressE400 is a convenience function that returns InvalidPagination wrapped in ListUnconfirmedTransactionsByAddressE400.
InvalidPaginationAsListUnspentTransactionOutputsByAddressE400 is a convenience function that returns InvalidPagination wrapped in ListUnspentTransactionOutputsByAddressE400.
InvalidPaginationAsListWalletTransactionsE400 is a convenience function that returns InvalidPagination wrapped in ListWalletTransactionsE400.
InvalidPaginationAsListXRPRippleTransactionsByAddressAndTimeRangeE400 is a convenience function that returns InvalidPagination wrapped in ListXRPRippleTransactionsByAddressAndTimeRangeE400.
InvalidPaginationAsListXRPRippleTransactionsByAddressE400 is a convenience function that returns InvalidPagination wrapped in ListXRPRippleTransactionsByAddressE400.
InvalidPaginationAsListXRPRippleTransactionsByBlockHashE400 is a convenience function that returns InvalidPagination wrapped in ListXRPRippleTransactionsByBlockHashE400.
InvalidPaginationAsListXRPRippleTransactionsByBlockHeightE400 is a convenience function that returns InvalidPagination wrapped in ListXRPRippleTransactionsByBlockHeightE400.
InvalidPaginationAsListZilliqaTransactionsByAddressE400 is a convenience function that returns InvalidPagination wrapped in ListZilliqaTransactionsByAddressE400.
InvalidPaginationAsListZilliqaTransactionsByBlockHashE400 is a convenience function that returns InvalidPagination wrapped in ListZilliqaTransactionsByBlockHashE400.
InvalidPaginationAsListZilliqaTransactionsByBlockHeightE400 is a convenience function that returns InvalidPagination wrapped in ListZilliqaTransactionsByBlockHeightE400.
InvalidPaginationAsMinedTransactionE400 is a convenience function that returns InvalidPagination wrapped in MinedTransactionE400.
InvalidPaginationAsNewBlockE400 is a convenience function that returns InvalidPagination wrapped in NewBlockE400.
InvalidPaginationAsNewConfirmedCoinsTransactionsAndEachConfirmationE400 is a convenience function that returns InvalidPagination wrapped in NewConfirmedCoinsTransactionsAndEachConfirmationE400.
InvalidPaginationAsNewConfirmedCoinsTransactionsE400 is a convenience function that returns InvalidPagination wrapped in NewConfirmedCoinsTransactionsE400.
InvalidPaginationAsNewConfirmedCoinsTransactionsForSpecificAmountE400 is a convenience function that returns InvalidPagination wrapped in NewConfirmedCoinsTransactionsForSpecificAmountE400.
InvalidPaginationAsNewConfirmedInternalTransactionsAndEachConfirmationE400 is a convenience function that returns InvalidPagination wrapped in NewConfirmedInternalTransactionsAndEachConfirmationE400.
InvalidPaginationAsNewConfirmedInternalTransactionsE400 is a convenience function that returns InvalidPagination wrapped in NewConfirmedInternalTransactionsE400.
InvalidPaginationAsNewConfirmedInternalTransactionsForSpecificAmountE400 is a convenience function that returns InvalidPagination wrapped in NewConfirmedInternalTransactionsForSpecificAmountE400.
InvalidPaginationAsNewConfirmedTokensTransactionsAndEachConfirmationE400 is a convenience function that returns InvalidPagination wrapped in NewConfirmedTokensTransactionsAndEachConfirmationE400.
InvalidPaginationAsNewConfirmedTokensTransactionsE400 is a convenience function that returns InvalidPagination wrapped in NewConfirmedTokensTransactionsE400.
InvalidPaginationAsNewConfirmedTokenTransactionsForSpecificAmountE400 is a convenience function that returns InvalidPagination wrapped in NewConfirmedTokenTransactionsForSpecificAmountE400.
InvalidPaginationAsNewUnconfirmedCoinsTransactionsE400 is a convenience function that returns InvalidPagination wrapped in NewUnconfirmedCoinsTransactionsE400.
InvalidPaginationAsNewUnconfirmedTokensTransactionsE400 is a convenience function that returns InvalidPagination wrapped in NewUnconfirmedTokensTransactionsE400.
InvalidPaginationAsPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE400 is a convenience function that returns InvalidPagination wrapped in PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE400.
InvalidPaginationAsPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE400 is a convenience function that returns InvalidPagination wrapped in PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE400.
InvalidPaginationAsSyncHDWalletXPubYPubZPubE400 is a convenience function that returns InvalidPagination wrapped in SyncHDWalletXPubYPubZPubE400.
InvalidPaginationAsSyncNewHDWalletXPubYPubZPubE400 is a convenience function that returns InvalidPagination wrapped in SyncNewHDWalletXPubYPubZPubE400.
InvalidPaginationAsValidateAddressE400 is a convenience function that returns InvalidPagination wrapped in ValidateAddressE400.
InvalidRequestBodyStructureAsGetExchangeRateByAssetsIDsE422 is a convenience function that returns InvalidRequestBodyStructure wrapped in GetExchangeRateByAssetsIDsE422.
InvalidRequestBodyStructureAsGetExchangeRateByAssetSymbolsE422 is a convenience function that returns InvalidRequestBodyStructure wrapped in GetExchangeRateByAssetSymbolsE422.
InvalidRequestBodyStructureAsGetHDWalletXPubYPubZPubAssetsE422 is a convenience function that returns InvalidRequestBodyStructure wrapped in GetHDWalletXPubYPubZPubAssetsE422.
InvalidRequestBodyStructureAsGetHDWalletXPubYPubZPubDetailsE422 is a convenience function that returns InvalidRequestBodyStructure wrapped in GetHDWalletXPubYPubZPubDetailsE422.
InvalidRequestBodyStructureAsListHDWalletXPubYPubZPubTransactionsE422 is a convenience function that returns InvalidRequestBodyStructure wrapped in ListHDWalletXPubYPubZPubTransactionsE422.
InvalidRequestBodyStructureAsListHDWalletXPubYPubZPubUTXOsE422 is a convenience function that returns InvalidRequestBodyStructure wrapped in ListHDWalletXPubYPubZPubUTXOsE422.
InvalidRequestBodyStructureAsSyncHDWalletXPubYPubZPubE422 is a convenience function that returns InvalidRequestBodyStructure wrapped in SyncHDWalletXPubYPubZPubE422.
InvalidRequestBodyStructureAsSyncNewHDWalletXPubYPubZPubE422 is a convenience function that returns InvalidRequestBodyStructure wrapped in SyncNewHDWalletXPubYPubZPubE422.
InvalidTransactionHexAsDecodeRawTransactionHexE400 is a convenience function that returns InvalidTransactionHex wrapped in DecodeRawTransactionHexE400.
InvalidXpubAsDeriveAndSyncNewChangeAddressesE400 is a convenience function that returns InvalidXpub wrapped in DeriveAndSyncNewChangeAddressesE400.
InvalidXpubAsDeriveAndSyncNewReceivingAddressesE400 is a convenience function that returns InvalidXpub wrapped in DeriveAndSyncNewReceivingAddressesE400.
InvalidXpubAsGetHDWalletXPubYPubZPubAssetsE400 is a convenience function that returns InvalidXpub wrapped in GetHDWalletXPubYPubZPubAssetsE400.
InvalidXpubAsGetHDWalletXPubYPubZPubDetailsE400 is a convenience function that returns InvalidXpub wrapped in GetHDWalletXPubYPubZPubDetailsE400.
InvalidXpubAsListHDWalletXPubYPubZPubTransactionsE400 is a convenience function that returns InvalidXpub wrapped in ListHDWalletXPubYPubZPubTransactionsE400.
InvalidXpubAsListHDWalletXPubYPubZPubUTXOsE400 is a convenience function that returns InvalidXpub wrapped in ListHDWalletXPubYPubZPubUTXOsE400.
InvalidXpubAsListSyncedAddressesE400 is a convenience function that returns InvalidXpub wrapped in ListSyncedAddressesE400.
InvalidXpubAsSyncHDWalletXPubYPubZPubE400 is a convenience function that returns InvalidXpub wrapped in SyncHDWalletXPubYPubZPubE400.
InvalidXpubAsSyncNewHDWalletXPubYPubZPubE400 is a convenience function that returns InvalidXpub wrapped in SyncNewHDWalletXPubYPubZPubE400.
LimitGreaterThanAllowedAsActivateBlockchainEventSubscriptionE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ActivateBlockchainEventSubscriptionE400.
LimitGreaterThanAllowedAsAddTokensToExistingFromAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in AddTokensToExistingFromAddressE400.
LimitGreaterThanAllowedAsBlockHeightReachedE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in BlockHeightReachedE400.
LimitGreaterThanAllowedAsBroadcastLocallySignedTransactionE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in BroadcastLocallySignedTransactionE400.
LimitGreaterThanAllowedAsConvertBitcoinCashAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ConvertBitcoinCashAddressE400.
LimitGreaterThanAllowedAsCreateAutomaticCoinsForwardingE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in CreateAutomaticCoinsForwardingE400.
LimitGreaterThanAllowedAsCreateAutomaticTokensForwardingE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in CreateAutomaticTokensForwardingE400.
LimitGreaterThanAllowedAsCreateCoinsTransactionFromAddressForWholeAmountE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in CreateCoinsTransactionFromAddressForWholeAmountE400.
LimitGreaterThanAllowedAsCreateCoinsTransactionRequestFromAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in CreateCoinsTransactionRequestFromAddressE400.
LimitGreaterThanAllowedAsCreateCoinsTransactionRequestFromWalletE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in CreateCoinsTransactionRequestFromWalletE400.
LimitGreaterThanAllowedAsCreateFungibleTokensTransactionRequestFromAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in CreateFungibleTokensTransactionRequestFromAddressE400.
LimitGreaterThanAllowedAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE400.
LimitGreaterThanAllowedAsCreateSingleTransactionRequestFromAddressWithoutFeePriorityE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in CreateSingleTransactionRequestFromAddressWithoutFeePriorityE400.
LimitGreaterThanAllowedAsDecodeRawTransactionHexE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in DecodeRawTransactionHexE400.
LimitGreaterThanAllowedAsDecodeXAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in DecodeXAddressE400.
LimitGreaterThanAllowedAsDeleteAutomaticCoinsForwardingE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in DeleteAutomaticCoinsForwardingE400.
LimitGreaterThanAllowedAsDeleteAutomaticTokensForwardingE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in DeleteAutomaticTokensForwardingE400.
LimitGreaterThanAllowedAsDeleteBlockchainEventSubscriptionE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in DeleteBlockchainEventSubscriptionE400.
LimitGreaterThanAllowedAsDeriveAndSyncNewChangeAddressesE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in DeriveAndSyncNewChangeAddressesE400.
LimitGreaterThanAllowedAsDeriveAndSyncNewReceivingAddressesE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in DeriveAndSyncNewReceivingAddressesE400.
LimitGreaterThanAllowedAsDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE400.
LimitGreaterThanAllowedAsEncodeXAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in EncodeXAddressE400.
LimitGreaterThanAllowedAsEstimateGasLimitE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in EstimateGasLimitE400.
LimitGreaterThanAllowedAsEstimateTokenGasLimitE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in EstimateTokenGasLimitE400.
LimitGreaterThanAllowedAsEstimateTransactionSmartFeeE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in EstimateTransactionSmartFeeE400.
LimitGreaterThanAllowedAsGenerateDepositAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GenerateDepositAddressE400.
LimitGreaterThanAllowedAsGetAddressBalanceE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetAddressBalanceE400.
LimitGreaterThanAllowedAsGetAddressDetailsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetAddressDetailsE400.
LimitGreaterThanAllowedAsGetAddressDetailsFromCallbackE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetAddressDetailsFromCallbackE400.
LimitGreaterThanAllowedAsGetAssetDetailsByAssetIDE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetAssetDetailsByAssetIDE400.
LimitGreaterThanAllowedAsGetAssetDetailsByAssetSymbolE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetAssetDetailsByAssetSymbolE400.
LimitGreaterThanAllowedAsGetBlockchainEventSubscriptionDetailsByReferenceIDE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetBlockchainEventSubscriptionDetailsByReferenceIDE400.
LimitGreaterThanAllowedAsGetBlockDetailsByBlockHashE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetBlockDetailsByBlockHashE400.
LimitGreaterThanAllowedAsGetBlockDetailsByBlockHashFromCallbackE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetBlockDetailsByBlockHashFromCallbackE400.
LimitGreaterThanAllowedAsGetBlockDetailsByBlockHeightE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetBlockDetailsByBlockHeightE400.
LimitGreaterThanAllowedAsGetBlockDetailsByBlockHeightFromCallbackE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetBlockDetailsByBlockHeightFromCallbackE400.
LimitGreaterThanAllowedAsGetEIP1559FeeRecommendationsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetEIP1559FeeRecommendationsE400.
LimitGreaterThanAllowedAsGetExchangeRateByAssetsIDsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetExchangeRateByAssetsIDsE400.
LimitGreaterThanAllowedAsGetExchangeRateByAssetSymbolsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetExchangeRateByAssetSymbolsE400.
LimitGreaterThanAllowedAsGetFeeAddressDetailsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetFeeAddressDetailsE400.
LimitGreaterThanAllowedAsGetFeeRecommendationsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetFeeRecommendationsE400.
LimitGreaterThanAllowedAsGetHDWalletXPubYPubZPubAssetsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetHDWalletXPubYPubZPubAssetsE400.
LimitGreaterThanAllowedAsGetHDWalletXPubYPubZPubDetailsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetHDWalletXPubYPubZPubDetailsE400.
LimitGreaterThanAllowedAsGetInternalTransactionByTransactionHashAndOperationIdE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetInternalTransactionByTransactionHashAndOperationIdE400.
LimitGreaterThanAllowedAsGetLastMinedBlockE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetLastMinedBlockE400.
LimitGreaterThanAllowedAsGetLatestMinedXRPRippleBlockE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetLatestMinedXRPRippleBlockE400.
LimitGreaterThanAllowedAsGetLatestMinedZilliqaBlockE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetLatestMinedZilliqaBlockE400.
LimitGreaterThanAllowedAsGetNextAvailableNonceE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetNextAvailableNonceE400.
LimitGreaterThanAllowedAsGetRawTransactionDataE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetRawTransactionDataE400.
LimitGreaterThanAllowedAsGetTokenDetailsByContractAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetTokenDetailsByContractAddressE400.
LimitGreaterThanAllowedAsGetTransactionDetailsByTransactionIDE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetTransactionDetailsByTransactionIDE400.
LimitGreaterThanAllowedAsGetTransactionDetailsByTransactionIDFromCallbackE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetTransactionDetailsByTransactionIDFromCallbackE400.
LimitGreaterThanAllowedAsGetTransactionRequestDetailsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetTransactionRequestDetailsE400.
LimitGreaterThanAllowedAsGetWalletAssetDetailsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetWalletAssetDetailsE400.
LimitGreaterThanAllowedAsGetWalletTransactionDetailsByTransactionIDE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetWalletTransactionDetailsByTransactionIDE400.
LimitGreaterThanAllowedAsGetXRPRippleAddressDetailsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetXRPRippleAddressDetailsE400.
LimitGreaterThanAllowedAsGetXRPRippleBlockDetailsByBlockHashE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetXRPRippleBlockDetailsByBlockHashE400.
LimitGreaterThanAllowedAsGetXRPRippleBlockDetailsByBlockHeightE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetXRPRippleBlockDetailsByBlockHeightE400.
LimitGreaterThanAllowedAsGetXRPRippleTransactionDetailsByTransactionIDE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetXRPRippleTransactionDetailsByTransactionIDE400.
LimitGreaterThanAllowedAsGetZilliqaAddressDetailsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetZilliqaAddressDetailsE400.
LimitGreaterThanAllowedAsGetZilliqaBlockDetailsByBlockHashE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetZilliqaBlockDetailsByBlockHashE400.
LimitGreaterThanAllowedAsGetZilliqaBlockDetailsByBlockHeightE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetZilliqaBlockDetailsByBlockHeightE400.
LimitGreaterThanAllowedAsGetZilliqaTransactionDetailsByTransactionIDE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in GetZilliqaTransactionDetailsByTransactionIDE400.
LimitGreaterThanAllowedAsListAllAssetsByWalletIDE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListAllAssetsByWalletIDE400.
LimitGreaterThanAllowedAsListAllAssetsFromAllWalletsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListAllAssetsFromAllWalletsE400.
LimitGreaterThanAllowedAsListBlockchainEventsSubscriptionsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListBlockchainEventsSubscriptionsE400.
LimitGreaterThanAllowedAsListCoinsForwardingAutomationsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListCoinsForwardingAutomationsE400.
LimitGreaterThanAllowedAsListConfirmedTokensTransfersByAddressAndTimeRangeE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListConfirmedTokensTransfersByAddressAndTimeRangeE400.
LimitGreaterThanAllowedAsListConfirmedTokensTransfersByAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListConfirmedTokensTransfersByAddressE400.
LimitGreaterThanAllowedAsListConfirmedTransactionsByAddressAndTimeRangeE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListConfirmedTransactionsByAddressAndTimeRangeE400.
LimitGreaterThanAllowedAsListConfirmedTransactionsByAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListConfirmedTransactionsByAddressE400.
LimitGreaterThanAllowedAsListDepositAddressesE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListDepositAddressesE400.
LimitGreaterThanAllowedAsListHDWalletXPubYPubZPubTransactionsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListHDWalletXPubYPubZPubTransactionsE400.
LimitGreaterThanAllowedAsListHDWalletXPubYPubZPubUTXOsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListHDWalletXPubYPubZPubUTXOsE400.
LimitGreaterThanAllowedAsListInternalTransactionDetailsByTransactionHashE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListInternalTransactionDetailsByTransactionHashE400.
LimitGreaterThanAllowedAsListInternalTransactionsByAddressAndTimeRangeE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListInternalTransactionsByAddressAndTimeRangeE400.
LimitGreaterThanAllowedAsListInternalTransactionsByAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListInternalTransactionsByAddressE400.
LimitGreaterThanAllowedAsListLatestMinedBlocksE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListLatestMinedBlocksE400.
LimitGreaterThanAllowedAsListSupportedAssetsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListSupportedAssetsE400.
LimitGreaterThanAllowedAsListSupportedTokensE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListSupportedTokensE400.
LimitGreaterThanAllowedAsListSyncedAddressesE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListSyncedAddressesE400.
LimitGreaterThanAllowedAsListTokensByAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListTokensByAddressE400.
LimitGreaterThanAllowedAsListTokensForwardingAutomationsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListTokensForwardingAutomationsE400.
LimitGreaterThanAllowedAsListTokensTransfersByTransactionHashE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListTokensTransfersByTransactionHashE400.
LimitGreaterThanAllowedAsListTransactionsByBlockHashE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListTransactionsByBlockHashE400.
LimitGreaterThanAllowedAsListTransactionsByBlockHeightE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListTransactionsByBlockHeightE400.
LimitGreaterThanAllowedAsListUnconfirmedTokensTransfersByAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListUnconfirmedTokensTransfersByAddressE400.
LimitGreaterThanAllowedAsListUnconfirmedTransactionsByAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListUnconfirmedTransactionsByAddressE400.
LimitGreaterThanAllowedAsListUnspentTransactionOutputsByAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListUnspentTransactionOutputsByAddressE400.
LimitGreaterThanAllowedAsListWalletTransactionsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListWalletTransactionsE400.
LimitGreaterThanAllowedAsListXRPRippleTransactionsByAddressAndTimeRangeE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListXRPRippleTransactionsByAddressAndTimeRangeE400.
LimitGreaterThanAllowedAsListXRPRippleTransactionsByAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListXRPRippleTransactionsByAddressE400.
LimitGreaterThanAllowedAsListXRPRippleTransactionsByBlockHashE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListXRPRippleTransactionsByBlockHashE400.
LimitGreaterThanAllowedAsListXRPRippleTransactionsByBlockHeightE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListXRPRippleTransactionsByBlockHeightE400.
LimitGreaterThanAllowedAsListZilliqaTransactionsByAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListZilliqaTransactionsByAddressE400.
LimitGreaterThanAllowedAsListZilliqaTransactionsByBlockHashE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListZilliqaTransactionsByBlockHashE400.
LimitGreaterThanAllowedAsListZilliqaTransactionsByBlockHeightE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ListZilliqaTransactionsByBlockHeightE400.
LimitGreaterThanAllowedAsMinedTransactionE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in MinedTransactionE400.
LimitGreaterThanAllowedAsNewBlockE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in NewBlockE400.
LimitGreaterThanAllowedAsNewConfirmedCoinsTransactionsAndEachConfirmationE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in NewConfirmedCoinsTransactionsAndEachConfirmationE400.
LimitGreaterThanAllowedAsNewConfirmedCoinsTransactionsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in NewConfirmedCoinsTransactionsE400.
LimitGreaterThanAllowedAsNewConfirmedCoinsTransactionsForSpecificAmountE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in NewConfirmedCoinsTransactionsForSpecificAmountE400.
LimitGreaterThanAllowedAsNewConfirmedInternalTransactionsAndEachConfirmationE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in NewConfirmedInternalTransactionsAndEachConfirmationE400.
LimitGreaterThanAllowedAsNewConfirmedInternalTransactionsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in NewConfirmedInternalTransactionsE400.
LimitGreaterThanAllowedAsNewConfirmedInternalTransactionsForSpecificAmountE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in NewConfirmedInternalTransactionsForSpecificAmountE400.
LimitGreaterThanAllowedAsNewConfirmedTokensTransactionsAndEachConfirmationE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in NewConfirmedTokensTransactionsAndEachConfirmationE400.
LimitGreaterThanAllowedAsNewConfirmedTokensTransactionsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in NewConfirmedTokensTransactionsE400.
LimitGreaterThanAllowedAsNewConfirmedTokenTransactionsForSpecificAmountE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in NewConfirmedTokenTransactionsForSpecificAmountE400.
LimitGreaterThanAllowedAsNewUnconfirmedCoinsTransactionsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in NewUnconfirmedCoinsTransactionsE400.
LimitGreaterThanAllowedAsNewUnconfirmedTokensTransactionsE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in NewUnconfirmedTokensTransactionsE400.
LimitGreaterThanAllowedAsPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE400.
LimitGreaterThanAllowedAsPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE400.
LimitGreaterThanAllowedAsSyncHDWalletXPubYPubZPubE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in SyncHDWalletXPubYPubZPubE400.
LimitGreaterThanAllowedAsSyncNewHDWalletXPubYPubZPubE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in SyncNewHDWalletXPubYPubZPubE400.
LimitGreaterThanAllowedAsValidateAddressE400 is a convenience function that returns LimitGreaterThanAllowed wrapped in ValidateAddressE400.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSBAsListConfirmedTransactionsByAddressAndTimeRangeRIBS is a convenience function that returns ListConfirmedTransactionsByAddressAndTimeRangeRIBSB wrapped in ListConfirmedTransactionsByAddressAndTimeRangeRIBS.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSBCAsListConfirmedTransactionsByAddressAndTimeRangeRIBS is a convenience function that returns ListConfirmedTransactionsByAddressAndTimeRangeRIBSBC wrapped in ListConfirmedTransactionsByAddressAndTimeRangeRIBS.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSBSCAsListConfirmedTransactionsByAddressAndTimeRangeRIBS is a convenience function that returns ListConfirmedTransactionsByAddressAndTimeRangeRIBSBSC wrapped in ListConfirmedTransactionsByAddressAndTimeRangeRIBS.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSD2AsListConfirmedTransactionsByAddressAndTimeRangeRIBS is a convenience function that returns ListConfirmedTransactionsByAddressAndTimeRangeRIBSD2 wrapped in ListConfirmedTransactionsByAddressAndTimeRangeRIBS.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSDAsListConfirmedTransactionsByAddressAndTimeRangeRIBS is a convenience function that returns ListConfirmedTransactionsByAddressAndTimeRangeRIBSD wrapped in ListConfirmedTransactionsByAddressAndTimeRangeRIBS.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSEAsListConfirmedTransactionsByAddressAndTimeRangeRIBS is a convenience function that returns ListConfirmedTransactionsByAddressAndTimeRangeRIBSE wrapped in ListConfirmedTransactionsByAddressAndTimeRangeRIBS.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSECAsListConfirmedTransactionsByAddressAndTimeRangeRIBS is a convenience function that returns ListConfirmedTransactionsByAddressAndTimeRangeRIBSEC wrapped in ListConfirmedTransactionsByAddressAndTimeRangeRIBS.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSLAsListConfirmedTransactionsByAddressAndTimeRangeRIBS is a convenience function that returns ListConfirmedTransactionsByAddressAndTimeRangeRIBSL wrapped in ListConfirmedTransactionsByAddressAndTimeRangeRIBS.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSZAsListConfirmedTransactionsByAddressAndTimeRangeRIBS is a convenience function that returns ListConfirmedTransactionsByAddressAndTimeRangeRIBSZ wrapped in ListConfirmedTransactionsByAddressAndTimeRangeRIBS.
ListConfirmedTransactionsByAddressRIBSBAsListConfirmedTransactionsByAddressRIBS is a convenience function that returns ListConfirmedTransactionsByAddressRIBSB wrapped in ListConfirmedTransactionsByAddressRIBS.
ListConfirmedTransactionsByAddressRIBSBCAsListConfirmedTransactionsByAddressRIBS is a convenience function that returns ListConfirmedTransactionsByAddressRIBSBC wrapped in ListConfirmedTransactionsByAddressRIBS.
ListConfirmedTransactionsByAddressRIBSBSCAsListConfirmedTransactionsByAddressRIBS is a convenience function that returns ListConfirmedTransactionsByAddressRIBSBSC wrapped in ListConfirmedTransactionsByAddressRIBS.
ListConfirmedTransactionsByAddressRIBSD2AsListConfirmedTransactionsByAddressRIBS is a convenience function that returns ListConfirmedTransactionsByAddressRIBSD2 wrapped in ListConfirmedTransactionsByAddressRIBS.
ListConfirmedTransactionsByAddressRIBSDAsListConfirmedTransactionsByAddressRIBS is a convenience function that returns ListConfirmedTransactionsByAddressRIBSD wrapped in ListConfirmedTransactionsByAddressRIBS.
ListConfirmedTransactionsByAddressRIBSEAsListConfirmedTransactionsByAddressRIBS is a convenience function that returns ListConfirmedTransactionsByAddressRIBSE wrapped in ListConfirmedTransactionsByAddressRIBS.
ListConfirmedTransactionsByAddressRIBSECAsListConfirmedTransactionsByAddressRIBS is a convenience function that returns ListConfirmedTransactionsByAddressRIBSEC wrapped in ListConfirmedTransactionsByAddressRIBS.
ListConfirmedTransactionsByAddressRIBSLAsListConfirmedTransactionsByAddressRIBS is a convenience function that returns ListConfirmedTransactionsByAddressRIBSL wrapped in ListConfirmedTransactionsByAddressRIBS.
ListConfirmedTransactionsByAddressRIBSZAsListConfirmedTransactionsByAddressRIBS is a convenience function that returns ListConfirmedTransactionsByAddressRIBSZ wrapped in ListConfirmedTransactionsByAddressRIBS.
ListLatestMinedBlocksRIBSBAsListLatestMinedBlocksRIBS is a convenience function that returns ListLatestMinedBlocksRIBSB wrapped in ListLatestMinedBlocksRIBS.
ListLatestMinedBlocksRIBSBCAsListLatestMinedBlocksRIBS is a convenience function that returns ListLatestMinedBlocksRIBSBC wrapped in ListLatestMinedBlocksRIBS.
ListLatestMinedBlocksRIBSBSCAsListLatestMinedBlocksRIBS is a convenience function that returns ListLatestMinedBlocksRIBSBSC wrapped in ListLatestMinedBlocksRIBS.
ListLatestMinedBlocksRIBSD2AsListLatestMinedBlocksRIBS is a convenience function that returns ListLatestMinedBlocksRIBSD2 wrapped in ListLatestMinedBlocksRIBS.
ListLatestMinedBlocksRIBSDAsListLatestMinedBlocksRIBS is a convenience function that returns ListLatestMinedBlocksRIBSD wrapped in ListLatestMinedBlocksRIBS.
ListLatestMinedBlocksRIBSECAsListLatestMinedBlocksRIBS is a convenience function that returns ListLatestMinedBlocksRIBSEC wrapped in ListLatestMinedBlocksRIBS.
ListLatestMinedBlocksRIBSLAsListLatestMinedBlocksRIBS is a convenience function that returns ListLatestMinedBlocksRIBSL wrapped in ListLatestMinedBlocksRIBS.
ListLatestMinedBlocksRIBSXAsListLatestMinedBlocksRIBS is a convenience function that returns ListLatestMinedBlocksRIBSX wrapped in ListLatestMinedBlocksRIBS.
ListLatestMinedBlocksRIBSZ2AsListLatestMinedBlocksRIBS is a convenience function that returns ListLatestMinedBlocksRIBSZ2 wrapped in ListLatestMinedBlocksRIBS.
ListLatestMinedBlocksRIBSZAsListLatestMinedBlocksRIBS is a convenience function that returns ListLatestMinedBlocksRIBSZ wrapped in ListLatestMinedBlocksRIBS.
ListTokensForwardingAutomationsRITSBOTAsListTokensForwardingAutomationsRITS is a convenience function that returns ListTokensForwardingAutomationsRITSBOT wrapped in ListTokensForwardingAutomationsRITS.
ListTokensForwardingAutomationsRITSETAsListTokensForwardingAutomationsRITS is a convenience function that returns ListTokensForwardingAutomationsRITSET wrapped in ListTokensForwardingAutomationsRITS.
ListTransactionsByBlockHashRIBSBAsListTransactionsByBlockHashRIBS is a convenience function that returns ListTransactionsByBlockHashRIBSB wrapped in ListTransactionsByBlockHashRIBS.
ListTransactionsByBlockHashRIBSBCAsListTransactionsByBlockHashRIBS is a convenience function that returns ListTransactionsByBlockHashRIBSBC wrapped in ListTransactionsByBlockHashRIBS.
ListTransactionsByBlockHashRIBSBSCAsListTransactionsByBlockHashRIBS is a convenience function that returns ListTransactionsByBlockHashRIBSBSC wrapped in ListTransactionsByBlockHashRIBS.
ListTransactionsByBlockHashRIBSD2AsListTransactionsByBlockHashRIBS is a convenience function that returns ListTransactionsByBlockHashRIBSD2 wrapped in ListTransactionsByBlockHashRIBS.
ListTransactionsByBlockHashRIBSDAsListTransactionsByBlockHashRIBS is a convenience function that returns ListTransactionsByBlockHashRIBSD wrapped in ListTransactionsByBlockHashRIBS.
ListTransactionsByBlockHashRIBSEAsListTransactionsByBlockHashRIBS is a convenience function that returns ListTransactionsByBlockHashRIBSE wrapped in ListTransactionsByBlockHashRIBS.
ListTransactionsByBlockHashRIBSECAsListTransactionsByBlockHashRIBS is a convenience function that returns ListTransactionsByBlockHashRIBSEC wrapped in ListTransactionsByBlockHashRIBS.
ListTransactionsByBlockHashRIBSLAsListTransactionsByBlockHashRIBS is a convenience function that returns ListTransactionsByBlockHashRIBSL wrapped in ListTransactionsByBlockHashRIBS.
ListTransactionsByBlockHashRIBSZAsListTransactionsByBlockHashRIBS is a convenience function that returns ListTransactionsByBlockHashRIBSZ wrapped in ListTransactionsByBlockHashRIBS.
ListTransactionsByBlockHeightRIBSBAsListTransactionsByBlockHeightRIBS is a convenience function that returns ListTransactionsByBlockHeightRIBSB wrapped in ListTransactionsByBlockHeightRIBS.
ListTransactionsByBlockHeightRIBSBCAsListTransactionsByBlockHeightRIBS is a convenience function that returns ListTransactionsByBlockHeightRIBSBC wrapped in ListTransactionsByBlockHeightRIBS.
ListTransactionsByBlockHeightRIBSBSCAsListTransactionsByBlockHeightRIBS is a convenience function that returns ListTransactionsByBlockHeightRIBSBSC wrapped in ListTransactionsByBlockHeightRIBS.
ListTransactionsByBlockHeightRIBSD2AsListTransactionsByBlockHeightRIBS is a convenience function that returns ListTransactionsByBlockHeightRIBSD2 wrapped in ListTransactionsByBlockHeightRIBS.
ListTransactionsByBlockHeightRIBSDAsListTransactionsByBlockHeightRIBS is a convenience function that returns ListTransactionsByBlockHeightRIBSD wrapped in ListTransactionsByBlockHeightRIBS.
ListTransactionsByBlockHeightRIBSEAsListTransactionsByBlockHeightRIBS is a convenience function that returns ListTransactionsByBlockHeightRIBSE wrapped in ListTransactionsByBlockHeightRIBS.
ListTransactionsByBlockHeightRIBSECAsListTransactionsByBlockHeightRIBS is a convenience function that returns ListTransactionsByBlockHeightRIBSEC wrapped in ListTransactionsByBlockHeightRIBS.
ListTransactionsByBlockHeightRIBSLAsListTransactionsByBlockHeightRIBS is a convenience function that returns ListTransactionsByBlockHeightRIBSL wrapped in ListTransactionsByBlockHeightRIBS.
ListTransactionsByBlockHeightRIBSZAsListTransactionsByBlockHeightRIBS is a convenience function that returns ListTransactionsByBlockHeightRIBSZ wrapped in ListTransactionsByBlockHeightRIBS.
ListUnconfirmedTransactionsByAddressRIBSBAsListUnconfirmedTransactionsByAddressRIBS is a convenience function that returns ListUnconfirmedTransactionsByAddressRIBSB wrapped in ListUnconfirmedTransactionsByAddressRIBS.
ListUnconfirmedTransactionsByAddressRIBSBCAsListUnconfirmedTransactionsByAddressRIBS is a convenience function that returns ListUnconfirmedTransactionsByAddressRIBSBC wrapped in ListUnconfirmedTransactionsByAddressRIBS.
ListUnconfirmedTransactionsByAddressRIBSBSCAsListUnconfirmedTransactionsByAddressRIBS is a convenience function that returns ListUnconfirmedTransactionsByAddressRIBSBSC wrapped in ListUnconfirmedTransactionsByAddressRIBS.
ListUnconfirmedTransactionsByAddressRIBSD2AsListUnconfirmedTransactionsByAddressRIBS is a convenience function that returns ListUnconfirmedTransactionsByAddressRIBSD2 wrapped in ListUnconfirmedTransactionsByAddressRIBS.
ListUnconfirmedTransactionsByAddressRIBSDAsListUnconfirmedTransactionsByAddressRIBS is a convenience function that returns ListUnconfirmedTransactionsByAddressRIBSD wrapped in ListUnconfirmedTransactionsByAddressRIBS.
ListUnconfirmedTransactionsByAddressRIBSEAsListUnconfirmedTransactionsByAddressRIBS is a convenience function that returns ListUnconfirmedTransactionsByAddressRIBSE wrapped in ListUnconfirmedTransactionsByAddressRIBS.
ListUnconfirmedTransactionsByAddressRIBSECAsListUnconfirmedTransactionsByAddressRIBS is a convenience function that returns ListUnconfirmedTransactionsByAddressRIBSEC wrapped in ListUnconfirmedTransactionsByAddressRIBS.
ListUnconfirmedTransactionsByAddressRIBSLAsListUnconfirmedTransactionsByAddressRIBS is a convenience function that returns ListUnconfirmedTransactionsByAddressRIBSL wrapped in ListUnconfirmedTransactionsByAddressRIBS.
ListUnconfirmedTransactionsByAddressRIBSZAsListUnconfirmedTransactionsByAddressRIBS is a convenience function that returns ListUnconfirmedTransactionsByAddressRIBSZ wrapped in ListUnconfirmedTransactionsByAddressRIBS.
MissingApiKeyAsActivateBlockchainEventSubscriptionE401 is a convenience function that returns MissingApiKey wrapped in ActivateBlockchainEventSubscriptionE401.
MissingApiKeyAsAddTokensToExistingFromAddressE401 is a convenience function that returns MissingApiKey wrapped in AddTokensToExistingFromAddressE401.
MissingApiKeyAsBlockHeightReachedE401 is a convenience function that returns MissingApiKey wrapped in BlockHeightReachedE401.
MissingApiKeyAsBroadcastLocallySignedTransactionE401 is a convenience function that returns MissingApiKey wrapped in BroadcastLocallySignedTransactionE401.
MissingApiKeyAsConvertBitcoinCashAddressE401 is a convenience function that returns MissingApiKey wrapped in ConvertBitcoinCashAddressE401.
MissingApiKeyAsCreateAutomaticCoinsForwardingE401 is a convenience function that returns MissingApiKey wrapped in CreateAutomaticCoinsForwardingE401.
MissingApiKeyAsCreateAutomaticTokensForwardingE401 is a convenience function that returns MissingApiKey wrapped in CreateAutomaticTokensForwardingE401.
MissingApiKeyAsCreateCoinsTransactionFromAddressForWholeAmountE401 is a convenience function that returns MissingApiKey wrapped in CreateCoinsTransactionFromAddressForWholeAmountE401.
MissingApiKeyAsCreateCoinsTransactionRequestFromAddressE401 is a convenience function that returns MissingApiKey wrapped in CreateCoinsTransactionRequestFromAddressE401.
MissingApiKeyAsCreateCoinsTransactionRequestFromWalletE401 is a convenience function that returns MissingApiKey wrapped in CreateCoinsTransactionRequestFromWalletE401.
MissingApiKeyAsCreateFungibleTokensTransactionRequestFromAddressE401 is a convenience function that returns MissingApiKey wrapped in CreateFungibleTokensTransactionRequestFromAddressE401.
MissingApiKeyAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE401 is a convenience function that returns MissingApiKey wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE401.
MissingApiKeyAsCreateSingleTransactionRequestFromAddressWithoutFeePriorityE401 is a convenience function that returns MissingApiKey wrapped in CreateSingleTransactionRequestFromAddressWithoutFeePriorityE401.
MissingApiKeyAsDecodeRawTransactionHexE401 is a convenience function that returns MissingApiKey wrapped in DecodeRawTransactionHexE401.
MissingApiKeyAsDecodeXAddressE401 is a convenience function that returns MissingApiKey wrapped in DecodeXAddressE401.
MissingApiKeyAsDeleteAutomaticCoinsForwardingE401 is a convenience function that returns MissingApiKey wrapped in DeleteAutomaticCoinsForwardingE401.
MissingApiKeyAsDeleteAutomaticTokensForwardingE401 is a convenience function that returns MissingApiKey wrapped in DeleteAutomaticTokensForwardingE401.
MissingApiKeyAsDeleteBlockchainEventSubscriptionE401 is a convenience function that returns MissingApiKey wrapped in DeleteBlockchainEventSubscriptionE401.
MissingApiKeyAsDeriveAndSyncNewChangeAddressesE401 is a convenience function that returns MissingApiKey wrapped in DeriveAndSyncNewChangeAddressesE401.
MissingApiKeyAsDeriveAndSyncNewReceivingAddressesE401 is a convenience function that returns MissingApiKey wrapped in DeriveAndSyncNewReceivingAddressesE401.
MissingApiKeyAsDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE401 is a convenience function that returns MissingApiKey wrapped in DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE401.
MissingApiKeyAsEncodeXAddressE401 is a convenience function that returns MissingApiKey wrapped in EncodeXAddressE401.
MissingApiKeyAsEstimateGasLimitE401 is a convenience function that returns MissingApiKey wrapped in EstimateGasLimitE401.
MissingApiKeyAsEstimateTokenGasLimitE401 is a convenience function that returns MissingApiKey wrapped in EstimateTokenGasLimitE401.
MissingApiKeyAsEstimateTransactionSmartFeeE401 is a convenience function that returns MissingApiKey wrapped in EstimateTransactionSmartFeeE401.
MissingApiKeyAsGenerateDepositAddressE401 is a convenience function that returns MissingApiKey wrapped in GenerateDepositAddressE401.
MissingApiKeyAsGetAddressBalanceE401 is a convenience function that returns MissingApiKey wrapped in GetAddressBalanceE401.
MissingApiKeyAsGetAddressDetailsE401 is a convenience function that returns MissingApiKey wrapped in GetAddressDetailsE401.
MissingApiKeyAsGetAddressDetailsFromCallbackE401 is a convenience function that returns MissingApiKey wrapped in GetAddressDetailsFromCallbackE401.
MissingApiKeyAsGetAssetDetailsByAssetIDE401 is a convenience function that returns MissingApiKey wrapped in GetAssetDetailsByAssetIDE401.
MissingApiKeyAsGetAssetDetailsByAssetSymbolE401 is a convenience function that returns MissingApiKey wrapped in GetAssetDetailsByAssetSymbolE401.
MissingApiKeyAsGetBlockchainEventSubscriptionDetailsByReferenceIDE401 is a convenience function that returns MissingApiKey wrapped in GetBlockchainEventSubscriptionDetailsByReferenceIDE401.
MissingApiKeyAsGetBlockDetailsByBlockHashE401 is a convenience function that returns MissingApiKey wrapped in GetBlockDetailsByBlockHashE401.
MissingApiKeyAsGetBlockDetailsByBlockHashFromCallbackE401 is a convenience function that returns MissingApiKey wrapped in GetBlockDetailsByBlockHashFromCallbackE401.
MissingApiKeyAsGetBlockDetailsByBlockHeightE401 is a convenience function that returns MissingApiKey wrapped in GetBlockDetailsByBlockHeightE401.
MissingApiKeyAsGetBlockDetailsByBlockHeightFromCallbackE401 is a convenience function that returns MissingApiKey wrapped in GetBlockDetailsByBlockHeightFromCallbackE401.
MissingApiKeyAsGetEIP1559FeeRecommendationsE401 is a convenience function that returns MissingApiKey wrapped in GetEIP1559FeeRecommendationsE401.
MissingApiKeyAsGetExchangeRateByAssetsIDsE401 is a convenience function that returns MissingApiKey wrapped in GetExchangeRateByAssetsIDsE401.
MissingApiKeyAsGetExchangeRateByAssetSymbolsE401 is a convenience function that returns MissingApiKey wrapped in GetExchangeRateByAssetSymbolsE401.
MissingApiKeyAsGetFeeAddressDetailsE401 is a convenience function that returns MissingApiKey wrapped in GetFeeAddressDetailsE401.
MissingApiKeyAsGetFeeRecommendationsE401 is a convenience function that returns MissingApiKey wrapped in GetFeeRecommendationsE401.
MissingApiKeyAsGetHDWalletXPubYPubZPubAssetsE401 is a convenience function that returns MissingApiKey wrapped in GetHDWalletXPubYPubZPubAssetsE401.
MissingApiKeyAsGetHDWalletXPubYPubZPubDetailsE401 is a convenience function that returns MissingApiKey wrapped in GetHDWalletXPubYPubZPubDetailsE401.
MissingApiKeyAsGetInternalTransactionByTransactionHashAndOperationIdE401 is a convenience function that returns MissingApiKey wrapped in GetInternalTransactionByTransactionHashAndOperationIdE401.
MissingApiKeyAsGetLastMinedBlockE401 is a convenience function that returns MissingApiKey wrapped in GetLastMinedBlockE401.
MissingApiKeyAsGetLatestMinedXRPRippleBlockE401 is a convenience function that returns MissingApiKey wrapped in GetLatestMinedXRPRippleBlockE401.
MissingApiKeyAsGetLatestMinedZilliqaBlockE401 is a convenience function that returns MissingApiKey wrapped in GetLatestMinedZilliqaBlockE401.
MissingApiKeyAsGetNextAvailableNonceE401 is a convenience function that returns MissingApiKey wrapped in GetNextAvailableNonceE401.
MissingApiKeyAsGetRawTransactionDataE401 is a convenience function that returns MissingApiKey wrapped in GetRawTransactionDataE401.
MissingApiKeyAsGetTokenDetailsByContractAddressE401 is a convenience function that returns MissingApiKey wrapped in GetTokenDetailsByContractAddressE401.
MissingApiKeyAsGetTransactionDetailsByTransactionIDE401 is a convenience function that returns MissingApiKey wrapped in GetTransactionDetailsByTransactionIDE401.
MissingApiKeyAsGetTransactionDetailsByTransactionIDFromCallbackE401 is a convenience function that returns MissingApiKey wrapped in GetTransactionDetailsByTransactionIDFromCallbackE401.
MissingApiKeyAsGetTransactionRequestDetailsE401 is a convenience function that returns MissingApiKey wrapped in GetTransactionRequestDetailsE401.
MissingApiKeyAsGetWalletAssetDetailsE401 is a convenience function that returns MissingApiKey wrapped in GetWalletAssetDetailsE401.
MissingApiKeyAsGetWalletTransactionDetailsByTransactionIDE401 is a convenience function that returns MissingApiKey wrapped in GetWalletTransactionDetailsByTransactionIDE401.
MissingApiKeyAsGetXRPRippleAddressDetailsE401 is a convenience function that returns MissingApiKey wrapped in GetXRPRippleAddressDetailsE401.
MissingApiKeyAsGetXRPRippleBlockDetailsByBlockHashE401 is a convenience function that returns MissingApiKey wrapped in GetXRPRippleBlockDetailsByBlockHashE401.
MissingApiKeyAsGetXRPRippleBlockDetailsByBlockHeightE401 is a convenience function that returns MissingApiKey wrapped in GetXRPRippleBlockDetailsByBlockHeightE401.
MissingApiKeyAsGetXRPRippleTransactionDetailsByTransactionIDE401 is a convenience function that returns MissingApiKey wrapped in GetXRPRippleTransactionDetailsByTransactionIDE401.
MissingApiKeyAsGetZilliqaAddressDetailsE401 is a convenience function that returns MissingApiKey wrapped in GetZilliqaAddressDetailsE401.
MissingApiKeyAsGetZilliqaBlockDetailsByBlockHashE401 is a convenience function that returns MissingApiKey wrapped in GetZilliqaBlockDetailsByBlockHashE401.
MissingApiKeyAsGetZilliqaBlockDetailsByBlockHeightE401 is a convenience function that returns MissingApiKey wrapped in GetZilliqaBlockDetailsByBlockHeightE401.
MissingApiKeyAsGetZilliqaTransactionDetailsByTransactionIDE401 is a convenience function that returns MissingApiKey wrapped in GetZilliqaTransactionDetailsByTransactionIDE401.
MissingApiKeyAsListAllAssetsByWalletIDE401 is a convenience function that returns MissingApiKey wrapped in ListAllAssetsByWalletIDE401.
MissingApiKeyAsListAllAssetsFromAllWalletsE401 is a convenience function that returns MissingApiKey wrapped in ListAllAssetsFromAllWalletsE401.
MissingApiKeyAsListBlockchainEventsSubscriptionsE401 is a convenience function that returns MissingApiKey wrapped in ListBlockchainEventsSubscriptionsE401.
MissingApiKeyAsListCoinsForwardingAutomationsE401 is a convenience function that returns MissingApiKey wrapped in ListCoinsForwardingAutomationsE401.
MissingApiKeyAsListConfirmedTokensTransfersByAddressAndTimeRangeE401 is a convenience function that returns MissingApiKey wrapped in ListConfirmedTokensTransfersByAddressAndTimeRangeE401.
MissingApiKeyAsListConfirmedTokensTransfersByAddressE401 is a convenience function that returns MissingApiKey wrapped in ListConfirmedTokensTransfersByAddressE401.
MissingApiKeyAsListConfirmedTransactionsByAddressAndTimeRangeE401 is a convenience function that returns MissingApiKey wrapped in ListConfirmedTransactionsByAddressAndTimeRangeE401.
MissingApiKeyAsListConfirmedTransactionsByAddressE401 is a convenience function that returns MissingApiKey wrapped in ListConfirmedTransactionsByAddressE401.
MissingApiKeyAsListDepositAddressesE401 is a convenience function that returns MissingApiKey wrapped in ListDepositAddressesE401.
MissingApiKeyAsListHDWalletXPubYPubZPubTransactionsE401 is a convenience function that returns MissingApiKey wrapped in ListHDWalletXPubYPubZPubTransactionsE401.
MissingApiKeyAsListHDWalletXPubYPubZPubUTXOsE401 is a convenience function that returns MissingApiKey wrapped in ListHDWalletXPubYPubZPubUTXOsE401.
MissingApiKeyAsListInternalTransactionDetailsByTransactionHashE401 is a convenience function that returns MissingApiKey wrapped in ListInternalTransactionDetailsByTransactionHashE401.
MissingApiKeyAsListInternalTransactionsByAddressAndTimeRangeE401 is a convenience function that returns MissingApiKey wrapped in ListInternalTransactionsByAddressAndTimeRangeE401.
MissingApiKeyAsListInternalTransactionsByAddressE401 is a convenience function that returns MissingApiKey wrapped in ListInternalTransactionsByAddressE401.
MissingApiKeyAsListLatestMinedBlocksE401 is a convenience function that returns MissingApiKey wrapped in ListLatestMinedBlocksE401.
MissingApiKeyAsListSupportedAssetsE401 is a convenience function that returns MissingApiKey wrapped in ListSupportedAssetsE401.
MissingApiKeyAsListSupportedTokensE401 is a convenience function that returns MissingApiKey wrapped in ListSupportedTokensE401.
MissingApiKeyAsListSyncedAddressesE401 is a convenience function that returns MissingApiKey wrapped in ListSyncedAddressesE401.
MissingApiKeyAsListTokensByAddressE401 is a convenience function that returns MissingApiKey wrapped in ListTokensByAddressE401.
MissingApiKeyAsListTokensForwardingAutomationsE401 is a convenience function that returns MissingApiKey wrapped in ListTokensForwardingAutomationsE401.
MissingApiKeyAsListTokensTransfersByTransactionHashE401 is a convenience function that returns MissingApiKey wrapped in ListTokensTransfersByTransactionHashE401.
MissingApiKeyAsListTransactionsByBlockHashE401 is a convenience function that returns MissingApiKey wrapped in ListTransactionsByBlockHashE401.
MissingApiKeyAsListTransactionsByBlockHeightE401 is a convenience function that returns MissingApiKey wrapped in ListTransactionsByBlockHeightE401.
MissingApiKeyAsListUnconfirmedTokensTransfersByAddressE401 is a convenience function that returns MissingApiKey wrapped in ListUnconfirmedTokensTransfersByAddressE401.
MissingApiKeyAsListUnconfirmedTransactionsByAddressE401 is a convenience function that returns MissingApiKey wrapped in ListUnconfirmedTransactionsByAddressE401.
MissingApiKeyAsListUnspentTransactionOutputsByAddressE401 is a convenience function that returns MissingApiKey wrapped in ListUnspentTransactionOutputsByAddressE401.
MissingApiKeyAsListWalletTransactionsE401 is a convenience function that returns MissingApiKey wrapped in ListWalletTransactionsE401.
MissingApiKeyAsListXRPRippleTransactionsByAddressAndTimeRangeE401 is a convenience function that returns MissingApiKey wrapped in ListXRPRippleTransactionsByAddressAndTimeRangeE401.
MissingApiKeyAsListXRPRippleTransactionsByAddressE401 is a convenience function that returns MissingApiKey wrapped in ListXRPRippleTransactionsByAddressE401.
MissingApiKeyAsListXRPRippleTransactionsByBlockHashE401 is a convenience function that returns MissingApiKey wrapped in ListXRPRippleTransactionsByBlockHashE401.
MissingApiKeyAsListXRPRippleTransactionsByBlockHeightE401 is a convenience function that returns MissingApiKey wrapped in ListXRPRippleTransactionsByBlockHeightE401.
MissingApiKeyAsListZilliqaTransactionsByAddressE401 is a convenience function that returns MissingApiKey wrapped in ListZilliqaTransactionsByAddressE401.
MissingApiKeyAsListZilliqaTransactionsByBlockHashE401 is a convenience function that returns MissingApiKey wrapped in ListZilliqaTransactionsByBlockHashE401.
MissingApiKeyAsListZilliqaTransactionsByBlockHeightE401 is a convenience function that returns MissingApiKey wrapped in ListZilliqaTransactionsByBlockHeightE401.
MissingApiKeyAsMinedTransactionE401 is a convenience function that returns MissingApiKey wrapped in MinedTransactionE401.
MissingApiKeyAsNewBlockE401 is a convenience function that returns MissingApiKey wrapped in NewBlockE401.
MissingApiKeyAsNewConfirmedCoinsTransactionsAndEachConfirmationE401 is a convenience function that returns MissingApiKey wrapped in NewConfirmedCoinsTransactionsAndEachConfirmationE401.
MissingApiKeyAsNewConfirmedCoinsTransactionsE401 is a convenience function that returns MissingApiKey wrapped in NewConfirmedCoinsTransactionsE401.
MissingApiKeyAsNewConfirmedCoinsTransactionsForSpecificAmountE401 is a convenience function that returns MissingApiKey wrapped in NewConfirmedCoinsTransactionsForSpecificAmountE401.
MissingApiKeyAsNewConfirmedInternalTransactionsAndEachConfirmationE401 is a convenience function that returns MissingApiKey wrapped in NewConfirmedInternalTransactionsAndEachConfirmationE401.
MissingApiKeyAsNewConfirmedInternalTransactionsE401 is a convenience function that returns MissingApiKey wrapped in NewConfirmedInternalTransactionsE401.
MissingApiKeyAsNewConfirmedInternalTransactionsForSpecificAmountE401 is a convenience function that returns MissingApiKey wrapped in NewConfirmedInternalTransactionsForSpecificAmountE401.
MissingApiKeyAsNewConfirmedTokensTransactionsAndEachConfirmationE401 is a convenience function that returns MissingApiKey wrapped in NewConfirmedTokensTransactionsAndEachConfirmationE401.
MissingApiKeyAsNewConfirmedTokensTransactionsE401 is a convenience function that returns MissingApiKey wrapped in NewConfirmedTokensTransactionsE401.
MissingApiKeyAsNewConfirmedTokenTransactionsForSpecificAmountE401 is a convenience function that returns MissingApiKey wrapped in NewConfirmedTokenTransactionsForSpecificAmountE401.
MissingApiKeyAsNewUnconfirmedCoinsTransactionsE401 is a convenience function that returns MissingApiKey wrapped in NewUnconfirmedCoinsTransactionsE401.
MissingApiKeyAsNewUnconfirmedTokensTransactionsE401 is a convenience function that returns MissingApiKey wrapped in NewUnconfirmedTokensTransactionsE401.
MissingApiKeyAsPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE401 is a convenience function that returns MissingApiKey wrapped in PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE401.
MissingApiKeyAsPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE401 is a convenience function that returns MissingApiKey wrapped in PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE401.
MissingApiKeyAsSyncHDWalletXPubYPubZPubE401 is a convenience function that returns MissingApiKey wrapped in SyncHDWalletXPubYPubZPubE401.
MissingApiKeyAsSyncNewHDWalletXPubYPubZPubE401 is a convenience function that returns MissingApiKey wrapped in SyncNewHDWalletXPubYPubZPubE401.
MissingApiKeyAsValidateAddressE401 is a convenience function that returns MissingApiKey wrapped in ValidateAddressE401.
NewActivateBlockchainEventSubscription400Response instantiates a new ActivateBlockchainEventSubscription400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivateBlockchainEventSubscription400ResponseWithDefaults instantiates a new ActivateBlockchainEventSubscription400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivateBlockchainEventSubscription401Response instantiates a new ActivateBlockchainEventSubscription401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivateBlockchainEventSubscription401ResponseWithDefaults instantiates a new ActivateBlockchainEventSubscription401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivateBlockchainEventSubscription403Response instantiates a new ActivateBlockchainEventSubscription403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivateBlockchainEventSubscription403ResponseWithDefaults instantiates a new ActivateBlockchainEventSubscription403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivateBlockchainEventSubscriptionR instantiates a new ActivateBlockchainEventSubscriptionR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivateBlockchainEventSubscriptionRB instantiates a new ActivateBlockchainEventSubscriptionRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivateBlockchainEventSubscriptionRBData instantiates a new ActivateBlockchainEventSubscriptionRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivateBlockchainEventSubscriptionRBDataWithDefaults instantiates a new ActivateBlockchainEventSubscriptionRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivateBlockchainEventSubscriptionRBWithDefaults instantiates a new ActivateBlockchainEventSubscriptionRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivateBlockchainEventSubscriptionRData instantiates a new ActivateBlockchainEventSubscriptionRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivateBlockchainEventSubscriptionRDataWithDefaults instantiates a new ActivateBlockchainEventSubscriptionRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivateBlockchainEventSubscriptionRI instantiates a new ActivateBlockchainEventSubscriptionRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivateBlockchainEventSubscriptionRIWithDefaults instantiates a new ActivateBlockchainEventSubscriptionRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivateBlockchainEventSubscriptionRWithDefaults instantiates a new ActivateBlockchainEventSubscriptionR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressCoinsTransactionConfirmed instantiates a new AddressCoinsTransactionConfirmed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressCoinsTransactionConfirmedData instantiates a new AddressCoinsTransactionConfirmedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressCoinsTransactionConfirmedDataItem instantiates a new AddressCoinsTransactionConfirmedDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressCoinsTransactionConfirmedDataItemMinedInBlock instantiates a new AddressCoinsTransactionConfirmedDataItemMinedInBlock object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressCoinsTransactionConfirmedDataItemMinedInBlockWithDefaults instantiates a new AddressCoinsTransactionConfirmedDataItemMinedInBlock object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressCoinsTransactionConfirmedDataItemWithDefaults instantiates a new AddressCoinsTransactionConfirmedDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressCoinsTransactionConfirmedDataWithDefaults instantiates a new AddressCoinsTransactionConfirmedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressCoinsTransactionConfirmedEachConfirmation instantiates a new AddressCoinsTransactionConfirmedEachConfirmation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressCoinsTransactionConfirmedEachConfirmationData instantiates a new AddressCoinsTransactionConfirmedEachConfirmationData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressCoinsTransactionConfirmedEachConfirmationDataItem instantiates a new AddressCoinsTransactionConfirmedEachConfirmationDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressCoinsTransactionConfirmedEachConfirmationDataItemMinedInBlock instantiates a new AddressCoinsTransactionConfirmedEachConfirmationDataItemMinedInBlock object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressCoinsTransactionConfirmedEachConfirmationDataItemMinedInBlockWithDefaults instantiates a new AddressCoinsTransactionConfirmedEachConfirmationDataItemMinedInBlock object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressCoinsTransactionConfirmedEachConfirmationDataItemWithDefaults instantiates a new AddressCoinsTransactionConfirmedEachConfirmationDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressCoinsTransactionConfirmedEachConfirmationDataWithDefaults instantiates a new AddressCoinsTransactionConfirmedEachConfirmationData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressCoinsTransactionConfirmedEachConfirmationWithDefaults instantiates a new AddressCoinsTransactionConfirmedEachConfirmation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressCoinsTransactionConfirmedWithDefaults instantiates a new AddressCoinsTransactionConfirmed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressCoinsTransactionUnconfirmed instantiates a new AddressCoinsTransactionUnconfirmed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressCoinsTransactionUnconfirmedData instantiates a new AddressCoinsTransactionUnconfirmedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressCoinsTransactionUnconfirmedDataItem instantiates a new AddressCoinsTransactionUnconfirmedDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressCoinsTransactionUnconfirmedDataItemWithDefaults instantiates a new AddressCoinsTransactionUnconfirmedDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressCoinsTransactionUnconfirmedDataWithDefaults instantiates a new AddressCoinsTransactionUnconfirmedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressCoinsTransactionUnconfirmedWithDefaults instantiates a new AddressCoinsTransactionUnconfirmed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressInternalTransactionConfirmed instantiates a new AddressInternalTransactionConfirmed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressInternalTransactionConfirmedData instantiates a new AddressInternalTransactionConfirmedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressInternalTransactionConfirmedDataItem instantiates a new AddressInternalTransactionConfirmedDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressInternalTransactionConfirmedDataItemMinedInBlock instantiates a new AddressInternalTransactionConfirmedDataItemMinedInBlock object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressInternalTransactionConfirmedDataItemMinedInBlockWithDefaults instantiates a new AddressInternalTransactionConfirmedDataItemMinedInBlock object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressInternalTransactionConfirmedDataItemWithDefaults instantiates a new AddressInternalTransactionConfirmedDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressInternalTransactionConfirmedDataWithDefaults instantiates a new AddressInternalTransactionConfirmedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressInternalTransactionConfirmedEachConfirmation instantiates a new AddressInternalTransactionConfirmedEachConfirmation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressInternalTransactionConfirmedEachConfirmationData instantiates a new AddressInternalTransactionConfirmedEachConfirmationData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressInternalTransactionConfirmedEachConfirmationDataItem instantiates a new AddressInternalTransactionConfirmedEachConfirmationDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressInternalTransactionConfirmedEachConfirmationDataItemMinedInBlock instantiates a new AddressInternalTransactionConfirmedEachConfirmationDataItemMinedInBlock object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressInternalTransactionConfirmedEachConfirmationDataItemMinedInBlockWithDefaults instantiates a new AddressInternalTransactionConfirmedEachConfirmationDataItemMinedInBlock object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressInternalTransactionConfirmedEachConfirmationDataItemWithDefaults instantiates a new AddressInternalTransactionConfirmedEachConfirmationDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressInternalTransactionConfirmedEachConfirmationDataWithDefaults instantiates a new AddressInternalTransactionConfirmedEachConfirmationData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressInternalTransactionConfirmedEachConfirmationWithDefaults instantiates a new AddressInternalTransactionConfirmedEachConfirmation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressInternalTransactionConfirmedWithDefaults instantiates a new AddressInternalTransactionConfirmed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmed instantiates a new AddressTokensTransactionConfirmed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedBep20 instantiates a new AddressTokensTransactionConfirmedBep20 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedBep20WithDefaults instantiates a new AddressTokensTransactionConfirmedBep20 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedData instantiates a new AddressTokensTransactionConfirmedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedDataItem instantiates a new AddressTokensTransactionConfirmedDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedDataItemMinedInBlock instantiates a new AddressTokensTransactionConfirmedDataItemMinedInBlock object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedDataItemMinedInBlockWithDefaults instantiates a new AddressTokensTransactionConfirmedDataItemMinedInBlock object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedDataItemWithDefaults instantiates a new AddressTokensTransactionConfirmedDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedDataWithDefaults instantiates a new AddressTokensTransactionConfirmedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedEachConfirmation instantiates a new AddressTokensTransactionConfirmedEachConfirmation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedEachConfirmationBep20 instantiates a new AddressTokensTransactionConfirmedEachConfirmationBep20 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedEachConfirmationBep20WithDefaults instantiates a new AddressTokensTransactionConfirmedEachConfirmationBep20 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedEachConfirmationData instantiates a new AddressTokensTransactionConfirmedEachConfirmationData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedEachConfirmationDataItem instantiates a new AddressTokensTransactionConfirmedEachConfirmationDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedEachConfirmationDataItemWithDefaults instantiates a new AddressTokensTransactionConfirmedEachConfirmationDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedEachConfirmationDataWithDefaults instantiates a new AddressTokensTransactionConfirmedEachConfirmationData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedEachConfirmationErc20 instantiates a new AddressTokensTransactionConfirmedEachConfirmationErc20 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedEachConfirmationErc20WithDefaults instantiates a new AddressTokensTransactionConfirmedEachConfirmationErc20 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedEachConfirmationErc721 instantiates a new AddressTokensTransactionConfirmedEachConfirmationErc721 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedEachConfirmationErc721WithDefaults instantiates a new AddressTokensTransactionConfirmedEachConfirmationErc721 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedEachConfirmationOmni instantiates a new AddressTokensTransactionConfirmedEachConfirmationOmni object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedEachConfirmationOmniWithDefaults instantiates a new AddressTokensTransactionConfirmedEachConfirmationOmni object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedEachConfirmationWithDefaults instantiates a new AddressTokensTransactionConfirmedEachConfirmation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedErc20 instantiates a new AddressTokensTransactionConfirmedErc20 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedErc20WithDefaults instantiates a new AddressTokensTransactionConfirmedErc20 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedErc721 instantiates a new AddressTokensTransactionConfirmedErc721 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedErc721WithDefaults instantiates a new AddressTokensTransactionConfirmedErc721 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedOmni instantiates a new AddressTokensTransactionConfirmedOmni object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionConfirmedOmniWithDefaults instantiates a new AddressTokensTransactionConfirmedOmni object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionConfirmedWithDefaults instantiates a new AddressTokensTransactionConfirmed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionUnconfirmed instantiates a new AddressTokensTransactionUnconfirmed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionUnconfirmedData instantiates a new AddressTokensTransactionUnconfirmedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionUnconfirmedDataItem instantiates a new AddressTokensTransactionUnconfirmedDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionUnconfirmedDataItemWithDefaults instantiates a new AddressTokensTransactionUnconfirmedDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionUnconfirmedDataWithDefaults instantiates a new AddressTokensTransactionUnconfirmedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionUnconfirmedErc20 instantiates a new AddressTokensTransactionUnconfirmedErc20 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionUnconfirmedErc20WithDefaults instantiates a new AddressTokensTransactionUnconfirmedErc20 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionUnconfirmedErc721 instantiates a new AddressTokensTransactionUnconfirmedErc721 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionUnconfirmedErc721WithDefaults instantiates a new AddressTokensTransactionUnconfirmedErc721 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionUnconfirmedOmni instantiates a new AddressTokensTransactionUnconfirmedOmni object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressTokensTransactionUnconfirmedOmniWithDefaults instantiates a new AddressTokensTransactionUnconfirmedOmni object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressTokensTransactionUnconfirmedWithDefaults instantiates a new AddressTokensTransactionUnconfirmed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddTokensToExistingFromAddress400Response instantiates a new AddTokensToExistingFromAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddTokensToExistingFromAddress400ResponseWithDefaults instantiates a new AddTokensToExistingFromAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddTokensToExistingFromAddress401Response instantiates a new AddTokensToExistingFromAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddTokensToExistingFromAddress401ResponseWithDefaults instantiates a new AddTokensToExistingFromAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddTokensToExistingFromAddress403Response instantiates a new AddTokensToExistingFromAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddTokensToExistingFromAddress403ResponseWithDefaults instantiates a new AddTokensToExistingFromAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddTokensToExistingFromAddressR instantiates a new AddTokensToExistingFromAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddTokensToExistingFromAddressRB instantiates a new AddTokensToExistingFromAddressRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddTokensToExistingFromAddressRBData instantiates a new AddTokensToExistingFromAddressRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddTokensToExistingFromAddressRBDataItem instantiates a new AddTokensToExistingFromAddressRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddTokensToExistingFromAddressRBDataItemWithDefaults instantiates a new AddTokensToExistingFromAddressRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddTokensToExistingFromAddressRBDataWithDefaults instantiates a new AddTokensToExistingFromAddressRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddTokensToExistingFromAddressRBTokenDataBitcoinOmniToken instantiates a new AddTokensToExistingFromAddressRBTokenDataBitcoinOmniToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddTokensToExistingFromAddressRBTokenDataBitcoinOmniTokenWithDefaults instantiates a new AddTokensToExistingFromAddressRBTokenDataBitcoinOmniToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddTokensToExistingFromAddressRBTokenDataEthereumToken instantiates a new AddTokensToExistingFromAddressRBTokenDataEthereumToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddTokensToExistingFromAddressRBTokenDataEthereumTokenWithDefaults instantiates a new AddTokensToExistingFromAddressRBTokenDataEthereumToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddTokensToExistingFromAddressRBWithDefaults instantiates a new AddTokensToExistingFromAddressRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddTokensToExistingFromAddressRData instantiates a new AddTokensToExistingFromAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddTokensToExistingFromAddressRDataWithDefaults instantiates a new AddTokensToExistingFromAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddTokensToExistingFromAddressRI instantiates a new AddTokensToExistingFromAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddTokensToExistingFromAddressRITSBOT instantiates a new AddTokensToExistingFromAddressRITSBOT object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddTokensToExistingFromAddressRITSBOTWithDefaults instantiates a new AddTokensToExistingFromAddressRITSBOT object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddTokensToExistingFromAddressRITSET instantiates a new AddTokensToExistingFromAddressRITSET object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddTokensToExistingFromAddressRITSETWithDefaults instantiates a new AddTokensToExistingFromAddressRITSET object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddTokensToExistingFromAddressRIWithDefaults instantiates a new AddTokensToExistingFromAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddTokensToExistingFromAddressRWithDefaults instantiates a new AddTokensToExistingFromAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlreadyExists instantiates a new AlreadyExists object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlreadyExistsWithDefaults instantiates a new AlreadyExists object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewBannedIpAddress instantiates a new BannedIpAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBannedIpAddressDetailsInner instantiates a new BannedIpAddressDetailsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBannedIpAddressDetailsInnerWithDefaults instantiates a new BannedIpAddressDetailsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBannedIpAddressWithDefaults instantiates a new BannedIpAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockchainDataAddressEventSubscriptionNotFound instantiates a new BlockchainDataAddressEventSubscriptionNotFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockchainDataAddressEventSubscriptionNotFoundWithDefaults instantiates a new BlockchainDataAddressEventSubscriptionNotFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockchainDataBlockNotFound instantiates a new BlockchainDataBlockNotFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockchainDataBlockNotFoundWithDefaults instantiates a new BlockchainDataBlockNotFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockchainDataInternalTransactionNotFound instantiates a new BlockchainDataInternalTransactionNotFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockchainDataInternalTransactionNotFoundWithDefaults instantiates a new BlockchainDataInternalTransactionNotFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockchainDataTransactionNotFound instantiates a new BlockchainDataTransactionNotFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockchainDataTransactionNotFoundWithDefaults instantiates a new BlockchainDataTransactionNotFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockchainEventsCallbacksLimitReached instantiates a new BlockchainEventsCallbacksLimitReached object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockchainEventsCallbacksLimitReachedWithDefaults instantiates a new BlockchainEventsCallbacksLimitReached object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockHeightReached instantiates a new BlockHeightReached object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockHeightReached400Response instantiates a new BlockHeightReached400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockHeightReached400ResponseWithDefaults instantiates a new BlockHeightReached400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockHeightReached401Response instantiates a new BlockHeightReached401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockHeightReached401ResponseWithDefaults instantiates a new BlockHeightReached401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockHeightReached403Response instantiates a new BlockHeightReached403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockHeightReached403ResponseWithDefaults instantiates a new BlockHeightReached403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockHeightReached409Response instantiates a new BlockHeightReached409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockHeightReached409ResponseWithDefaults instantiates a new BlockHeightReached409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockHeightReachedData instantiates a new BlockHeightReachedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockHeightReachedDataItem instantiates a new BlockHeightReachedDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockHeightReachedDataItemWithDefaults instantiates a new BlockHeightReachedDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockHeightReachedDataWithDefaults instantiates a new BlockHeightReachedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockHeightReachedR instantiates a new BlockHeightReachedR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockHeightReachedRB instantiates a new BlockHeightReachedRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockHeightReachedRBData instantiates a new BlockHeightReachedRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockHeightReachedRBDataItem instantiates a new BlockHeightReachedRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockHeightReachedRBDataItemWithDefaults instantiates a new BlockHeightReachedRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockHeightReachedRBDataWithDefaults instantiates a new BlockHeightReachedRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockHeightReachedRBWithDefaults instantiates a new BlockHeightReachedRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockHeightReachedRData instantiates a new BlockHeightReachedRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockHeightReachedRDataWithDefaults instantiates a new BlockHeightReachedRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockHeightReachedRI instantiates a new BlockHeightReachedRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockHeightReachedRIWithDefaults instantiates a new BlockHeightReachedRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockHeightReachedRWithDefaults instantiates a new BlockHeightReachedR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockHeightReachedWithDefaults instantiates a new BlockHeightReached object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockMined instantiates a new BlockMined object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockMinedData instantiates a new BlockMinedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockMinedDataItem instantiates a new BlockMinedDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockMinedDataItemWithDefaults instantiates a new BlockMinedDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockMinedDataWithDefaults instantiates a new BlockMinedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockMinedWithDefaults instantiates a new BlockMined object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastLocallySignedTransaction400Response instantiates a new BroadcastLocallySignedTransaction400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastLocallySignedTransaction400ResponseWithDefaults instantiates a new BroadcastLocallySignedTransaction400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastLocallySignedTransaction401Response instantiates a new BroadcastLocallySignedTransaction401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastLocallySignedTransaction401ResponseWithDefaults instantiates a new BroadcastLocallySignedTransaction401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastLocallySignedTransaction403Response instantiates a new BroadcastLocallySignedTransaction403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastLocallySignedTransaction403ResponseWithDefaults instantiates a new BroadcastLocallySignedTransaction403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastLocallySignedTransaction409Response instantiates a new BroadcastLocallySignedTransaction409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastLocallySignedTransaction409ResponseWithDefaults instantiates a new BroadcastLocallySignedTransaction409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastLocallySignedTransactionR instantiates a new BroadcastLocallySignedTransactionR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastLocallySignedTransactionRB instantiates a new BroadcastLocallySignedTransactionRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastLocallySignedTransactionRBData instantiates a new BroadcastLocallySignedTransactionRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastLocallySignedTransactionRBDataItem instantiates a new BroadcastLocallySignedTransactionRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastLocallySignedTransactionRBDataItemWithDefaults instantiates a new BroadcastLocallySignedTransactionRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastLocallySignedTransactionRBDataWithDefaults instantiates a new BroadcastLocallySignedTransactionRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastLocallySignedTransactionRBWithDefaults instantiates a new BroadcastLocallySignedTransactionRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastLocallySignedTransactionRData instantiates a new BroadcastLocallySignedTransactionRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastLocallySignedTransactionRDataWithDefaults instantiates a new BroadcastLocallySignedTransactionRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastLocallySignedTransactionRI instantiates a new BroadcastLocallySignedTransactionRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastLocallySignedTransactionRIWithDefaults instantiates a new BroadcastLocallySignedTransactionRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastLocallySignedTransactionRWithDefaults instantiates a new BroadcastLocallySignedTransactionR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastTransactionFail instantiates a new BroadcastTransactionFail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastTransactionFailData instantiates a new BroadcastTransactionFailData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastTransactionFailDataItem instantiates a new BroadcastTransactionFailDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastTransactionFailDataItemWithDefaults instantiates a new BroadcastTransactionFailDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastTransactionFailDataWithDefaults instantiates a new BroadcastTransactionFailData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastTransactionFailWithDefaults instantiates a new BroadcastTransactionFail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastTransactionSuccess instantiates a new BroadcastTransactionSuccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastTransactionSuccessData instantiates a new BroadcastTransactionSuccessData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastTransactionSuccessDataItem instantiates a new BroadcastTransactionSuccessDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBroadcastTransactionSuccessDataItemWithDefaults instantiates a new BroadcastTransactionSuccessDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastTransactionSuccessDataWithDefaults instantiates a new BroadcastTransactionSuccessData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBroadcastTransactionSuccessWithDefaults instantiates a new BroadcastTransactionSuccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoinsForwardingAutomationsLimitReached instantiates a new CoinsForwardingAutomationsLimitReached object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoinsForwardingAutomationsLimitReachedWithDefaults instantiates a new CoinsForwardingAutomationsLimitReached object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoinsForwardingFail instantiates a new CoinsForwardingFail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoinsForwardingFailData instantiates a new CoinsForwardingFailData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoinsForwardingFailDataItem instantiates a new CoinsForwardingFailDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoinsForwardingFailDataItemWithDefaults instantiates a new CoinsForwardingFailDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoinsForwardingFailDataWithDefaults instantiates a new CoinsForwardingFailData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoinsForwardingFailWithDefaults instantiates a new CoinsForwardingFail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoinsForwardingSuccess instantiates a new CoinsForwardingSuccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoinsForwardingSuccessData instantiates a new CoinsForwardingSuccessData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoinsForwardingSuccessDataItem instantiates a new CoinsForwardingSuccessDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoinsForwardingSuccessDataItemWithDefaults instantiates a new CoinsForwardingSuccessDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoinsForwardingSuccessDataWithDefaults instantiates a new CoinsForwardingSuccessData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoinsForwardingSuccessWithDefaults instantiates a new CoinsForwardingSuccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewConfirmedCoinsTransactionForCertainAmountOrHigher instantiates a new ConfirmedCoinsTransactionForCertainAmountOrHigher object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfirmedCoinsTransactionForCertainAmountOrHigherData instantiates a new ConfirmedCoinsTransactionForCertainAmountOrHigherData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfirmedCoinsTransactionForCertainAmountOrHigherDataItem instantiates a new ConfirmedCoinsTransactionForCertainAmountOrHigherDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfirmedCoinsTransactionForCertainAmountOrHigherDataItemWithDefaults instantiates a new ConfirmedCoinsTransactionForCertainAmountOrHigherDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfirmedCoinsTransactionForCertainAmountOrHigherDataWithDefaults instantiates a new ConfirmedCoinsTransactionForCertainAmountOrHigherData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfirmedCoinsTransactionForCertainAmountOrHigherWithDefaults instantiates a new ConfirmedCoinsTransactionForCertainAmountOrHigher object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfirmedInternalTransactionForCertainAmountOrHigher instantiates a new ConfirmedInternalTransactionForCertainAmountOrHigher object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfirmedInternalTransactionForCertainAmountOrHigherData instantiates a new ConfirmedInternalTransactionForCertainAmountOrHigherData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfirmedInternalTransactionForCertainAmountOrHigherDataItem instantiates a new ConfirmedInternalTransactionForCertainAmountOrHigherDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfirmedInternalTransactionForCertainAmountOrHigherDataItemWithDefaults instantiates a new ConfirmedInternalTransactionForCertainAmountOrHigherDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfirmedInternalTransactionForCertainAmountOrHigherDataWithDefaults instantiates a new ConfirmedInternalTransactionForCertainAmountOrHigherData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfirmedInternalTransactionForCertainAmountOrHigherWithDefaults instantiates a new ConfirmedInternalTransactionForCertainAmountOrHigher object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfirmedTokensTransactionForCertainAmountOrHigher instantiates a new ConfirmedTokensTransactionForCertainAmountOrHigher object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfirmedTokensTransactionForCertainAmountOrHigherBep20 instantiates a new ConfirmedTokensTransactionForCertainAmountOrHigherBep20 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfirmedTokensTransactionForCertainAmountOrHigherBep20WithDefaults instantiates a new ConfirmedTokensTransactionForCertainAmountOrHigherBep20 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfirmedTokensTransactionForCertainAmountOrHigherData instantiates a new ConfirmedTokensTransactionForCertainAmountOrHigherData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfirmedTokensTransactionForCertainAmountOrHigherDataItem instantiates a new ConfirmedTokensTransactionForCertainAmountOrHigherDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfirmedTokensTransactionForCertainAmountOrHigherDataItemWithDefaults instantiates a new ConfirmedTokensTransactionForCertainAmountOrHigherDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfirmedTokensTransactionForCertainAmountOrHigherDataWithDefaults instantiates a new ConfirmedTokensTransactionForCertainAmountOrHigherData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfirmedTokensTransactionForCertainAmountOrHigherErc20 instantiates a new ConfirmedTokensTransactionForCertainAmountOrHigherErc20 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfirmedTokensTransactionForCertainAmountOrHigherErc20WithDefaults instantiates a new ConfirmedTokensTransactionForCertainAmountOrHigherErc20 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfirmedTokensTransactionForCertainAmountOrHigherErc721 instantiates a new ConfirmedTokensTransactionForCertainAmountOrHigherErc721 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfirmedTokensTransactionForCertainAmountOrHigherErc721WithDefaults instantiates a new ConfirmedTokensTransactionForCertainAmountOrHigherErc721 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfirmedTokensTransactionForCertainAmountOrHigherWithDefaults instantiates a new ConfirmedTokensTransactionForCertainAmountOrHigher object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddress400Response instantiates a new ConvertBitcoinCashAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddress400ResponseWithDefaults instantiates a new ConvertBitcoinCashAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddress401Response instantiates a new ConvertBitcoinCashAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddress401ResponseWithDefaults instantiates a new ConvertBitcoinCashAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddress402Response instantiates a new ConvertBitcoinCashAddress402Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddress402ResponseWithDefaults instantiates a new ConvertBitcoinCashAddress402Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddress403Response instantiates a new ConvertBitcoinCashAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddress403ResponseWithDefaults instantiates a new ConvertBitcoinCashAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddress409Response instantiates a new ConvertBitcoinCashAddress409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddress409ResponseWithDefaults instantiates a new ConvertBitcoinCashAddress409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddress415Response instantiates a new ConvertBitcoinCashAddress415Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddress415ResponseWithDefaults instantiates a new ConvertBitcoinCashAddress415Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddress422Response instantiates a new ConvertBitcoinCashAddress422Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddress422ResponseWithDefaults instantiates a new ConvertBitcoinCashAddress422Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddress429Response instantiates a new ConvertBitcoinCashAddress429Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddress429ResponseWithDefaults instantiates a new ConvertBitcoinCashAddress429Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddress500Response instantiates a new ConvertBitcoinCashAddress500Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddress500ResponseWithDefaults instantiates a new ConvertBitcoinCashAddress500Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddressR instantiates a new ConvertBitcoinCashAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddressRB instantiates a new ConvertBitcoinCashAddressRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddressRBData instantiates a new ConvertBitcoinCashAddressRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddressRBDataItem instantiates a new ConvertBitcoinCashAddressRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddressRBDataItemWithDefaults instantiates a new ConvertBitcoinCashAddressRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddressRBDataWithDefaults instantiates a new ConvertBitcoinCashAddressRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddressRBWithDefaults instantiates a new ConvertBitcoinCashAddressRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddressRData instantiates a new ConvertBitcoinCashAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddressRDataWithDefaults instantiates a new ConvertBitcoinCashAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddressRI instantiates a new ConvertBitcoinCashAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConvertBitcoinCashAddressRIWithDefaults instantiates a new ConvertBitcoinCashAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConvertBitcoinCashAddressRWithDefaults instantiates a new ConvertBitcoinCashAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCouldNotCalculateRateForPair instantiates a new CouldNotCalculateRateForPair object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCouldNotCalculateRateForPairWithDefaults instantiates a new CouldNotCalculateRateForPair object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticCoinsForwarding400Response instantiates a new CreateAutomaticCoinsForwarding400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticCoinsForwarding400ResponseWithDefaults instantiates a new CreateAutomaticCoinsForwarding400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticCoinsForwarding401Response instantiates a new CreateAutomaticCoinsForwarding401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticCoinsForwarding401ResponseWithDefaults instantiates a new CreateAutomaticCoinsForwarding401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticCoinsForwarding403Response instantiates a new CreateAutomaticCoinsForwarding403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticCoinsForwarding403ResponseWithDefaults instantiates a new CreateAutomaticCoinsForwarding403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticCoinsForwarding409Response instantiates a new CreateAutomaticCoinsForwarding409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticCoinsForwarding409ResponseWithDefaults instantiates a new CreateAutomaticCoinsForwarding409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticCoinsForwardingR instantiates a new CreateAutomaticCoinsForwardingR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticCoinsForwardingRB instantiates a new CreateAutomaticCoinsForwardingRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticCoinsForwardingRBData instantiates a new CreateAutomaticCoinsForwardingRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticCoinsForwardingRBDataItem instantiates a new CreateAutomaticCoinsForwardingRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticCoinsForwardingRBDataItemWithDefaults instantiates a new CreateAutomaticCoinsForwardingRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticCoinsForwardingRBDataWithDefaults instantiates a new CreateAutomaticCoinsForwardingRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticCoinsForwardingRBWithDefaults instantiates a new CreateAutomaticCoinsForwardingRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticCoinsForwardingRData instantiates a new CreateAutomaticCoinsForwardingRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticCoinsForwardingRDataWithDefaults instantiates a new CreateAutomaticCoinsForwardingRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticCoinsForwardingRI instantiates a new CreateAutomaticCoinsForwardingRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticCoinsForwardingRIWithDefaults instantiates a new CreateAutomaticCoinsForwardingRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticCoinsForwardingRWithDefaults instantiates a new CreateAutomaticCoinsForwardingR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticTokensForwarding400Response instantiates a new CreateAutomaticTokensForwarding400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticTokensForwarding400ResponseWithDefaults instantiates a new CreateAutomaticTokensForwarding400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticTokensForwarding401Response instantiates a new CreateAutomaticTokensForwarding401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticTokensForwarding401ResponseWithDefaults instantiates a new CreateAutomaticTokensForwarding401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticTokensForwarding403Response instantiates a new CreateAutomaticTokensForwarding403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticTokensForwarding403ResponseWithDefaults instantiates a new CreateAutomaticTokensForwarding403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticTokensForwardingR instantiates a new CreateAutomaticTokensForwardingR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticTokensForwardingRB instantiates a new CreateAutomaticTokensForwardingRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticTokensForwardingRBData instantiates a new CreateAutomaticTokensForwardingRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticTokensForwardingRBDataItem instantiates a new CreateAutomaticTokensForwardingRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticTokensForwardingRBDataItemWithDefaults instantiates a new CreateAutomaticTokensForwardingRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticTokensForwardingRBDataWithDefaults instantiates a new CreateAutomaticTokensForwardingRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticTokensForwardingRBTokenDataBitcoinOmniToken instantiates a new CreateAutomaticTokensForwardingRBTokenDataBitcoinOmniToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticTokensForwardingRBTokenDataBitcoinOmniTokenWithDefaults instantiates a new CreateAutomaticTokensForwardingRBTokenDataBitcoinOmniToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticTokensForwardingRBTokenDataEthereumToken instantiates a new CreateAutomaticTokensForwardingRBTokenDataEthereumToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticTokensForwardingRBTokenDataEthereumTokenWithDefaults instantiates a new CreateAutomaticTokensForwardingRBTokenDataEthereumToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticTokensForwardingRBWithDefaults instantiates a new CreateAutomaticTokensForwardingRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticTokensForwardingRData instantiates a new CreateAutomaticTokensForwardingRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticTokensForwardingRDataWithDefaults instantiates a new CreateAutomaticTokensForwardingRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticTokensForwardingRI instantiates a new CreateAutomaticTokensForwardingRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticTokensForwardingRITSBOT instantiates a new CreateAutomaticTokensForwardingRITSBOT object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticTokensForwardingRITSBOTWithDefaults instantiates a new CreateAutomaticTokensForwardingRITSBOT object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticTokensForwardingRITSET instantiates a new CreateAutomaticTokensForwardingRITSET object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAutomaticTokensForwardingRITSETWithDefaults instantiates a new CreateAutomaticTokensForwardingRITSET object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticTokensForwardingRIWithDefaults instantiates a new CreateAutomaticTokensForwardingRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAutomaticTokensForwardingRWithDefaults instantiates a new CreateAutomaticTokensForwardingR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionFromAddressForWholeAmount400Response instantiates a new CreateCoinsTransactionFromAddressForWholeAmount400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionFromAddressForWholeAmount400ResponseWithDefaults instantiates a new CreateCoinsTransactionFromAddressForWholeAmount400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionFromAddressForWholeAmount401Response instantiates a new CreateCoinsTransactionFromAddressForWholeAmount401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionFromAddressForWholeAmount401ResponseWithDefaults instantiates a new CreateCoinsTransactionFromAddressForWholeAmount401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionFromAddressForWholeAmount403Response instantiates a new CreateCoinsTransactionFromAddressForWholeAmount403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionFromAddressForWholeAmount403ResponseWithDefaults instantiates a new CreateCoinsTransactionFromAddressForWholeAmount403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionFromAddressForWholeAmount409Response instantiates a new CreateCoinsTransactionFromAddressForWholeAmount409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionFromAddressForWholeAmount409ResponseWithDefaults instantiates a new CreateCoinsTransactionFromAddressForWholeAmount409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionFromAddressForWholeAmountR instantiates a new CreateCoinsTransactionFromAddressForWholeAmountR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionFromAddressForWholeAmountRB instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionFromAddressForWholeAmountRBData instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionFromAddressForWholeAmountRBDataItem instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionFromAddressForWholeAmountRBDataItemWithDefaults instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionFromAddressForWholeAmountRBDataWithDefaults instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionFromAddressForWholeAmountRBWithDefaults instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionFromAddressForWholeAmountRData instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionFromAddressForWholeAmountRDataWithDefaults instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionFromAddressForWholeAmountRI instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionFromAddressForWholeAmountRIRecipientsInner instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionFromAddressForWholeAmountRIRecipientsInnerWithDefaults instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionFromAddressForWholeAmountRISenders instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRISenders object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionFromAddressForWholeAmountRISendersWithDefaults instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRISenders object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionFromAddressForWholeAmountRIWithDefaults instantiates a new CreateCoinsTransactionFromAddressForWholeAmountRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionFromAddressForWholeAmountRWithDefaults instantiates a new CreateCoinsTransactionFromAddressForWholeAmountR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromAddress400Response instantiates a new CreateCoinsTransactionRequestFromAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromAddress400ResponseWithDefaults instantiates a new CreateCoinsTransactionRequestFromAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromAddress401Response instantiates a new CreateCoinsTransactionRequestFromAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromAddress401ResponseWithDefaults instantiates a new CreateCoinsTransactionRequestFromAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromAddress403Response instantiates a new CreateCoinsTransactionRequestFromAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromAddress403ResponseWithDefaults instantiates a new CreateCoinsTransactionRequestFromAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromAddress409Response instantiates a new CreateCoinsTransactionRequestFromAddress409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromAddress409ResponseWithDefaults instantiates a new CreateCoinsTransactionRequestFromAddress409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromAddressR instantiates a new CreateCoinsTransactionRequestFromAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromAddressRB instantiates a new CreateCoinsTransactionRequestFromAddressRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromAddressRBData instantiates a new CreateCoinsTransactionRequestFromAddressRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromAddressRBDataItem instantiates a new CreateCoinsTransactionRequestFromAddressRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromAddressRBDataItemWithDefaults instantiates a new CreateCoinsTransactionRequestFromAddressRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromAddressRBDataWithDefaults instantiates a new CreateCoinsTransactionRequestFromAddressRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromAddressRBWithDefaults instantiates a new CreateCoinsTransactionRequestFromAddressRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromAddressRData instantiates a new CreateCoinsTransactionRequestFromAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromAddressRDataWithDefaults instantiates a new CreateCoinsTransactionRequestFromAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromAddressRI instantiates a new CreateCoinsTransactionRequestFromAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromAddressRIRecipientsInner instantiates a new CreateCoinsTransactionRequestFromAddressRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromAddressRIRecipientsInnerWithDefaults instantiates a new CreateCoinsTransactionRequestFromAddressRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromAddressRISenders instantiates a new CreateCoinsTransactionRequestFromAddressRISenders object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromAddressRISendersWithDefaults instantiates a new CreateCoinsTransactionRequestFromAddressRISenders object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromAddressRIWithDefaults instantiates a new CreateCoinsTransactionRequestFromAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromAddressRWithDefaults instantiates a new CreateCoinsTransactionRequestFromAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromWallet400Response instantiates a new CreateCoinsTransactionRequestFromWallet400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromWallet400ResponseWithDefaults instantiates a new CreateCoinsTransactionRequestFromWallet400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromWallet401Response instantiates a new CreateCoinsTransactionRequestFromWallet401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromWallet401ResponseWithDefaults instantiates a new CreateCoinsTransactionRequestFromWallet401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromWallet403Response instantiates a new CreateCoinsTransactionRequestFromWallet403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromWallet403ResponseWithDefaults instantiates a new CreateCoinsTransactionRequestFromWallet403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromWallet409Response instantiates a new CreateCoinsTransactionRequestFromWallet409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromWallet409ResponseWithDefaults instantiates a new CreateCoinsTransactionRequestFromWallet409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromWalletR instantiates a new CreateCoinsTransactionRequestFromWalletR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromWalletRB instantiates a new CreateCoinsTransactionRequestFromWalletRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromWalletRBData instantiates a new CreateCoinsTransactionRequestFromWalletRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromWalletRBDataItem instantiates a new CreateCoinsTransactionRequestFromWalletRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromWalletRBDataItemRecipientsInner instantiates a new CreateCoinsTransactionRequestFromWalletRBDataItemRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromWalletRBDataItemRecipientsInnerWithDefaults instantiates a new CreateCoinsTransactionRequestFromWalletRBDataItemRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromWalletRBDataItemWithDefaults instantiates a new CreateCoinsTransactionRequestFromWalletRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromWalletRBDataWithDefaults instantiates a new CreateCoinsTransactionRequestFromWalletRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromWalletRBWithDefaults instantiates a new CreateCoinsTransactionRequestFromWalletRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromWalletRData instantiates a new CreateCoinsTransactionRequestFromWalletRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromWalletRDataWithDefaults instantiates a new CreateCoinsTransactionRequestFromWalletRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromWalletRI instantiates a new CreateCoinsTransactionRequestFromWalletRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromWalletRIRecipientsInner instantiates a new CreateCoinsTransactionRequestFromWalletRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCoinsTransactionRequestFromWalletRIRecipientsInnerWithDefaults instantiates a new CreateCoinsTransactionRequestFromWalletRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromWalletRIWithDefaults instantiates a new CreateCoinsTransactionRequestFromWalletRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCoinsTransactionRequestFromWalletRWithDefaults instantiates a new CreateCoinsTransactionRequestFromWalletR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokensTransactionRequestFromAddress400Response instantiates a new CreateFungibleTokensTransactionRequestFromAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokensTransactionRequestFromAddress400ResponseWithDefaults instantiates a new CreateFungibleTokensTransactionRequestFromAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokensTransactionRequestFromAddress401Response instantiates a new CreateFungibleTokensTransactionRequestFromAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokensTransactionRequestFromAddress401ResponseWithDefaults instantiates a new CreateFungibleTokensTransactionRequestFromAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokensTransactionRequestFromAddress403Response instantiates a new CreateFungibleTokensTransactionRequestFromAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokensTransactionRequestFromAddress403ResponseWithDefaults instantiates a new CreateFungibleTokensTransactionRequestFromAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokensTransactionRequestFromAddress409Response instantiates a new CreateFungibleTokensTransactionRequestFromAddress409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokensTransactionRequestFromAddress409ResponseWithDefaults instantiates a new CreateFungibleTokensTransactionRequestFromAddress409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokensTransactionRequestFromAddressR instantiates a new CreateFungibleTokensTransactionRequestFromAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokensTransactionRequestFromAddressRB instantiates a new CreateFungibleTokensTransactionRequestFromAddressRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokensTransactionRequestFromAddressRBData instantiates a new CreateFungibleTokensTransactionRequestFromAddressRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokensTransactionRequestFromAddressRBDataItem instantiates a new CreateFungibleTokensTransactionRequestFromAddressRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokensTransactionRequestFromAddressRBDataItemWithDefaults instantiates a new CreateFungibleTokensTransactionRequestFromAddressRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokensTransactionRequestFromAddressRBDataWithDefaults instantiates a new CreateFungibleTokensTransactionRequestFromAddressRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokensTransactionRequestFromAddressRBWithDefaults instantiates a new CreateFungibleTokensTransactionRequestFromAddressRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokensTransactionRequestFromAddressRData instantiates a new CreateFungibleTokensTransactionRequestFromAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokensTransactionRequestFromAddressRDataWithDefaults instantiates a new CreateFungibleTokensTransactionRequestFromAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokensTransactionRequestFromAddressRI instantiates a new CreateFungibleTokensTransactionRequestFromAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokensTransactionRequestFromAddressRIRecipientsInner instantiates a new CreateFungibleTokensTransactionRequestFromAddressRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokensTransactionRequestFromAddressRIRecipientsInnerWithDefaults instantiates a new CreateFungibleTokensTransactionRequestFromAddressRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokensTransactionRequestFromAddressRISE instantiates a new CreateFungibleTokensTransactionRequestFromAddressRISE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokensTransactionRequestFromAddressRISenders instantiates a new CreateFungibleTokensTransactionRequestFromAddressRISenders object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokensTransactionRequestFromAddressRISendersWithDefaults instantiates a new CreateFungibleTokensTransactionRequestFromAddressRISenders object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokensTransactionRequestFromAddressRISEWithDefaults instantiates a new CreateFungibleTokensTransactionRequestFromAddressRISE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokensTransactionRequestFromAddressRIWithDefaults instantiates a new CreateFungibleTokensTransactionRequestFromAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokensTransactionRequestFromAddressRWithDefaults instantiates a new CreateFungibleTokensTransactionRequestFromAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority400Response instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority400ResponseWithDefaults instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority401Response instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority401ResponseWithDefaults instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority403Response instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority403ResponseWithDefaults instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority409Response instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority409ResponseWithDefaults instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityR instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRB instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRBData instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRBDataItem instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRBDataItemWithDefaults instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRBDataWithDefaults instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRBWithDefaults instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRData instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRDataWithDefaults instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRI instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIRecipientInner instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIRecipientInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIRecipientInnerWithDefaults instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIRecipientInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIST instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIST object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRISTWithDefaults instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIST object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIWithDefaults instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRWithDefaults instantiates a new CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriority400Response instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriority400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriority400ResponseWithDefaults instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriority400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriority401Response instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriority401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriority401ResponseWithDefaults instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriority401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriority403Response instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriority403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriority403ResponseWithDefaults instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriority403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriority409Response instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriority409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriority409ResponseWithDefaults instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriority409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityR instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRB instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRBData instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRBDataItem instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRBDataItemWithDefaults instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRBDataWithDefaults instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRBWithDefaults instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRData instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRDataWithDefaults instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRI instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRIRecipientInner instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRIRecipientInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRIRecipientInnerWithDefaults instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRIRecipientInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRISender instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRISender object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRISenderWithDefaults instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRISender object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRITotalAmount instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRITotalAmount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRITotalAmountWithDefaults instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRITotalAmount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRIWithDefaults instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSingleTransactionRequestFromAddressWithoutFeePriorityRWithDefaults instantiates a new CreateSingleTransactionRequestFromAddressWithoutFeePriorityR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHex400Response instantiates a new DecodeRawTransactionHex400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHex400ResponseWithDefaults instantiates a new DecodeRawTransactionHex400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHex401Response instantiates a new DecodeRawTransactionHex401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHex401ResponseWithDefaults instantiates a new DecodeRawTransactionHex401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHex403Response instantiates a new DecodeRawTransactionHex403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHex403ResponseWithDefaults instantiates a new DecodeRawTransactionHex403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexR instantiates a new DecodeRawTransactionHexR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRB instantiates a new DecodeRawTransactionHexRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRBData instantiates a new DecodeRawTransactionHexRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRBDataItem instantiates a new DecodeRawTransactionHexRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRBDataItemWithDefaults instantiates a new DecodeRawTransactionHexRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRBDataWithDefaults instantiates a new DecodeRawTransactionHexRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRBWithDefaults instantiates a new DecodeRawTransactionHexRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRData instantiates a new DecodeRawTransactionHexRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRDataWithDefaults instantiates a new DecodeRawTransactionHexRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRI instantiates a new DecodeRawTransactionHexRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISB instantiates a new DecodeRawTransactionHexRISB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISB2 instantiates a new DecodeRawTransactionHexRISB2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISB22 instantiates a new DecodeRawTransactionHexRISB22 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISB22WithDefaults instantiates a new DecodeRawTransactionHexRISB22 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISB2VinInner instantiates a new DecodeRawTransactionHexRISB2VinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISB2VinInnerWithDefaults instantiates a new DecodeRawTransactionHexRISB2VinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISB2VoutInner instantiates a new DecodeRawTransactionHexRISB2VoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISB2VoutInnerScriptPubKey instantiates a new DecodeRawTransactionHexRISB2VoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISB2VoutInnerScriptPubKeyWithDefaults instantiates a new DecodeRawTransactionHexRISB2VoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISB2VoutInnerWithDefaults instantiates a new DecodeRawTransactionHexRISB2VoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISB2WithDefaults instantiates a new DecodeRawTransactionHexRISB2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISBVinInner instantiates a new DecodeRawTransactionHexRISBVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISBVinInnerScriptSig instantiates a new DecodeRawTransactionHexRISBVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISBVinInnerScriptSigWithDefaults instantiates a new DecodeRawTransactionHexRISBVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISBVinInnerWithDefaults instantiates a new DecodeRawTransactionHexRISBVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISBVoutInner instantiates a new DecodeRawTransactionHexRISBVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISBVoutInnerScriptPubKey instantiates a new DecodeRawTransactionHexRISBVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISBVoutInnerScriptPubKeyWithDefaults instantiates a new DecodeRawTransactionHexRISBVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISBVoutInnerWithDefaults instantiates a new DecodeRawTransactionHexRISBVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISBWithDefaults instantiates a new DecodeRawTransactionHexRISB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISD instantiates a new DecodeRawTransactionHexRISD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISD2 instantiates a new DecodeRawTransactionHexRISD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISD2VinInner instantiates a new DecodeRawTransactionHexRISD2VinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISD2VinInnerScriptSig instantiates a new DecodeRawTransactionHexRISD2VinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISD2VinInnerScriptSigWithDefaults instantiates a new DecodeRawTransactionHexRISD2VinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISD2VinInnerWithDefaults instantiates a new DecodeRawTransactionHexRISD2VinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISD2VoutInner instantiates a new DecodeRawTransactionHexRISD2VoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISD2VoutInnerScriptPubKey instantiates a new DecodeRawTransactionHexRISD2VoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISD2VoutInnerScriptPubKeyWithDefaults instantiates a new DecodeRawTransactionHexRISD2VoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISD2VoutInnerWithDefaults instantiates a new DecodeRawTransactionHexRISD2VoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISD2WithDefaults instantiates a new DecodeRawTransactionHexRISD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISDVinInner instantiates a new DecodeRawTransactionHexRISDVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISDVinInnerScriptSig instantiates a new DecodeRawTransactionHexRISDVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISDVinInnerScriptSigWithDefaults instantiates a new DecodeRawTransactionHexRISDVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISDVinInnerWithDefaults instantiates a new DecodeRawTransactionHexRISDVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISDVoutInner instantiates a new DecodeRawTransactionHexRISDVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISDVoutInnerScriptPubKey instantiates a new DecodeRawTransactionHexRISDVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISDVoutInnerScriptPubKeyWithDefaults instantiates a new DecodeRawTransactionHexRISDVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISDVoutInnerWithDefaults instantiates a new DecodeRawTransactionHexRISDVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISDWithDefaults instantiates a new DecodeRawTransactionHexRISD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISE instantiates a new DecodeRawTransactionHexRISE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISE2 instantiates a new DecodeRawTransactionHexRISE2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISE2WithDefaults instantiates a new DecodeRawTransactionHexRISE2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISEWithDefaults instantiates a new DecodeRawTransactionHexRISE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISL instantiates a new DecodeRawTransactionHexRISL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISLVinInner instantiates a new DecodeRawTransactionHexRISLVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISLVinInnerScriptSig instantiates a new DecodeRawTransactionHexRISLVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISLVinInnerScriptSigWithDefaults instantiates a new DecodeRawTransactionHexRISLVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISLVinInnerWithDefaults instantiates a new DecodeRawTransactionHexRISLVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISLVoutInner instantiates a new DecodeRawTransactionHexRISLVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISLVoutInnerScriptPubKey instantiates a new DecodeRawTransactionHexRISLVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISLVoutInnerScriptPubKeyWithDefaults instantiates a new DecodeRawTransactionHexRISLVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISLVoutInnerWithDefaults instantiates a new DecodeRawTransactionHexRISLVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISLWithDefaults instantiates a new DecodeRawTransactionHexRISL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISZ instantiates a new DecodeRawTransactionHexRISZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISZVinInner instantiates a new DecodeRawTransactionHexRISZVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISZVinInnerScriptSig instantiates a new DecodeRawTransactionHexRISZVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISZVinInnerScriptSigWithDefaults instantiates a new DecodeRawTransactionHexRISZVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISZVinInnerWithDefaults instantiates a new DecodeRawTransactionHexRISZVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISZVoutInner instantiates a new DecodeRawTransactionHexRISZVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISZVoutInnerScriptPubKey instantiates a new DecodeRawTransactionHexRISZVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeRawTransactionHexRISZVoutInnerScriptPubKeyWithDefaults instantiates a new DecodeRawTransactionHexRISZVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISZVoutInnerWithDefaults instantiates a new DecodeRawTransactionHexRISZVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRISZWithDefaults instantiates a new DecodeRawTransactionHexRISZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRIWithDefaults instantiates a new DecodeRawTransactionHexRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeRawTransactionHexRWithDefaults instantiates a new DecodeRawTransactionHexR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeXAddress400Response instantiates a new DecodeXAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeXAddress400ResponseWithDefaults instantiates a new DecodeXAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeXAddress401Response instantiates a new DecodeXAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeXAddress401ResponseWithDefaults instantiates a new DecodeXAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeXAddress403Response instantiates a new DecodeXAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeXAddress403ResponseWithDefaults instantiates a new DecodeXAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeXAddressR instantiates a new DecodeXAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeXAddressRData instantiates a new DecodeXAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeXAddressRDataWithDefaults instantiates a new DecodeXAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeXAddressRI instantiates a new DecodeXAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecodeXAddressRIWithDefaults instantiates a new DecodeXAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecodeXAddressRWithDefaults instantiates a new DecodeXAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticCoinsForwarding400Response instantiates a new DeleteAutomaticCoinsForwarding400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticCoinsForwarding400ResponseWithDefaults instantiates a new DeleteAutomaticCoinsForwarding400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticCoinsForwarding401Response instantiates a new DeleteAutomaticCoinsForwarding401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticCoinsForwarding401ResponseWithDefaults instantiates a new DeleteAutomaticCoinsForwarding401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticCoinsForwarding403Response instantiates a new DeleteAutomaticCoinsForwarding403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticCoinsForwarding403ResponseWithDefaults instantiates a new DeleteAutomaticCoinsForwarding403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticCoinsForwardingR instantiates a new DeleteAutomaticCoinsForwardingR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticCoinsForwardingRData instantiates a new DeleteAutomaticCoinsForwardingRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticCoinsForwardingRDataWithDefaults instantiates a new DeleteAutomaticCoinsForwardingRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticCoinsForwardingRI instantiates a new DeleteAutomaticCoinsForwardingRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticCoinsForwardingRIWithDefaults instantiates a new DeleteAutomaticCoinsForwardingRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticCoinsForwardingRWithDefaults instantiates a new DeleteAutomaticCoinsForwardingR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticTokensForwarding400Response instantiates a new DeleteAutomaticTokensForwarding400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticTokensForwarding400ResponseWithDefaults instantiates a new DeleteAutomaticTokensForwarding400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticTokensForwarding401Response instantiates a new DeleteAutomaticTokensForwarding401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticTokensForwarding401ResponseWithDefaults instantiates a new DeleteAutomaticTokensForwarding401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticTokensForwarding403Response instantiates a new DeleteAutomaticTokensForwarding403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticTokensForwarding403ResponseWithDefaults instantiates a new DeleteAutomaticTokensForwarding403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticTokensForwardingR instantiates a new DeleteAutomaticTokensForwardingR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticTokensForwardingRData instantiates a new DeleteAutomaticTokensForwardingRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticTokensForwardingRDataWithDefaults instantiates a new DeleteAutomaticTokensForwardingRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticTokensForwardingRI instantiates a new DeleteAutomaticTokensForwardingRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticTokensForwardingRITSBOT instantiates a new DeleteAutomaticTokensForwardingRITSBOT object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticTokensForwardingRITSBOTWithDefaults instantiates a new DeleteAutomaticTokensForwardingRITSBOT object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticTokensForwardingRITSET instantiates a new DeleteAutomaticTokensForwardingRITSET object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAutomaticTokensForwardingRITSETWithDefaults instantiates a new DeleteAutomaticTokensForwardingRITSET object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticTokensForwardingRIWithDefaults instantiates a new DeleteAutomaticTokensForwardingRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAutomaticTokensForwardingRWithDefaults instantiates a new DeleteAutomaticTokensForwardingR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteBlockchainEventSubscription400Response instantiates a new DeleteBlockchainEventSubscription400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteBlockchainEventSubscription400ResponseWithDefaults instantiates a new DeleteBlockchainEventSubscription400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteBlockchainEventSubscription401Response instantiates a new DeleteBlockchainEventSubscription401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteBlockchainEventSubscription401ResponseWithDefaults instantiates a new DeleteBlockchainEventSubscription401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteBlockchainEventSubscription403Response instantiates a new DeleteBlockchainEventSubscription403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteBlockchainEventSubscription403ResponseWithDefaults instantiates a new DeleteBlockchainEventSubscription403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteBlockchainEventSubscriptionR instantiates a new DeleteBlockchainEventSubscriptionR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteBlockchainEventSubscriptionRData instantiates a new DeleteBlockchainEventSubscriptionRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteBlockchainEventSubscriptionRDataWithDefaults instantiates a new DeleteBlockchainEventSubscriptionRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteBlockchainEventSubscriptionRI instantiates a new DeleteBlockchainEventSubscriptionRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteBlockchainEventSubscriptionRIWithDefaults instantiates a new DeleteBlockchainEventSubscriptionRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteBlockchainEventSubscriptionRWithDefaults instantiates a new DeleteBlockchainEventSubscriptionR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewChangeAddresses400Response instantiates a new DeriveAndSyncNewChangeAddresses400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewChangeAddresses400ResponseWithDefaults instantiates a new DeriveAndSyncNewChangeAddresses400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewChangeAddresses401Response instantiates a new DeriveAndSyncNewChangeAddresses401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewChangeAddresses401ResponseWithDefaults instantiates a new DeriveAndSyncNewChangeAddresses401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewChangeAddresses403Response instantiates a new DeriveAndSyncNewChangeAddresses403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewChangeAddresses403ResponseWithDefaults instantiates a new DeriveAndSyncNewChangeAddresses403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewChangeAddressesR instantiates a new DeriveAndSyncNewChangeAddressesR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewChangeAddressesRB instantiates a new DeriveAndSyncNewChangeAddressesRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewChangeAddressesRBData instantiates a new DeriveAndSyncNewChangeAddressesRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewChangeAddressesRBDataItem instantiates a new DeriveAndSyncNewChangeAddressesRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewChangeAddressesRBDataItemWithDefaults instantiates a new DeriveAndSyncNewChangeAddressesRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewChangeAddressesRBDataWithDefaults instantiates a new DeriveAndSyncNewChangeAddressesRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewChangeAddressesRBWithDefaults instantiates a new DeriveAndSyncNewChangeAddressesRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewChangeAddressesRData instantiates a new DeriveAndSyncNewChangeAddressesRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewChangeAddressesRDataWithDefaults instantiates a new DeriveAndSyncNewChangeAddressesRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewChangeAddressesRI instantiates a new DeriveAndSyncNewChangeAddressesRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewChangeAddressesRIWithDefaults instantiates a new DeriveAndSyncNewChangeAddressesRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewChangeAddressesRWithDefaults instantiates a new DeriveAndSyncNewChangeAddressesR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewReceivingAddresses400Response instantiates a new DeriveAndSyncNewReceivingAddresses400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewReceivingAddresses400ResponseWithDefaults instantiates a new DeriveAndSyncNewReceivingAddresses400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewReceivingAddresses401Response instantiates a new DeriveAndSyncNewReceivingAddresses401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewReceivingAddresses401ResponseWithDefaults instantiates a new DeriveAndSyncNewReceivingAddresses401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewReceivingAddresses403Response instantiates a new DeriveAndSyncNewReceivingAddresses403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewReceivingAddresses403ResponseWithDefaults instantiates a new DeriveAndSyncNewReceivingAddresses403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewReceivingAddressesR instantiates a new DeriveAndSyncNewReceivingAddressesR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewReceivingAddressesRB instantiates a new DeriveAndSyncNewReceivingAddressesRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewReceivingAddressesRBData instantiates a new DeriveAndSyncNewReceivingAddressesRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewReceivingAddressesRBDataItem instantiates a new DeriveAndSyncNewReceivingAddressesRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewReceivingAddressesRBDataItemWithDefaults instantiates a new DeriveAndSyncNewReceivingAddressesRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewReceivingAddressesRBDataWithDefaults instantiates a new DeriveAndSyncNewReceivingAddressesRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewReceivingAddressesRBWithDefaults instantiates a new DeriveAndSyncNewReceivingAddressesRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewReceivingAddressesRData instantiates a new DeriveAndSyncNewReceivingAddressesRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewReceivingAddressesRDataWithDefaults instantiates a new DeriveAndSyncNewReceivingAddressesRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewReceivingAddressesRI instantiates a new DeriveAndSyncNewReceivingAddressesRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveAndSyncNewReceivingAddressesRIWithDefaults instantiates a new DeriveAndSyncNewReceivingAddressesRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveAndSyncNewReceivingAddressesRWithDefaults instantiates a new DeriveAndSyncNewReceivingAddressesR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses400Response instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses400ResponseWithDefaults instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses401Response instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses401ResponseWithDefaults instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses403Response instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses403ResponseWithDefaults instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesR instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRData instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRDataWithDefaults instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRI instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRIAddressesInner instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRIAddressesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRIAddressesInnerWithDefaults instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRIAddressesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRIWithDefaults instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRWithDefaults instantiates a new DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncodeXAddress400Response instantiates a new EncodeXAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncodeXAddress400ResponseWithDefaults instantiates a new EncodeXAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncodeXAddress401Response instantiates a new EncodeXAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncodeXAddress401ResponseWithDefaults instantiates a new EncodeXAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncodeXAddress403Response instantiates a new EncodeXAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncodeXAddress403ResponseWithDefaults instantiates a new EncodeXAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncodeXAddressR instantiates a new EncodeXAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncodeXAddressRData instantiates a new EncodeXAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncodeXAddressRDataWithDefaults instantiates a new EncodeXAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncodeXAddressRI instantiates a new EncodeXAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncodeXAddressRIWithDefaults instantiates a new EncodeXAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncodeXAddressRWithDefaults instantiates a new EncodeXAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEndpointNotAllowedForApiKey instantiates a new EndpointNotAllowedForApiKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEndpointNotAllowedForApiKeyWithDefaults instantiates a new EndpointNotAllowedForApiKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEndpointNotAllowedForPlan instantiates a new EndpointNotAllowedForPlan object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEndpointNotAllowedForPlanWithDefaults instantiates a new EndpointNotAllowedForPlan object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateGasLimit400Response instantiates a new EstimateGasLimit400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateGasLimit400ResponseWithDefaults instantiates a new EstimateGasLimit400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateGasLimit401Response instantiates a new EstimateGasLimit401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateGasLimit401ResponseWithDefaults instantiates a new EstimateGasLimit401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateGasLimit403Response instantiates a new EstimateGasLimit403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateGasLimit403ResponseWithDefaults instantiates a new EstimateGasLimit403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateGasLimitR instantiates a new EstimateGasLimitR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateGasLimitRB instantiates a new EstimateGasLimitRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateGasLimitRBData instantiates a new EstimateGasLimitRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateGasLimitRBDataItem instantiates a new EstimateGasLimitRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateGasLimitRBDataItemWithDefaults instantiates a new EstimateGasLimitRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateGasLimitRBDataWithDefaults instantiates a new EstimateGasLimitRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateGasLimitRBWithDefaults instantiates a new EstimateGasLimitRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateGasLimitRData instantiates a new EstimateGasLimitRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateGasLimitRDataWithDefaults instantiates a new EstimateGasLimitRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateGasLimitRI instantiates a new EstimateGasLimitRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateGasLimitRIWithDefaults instantiates a new EstimateGasLimitRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateGasLimitRWithDefaults instantiates a new EstimateGasLimitR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTokenGasLimit400Response instantiates a new EstimateTokenGasLimit400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTokenGasLimit400ResponseWithDefaults instantiates a new EstimateTokenGasLimit400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTokenGasLimit401Response instantiates a new EstimateTokenGasLimit401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTokenGasLimit401ResponseWithDefaults instantiates a new EstimateTokenGasLimit401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTokenGasLimit403Response instantiates a new EstimateTokenGasLimit403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTokenGasLimit403ResponseWithDefaults instantiates a new EstimateTokenGasLimit403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTokenGasLimitR instantiates a new EstimateTokenGasLimitR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTokenGasLimitRB instantiates a new EstimateTokenGasLimitRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTokenGasLimitRBData instantiates a new EstimateTokenGasLimitRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTokenGasLimitRBDataItem instantiates a new EstimateTokenGasLimitRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTokenGasLimitRBDataItemWithDefaults instantiates a new EstimateTokenGasLimitRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTokenGasLimitRBDataWithDefaults instantiates a new EstimateTokenGasLimitRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTokenGasLimitRBWithDefaults instantiates a new EstimateTokenGasLimitRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTokenGasLimitRData instantiates a new EstimateTokenGasLimitRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTokenGasLimitRDataWithDefaults instantiates a new EstimateTokenGasLimitRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTokenGasLimitRI instantiates a new EstimateTokenGasLimitRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTokenGasLimitRIWithDefaults instantiates a new EstimateTokenGasLimitRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTokenGasLimitRWithDefaults instantiates a new EstimateTokenGasLimitR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTransactionSmartFee400Response instantiates a new EstimateTransactionSmartFee400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTransactionSmartFee400ResponseWithDefaults instantiates a new EstimateTransactionSmartFee400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTransactionSmartFee401Response instantiates a new EstimateTransactionSmartFee401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTransactionSmartFee401ResponseWithDefaults instantiates a new EstimateTransactionSmartFee401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTransactionSmartFee403Response instantiates a new EstimateTransactionSmartFee403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTransactionSmartFee403ResponseWithDefaults instantiates a new EstimateTransactionSmartFee403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTransactionSmartFee501Response instantiates a new EstimateTransactionSmartFee501Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTransactionSmartFee501ResponseWithDefaults instantiates a new EstimateTransactionSmartFee501Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTransactionSmartFeeR instantiates a new EstimateTransactionSmartFeeR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTransactionSmartFeeRData instantiates a new EstimateTransactionSmartFeeRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTransactionSmartFeeRDataWithDefaults instantiates a new EstimateTransactionSmartFeeRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTransactionSmartFeeRI instantiates a new EstimateTransactionSmartFeeRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateTransactionSmartFeeRIWithDefaults instantiates a new EstimateTransactionSmartFeeRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateTransactionSmartFeeRWithDefaults instantiates a new EstimateTransactionSmartFeeR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFeatureMainnetsNotAllowedForPlan instantiates a new FeatureMainnetsNotAllowedForPlan object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFeatureMainnetsNotAllowedForPlanWithDefaults instantiates a new FeatureMainnetsNotAllowedForPlan object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenerateDepositAddress400Response instantiates a new GenerateDepositAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenerateDepositAddress400ResponseWithDefaults instantiates a new GenerateDepositAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenerateDepositAddress401Response instantiates a new GenerateDepositAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenerateDepositAddress401ResponseWithDefaults instantiates a new GenerateDepositAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenerateDepositAddress403Response instantiates a new GenerateDepositAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenerateDepositAddress403ResponseWithDefaults instantiates a new GenerateDepositAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenerateDepositAddressR instantiates a new GenerateDepositAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenerateDepositAddressRB instantiates a new GenerateDepositAddressRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenerateDepositAddressRBData instantiates a new GenerateDepositAddressRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenerateDepositAddressRBDataItem instantiates a new GenerateDepositAddressRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenerateDepositAddressRBDataItemWithDefaults instantiates a new GenerateDepositAddressRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenerateDepositAddressRBDataWithDefaults instantiates a new GenerateDepositAddressRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenerateDepositAddressRBWithDefaults instantiates a new GenerateDepositAddressRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenerateDepositAddressRData instantiates a new GenerateDepositAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenerateDepositAddressRDataWithDefaults instantiates a new GenerateDepositAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenerateDepositAddressRI instantiates a new GenerateDepositAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenerateDepositAddressRIWithDefaults instantiates a new GenerateDepositAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenerateDepositAddressRWithDefaults instantiates a new GenerateDepositAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressBalance400Response instantiates a new GetAddressBalance400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressBalance400ResponseWithDefaults instantiates a new GetAddressBalance400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressBalance401Response instantiates a new GetAddressBalance401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressBalance401ResponseWithDefaults instantiates a new GetAddressBalance401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressBalance403Response instantiates a new GetAddressBalance403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressBalance403ResponseWithDefaults instantiates a new GetAddressBalance403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressBalanceR instantiates a new GetAddressBalanceR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressBalanceRData instantiates a new GetAddressBalanceRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressBalanceRDataWithDefaults instantiates a new GetAddressBalanceRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressBalanceRI instantiates a new GetAddressBalanceRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressBalanceRIConfirmedBalance instantiates a new GetAddressBalanceRIConfirmedBalance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressBalanceRIConfirmedBalanceWithDefaults instantiates a new GetAddressBalanceRIConfirmedBalance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressBalanceRIWithDefaults instantiates a new GetAddressBalanceRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressBalanceRWithDefaults instantiates a new GetAddressBalanceR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetails400Response instantiates a new GetAddressDetails400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetails400ResponseWithDefaults instantiates a new GetAddressDetails400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetails401Response instantiates a new GetAddressDetails401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetails401ResponseWithDefaults instantiates a new GetAddressDetails401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetails403Response instantiates a new GetAddressDetails403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetails403ResponseWithDefaults instantiates a new GetAddressDetails403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsFromCallback400Response instantiates a new GetAddressDetailsFromCallback400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsFromCallback400ResponseWithDefaults instantiates a new GetAddressDetailsFromCallback400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsFromCallback401Response instantiates a new GetAddressDetailsFromCallback401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsFromCallback401ResponseWithDefaults instantiates a new GetAddressDetailsFromCallback401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsFromCallback403Response instantiates a new GetAddressDetailsFromCallback403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsFromCallback403ResponseWithDefaults instantiates a new GetAddressDetailsFromCallback403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsFromCallback404Response instantiates a new GetAddressDetailsFromCallback404Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsFromCallback404ResponseWithDefaults instantiates a new GetAddressDetailsFromCallback404Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsFromCallbackR instantiates a new GetAddressDetailsFromCallbackR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsFromCallbackRData instantiates a new GetAddressDetailsFromCallbackRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsFromCallbackRDataWithDefaults instantiates a new GetAddressDetailsFromCallbackRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsFromCallbackRI instantiates a new GetAddressDetailsFromCallbackRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsFromCallbackRIConfirmedBalance instantiates a new GetAddressDetailsFromCallbackRIConfirmedBalance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsFromCallbackRIConfirmedBalanceWithDefaults instantiates a new GetAddressDetailsFromCallbackRIConfirmedBalance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsFromCallbackRITotalReceived instantiates a new GetAddressDetailsFromCallbackRITotalReceived object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsFromCallbackRITotalReceivedWithDefaults instantiates a new GetAddressDetailsFromCallbackRITotalReceived object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsFromCallbackRITotalSpent instantiates a new GetAddressDetailsFromCallbackRITotalSpent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsFromCallbackRITotalSpentWithDefaults instantiates a new GetAddressDetailsFromCallbackRITotalSpent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsFromCallbackRIWithDefaults instantiates a new GetAddressDetailsFromCallbackRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsFromCallbackRWithDefaults instantiates a new GetAddressDetailsFromCallbackR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsR instantiates a new GetAddressDetailsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsRData instantiates a new GetAddressDetailsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsRDataWithDefaults instantiates a new GetAddressDetailsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsRI instantiates a new GetAddressDetailsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsRIConfirmedBalance instantiates a new GetAddressDetailsRIConfirmedBalance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsRIConfirmedBalanceWithDefaults instantiates a new GetAddressDetailsRIConfirmedBalance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsRITotalReceived instantiates a new GetAddressDetailsRITotalReceived object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsRITotalReceivedWithDefaults instantiates a new GetAddressDetailsRITotalReceived object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsRITotalSpent instantiates a new GetAddressDetailsRITotalSpent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAddressDetailsRITotalSpentWithDefaults instantiates a new GetAddressDetailsRITotalSpent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsRIWithDefaults instantiates a new GetAddressDetailsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAddressDetailsRWithDefaults instantiates a new GetAddressDetailsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetID400Response instantiates a new GetAssetDetailsByAssetID400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetID400ResponseWithDefaults instantiates a new GetAssetDetailsByAssetID400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetID401Response instantiates a new GetAssetDetailsByAssetID401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetID401ResponseWithDefaults instantiates a new GetAssetDetailsByAssetID401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetID403Response instantiates a new GetAssetDetailsByAssetID403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetID403ResponseWithDefaults instantiates a new GetAssetDetailsByAssetID403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetIDR instantiates a new GetAssetDetailsByAssetIDR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetIDRData instantiates a new GetAssetDetailsByAssetIDRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetIDRDataWithDefaults instantiates a new GetAssetDetailsByAssetIDRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetIDRI instantiates a new GetAssetDetailsByAssetIDRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetIDRIAssetLogo instantiates a new GetAssetDetailsByAssetIDRIAssetLogo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetIDRIAssetLogoWithDefaults instantiates a new GetAssetDetailsByAssetIDRIAssetLogo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetIDRILatestRate instantiates a new GetAssetDetailsByAssetIDRILatestRate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetIDRILatestRateWithDefaults instantiates a new GetAssetDetailsByAssetIDRILatestRate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetIDRISC instantiates a new GetAssetDetailsByAssetIDRISC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetIDRISCWithDefaults instantiates a new GetAssetDetailsByAssetIDRISC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetIDRIWithDefaults instantiates a new GetAssetDetailsByAssetIDRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetIDRWithDefaults instantiates a new GetAssetDetailsByAssetIDR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetSymbol400Response instantiates a new GetAssetDetailsByAssetSymbol400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetSymbol400ResponseWithDefaults instantiates a new GetAssetDetailsByAssetSymbol400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetSymbol401Response instantiates a new GetAssetDetailsByAssetSymbol401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetSymbol401ResponseWithDefaults instantiates a new GetAssetDetailsByAssetSymbol401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetSymbol403Response instantiates a new GetAssetDetailsByAssetSymbol403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetSymbol403ResponseWithDefaults instantiates a new GetAssetDetailsByAssetSymbol403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetSymbolR instantiates a new GetAssetDetailsByAssetSymbolR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetSymbolRData instantiates a new GetAssetDetailsByAssetSymbolRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetSymbolRDataWithDefaults instantiates a new GetAssetDetailsByAssetSymbolRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetSymbolRI instantiates a new GetAssetDetailsByAssetSymbolRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetSymbolRISC instantiates a new GetAssetDetailsByAssetSymbolRISC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAssetDetailsByAssetSymbolRISCWithDefaults instantiates a new GetAssetDetailsByAssetSymbolRISC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetSymbolRIWithDefaults instantiates a new GetAssetDetailsByAssetSymbolRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAssetDetailsByAssetSymbolRWithDefaults instantiates a new GetAssetDetailsByAssetSymbolR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockchainEventSubscriptionDetailsByReferenceID400Response instantiates a new GetBlockchainEventSubscriptionDetailsByReferenceID400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockchainEventSubscriptionDetailsByReferenceID400ResponseWithDefaults instantiates a new GetBlockchainEventSubscriptionDetailsByReferenceID400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockchainEventSubscriptionDetailsByReferenceID401Response instantiates a new GetBlockchainEventSubscriptionDetailsByReferenceID401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockchainEventSubscriptionDetailsByReferenceID401ResponseWithDefaults instantiates a new GetBlockchainEventSubscriptionDetailsByReferenceID401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockchainEventSubscriptionDetailsByReferenceID403Response instantiates a new GetBlockchainEventSubscriptionDetailsByReferenceID403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockchainEventSubscriptionDetailsByReferenceID403ResponseWithDefaults instantiates a new GetBlockchainEventSubscriptionDetailsByReferenceID403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockchainEventSubscriptionDetailsByReferenceIDR instantiates a new GetBlockchainEventSubscriptionDetailsByReferenceIDR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockchainEventSubscriptionDetailsByReferenceIDRData instantiates a new GetBlockchainEventSubscriptionDetailsByReferenceIDRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockchainEventSubscriptionDetailsByReferenceIDRDataWithDefaults instantiates a new GetBlockchainEventSubscriptionDetailsByReferenceIDRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockchainEventSubscriptionDetailsByReferenceIDRI instantiates a new GetBlockchainEventSubscriptionDetailsByReferenceIDRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockchainEventSubscriptionDetailsByReferenceIDRIWithDefaults instantiates a new GetBlockchainEventSubscriptionDetailsByReferenceIDRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockchainEventSubscriptionDetailsByReferenceIDRWithDefaults instantiates a new GetBlockchainEventSubscriptionDetailsByReferenceIDR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHash400Response instantiates a new GetBlockDetailsByBlockHash400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHash400ResponseWithDefaults instantiates a new GetBlockDetailsByBlockHash400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHash401Response instantiates a new GetBlockDetailsByBlockHash401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHash401ResponseWithDefaults instantiates a new GetBlockDetailsByBlockHash401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHash403Response instantiates a new GetBlockDetailsByBlockHash403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHash403ResponseWithDefaults instantiates a new GetBlockDetailsByBlockHash403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallback400Response instantiates a new GetBlockDetailsByBlockHashFromCallback400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallback400ResponseWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallback400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallback401Response instantiates a new GetBlockDetailsByBlockHashFromCallback401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallback401ResponseWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallback401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallback403Response instantiates a new GetBlockDetailsByBlockHashFromCallback403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallback403ResponseWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallback403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackR instantiates a new GetBlockDetailsByBlockHashFromCallbackR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRData instantiates a new GetBlockDetailsByBlockHashFromCallbackRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRDataWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRI instantiates a new GetBlockDetailsByBlockHashFromCallbackRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRIBSB instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRIBSBC instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRIBSBCWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRIBSBSC instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRIBSBSCWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRIBSBWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRIBSD instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRIBSD2 instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRIBSD2WithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRIBSDWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRIBSE instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRIBSEC instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRIBSECWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRIBSEWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRIBSL instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRIBSLWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRIBST instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBST object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRIBSTWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBST object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRIBSX instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSX object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRIBSXWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSX object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRIBSZ instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRIBSZ2 instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSZ2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashFromCallbackRIBSZ2WithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSZ2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRIBSZWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRIWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashFromCallbackRWithDefaults instantiates a new GetBlockDetailsByBlockHashFromCallbackR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashR instantiates a new GetBlockDetailsByBlockHashR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashRData instantiates a new GetBlockDetailsByBlockHashRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashRDataWithDefaults instantiates a new GetBlockDetailsByBlockHashRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashRI instantiates a new GetBlockDetailsByBlockHashRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashRIBSB instantiates a new GetBlockDetailsByBlockHashRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashRIBSBC instantiates a new GetBlockDetailsByBlockHashRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashRIBSBCWithDefaults instantiates a new GetBlockDetailsByBlockHashRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashRIBSBSC instantiates a new GetBlockDetailsByBlockHashRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashRIBSBSCWithDefaults instantiates a new GetBlockDetailsByBlockHashRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashRIBSBWithDefaults instantiates a new GetBlockDetailsByBlockHashRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashRIBSD instantiates a new GetBlockDetailsByBlockHashRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashRIBSD2 instantiates a new GetBlockDetailsByBlockHashRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashRIBSD2WithDefaults instantiates a new GetBlockDetailsByBlockHashRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashRIBSDWithDefaults instantiates a new GetBlockDetailsByBlockHashRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashRIBSE instantiates a new GetBlockDetailsByBlockHashRIBSE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashRIBSEC instantiates a new GetBlockDetailsByBlockHashRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashRIBSECWithDefaults instantiates a new GetBlockDetailsByBlockHashRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashRIBSEWithDefaults instantiates a new GetBlockDetailsByBlockHashRIBSE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashRIBSL instantiates a new GetBlockDetailsByBlockHashRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashRIBSLWithDefaults instantiates a new GetBlockDetailsByBlockHashRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashRIBSZ instantiates a new GetBlockDetailsByBlockHashRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashRIBSZ2 instantiates a new GetBlockDetailsByBlockHashRIBSZ2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHashRIBSZ2WithDefaults instantiates a new GetBlockDetailsByBlockHashRIBSZ2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashRIBSZWithDefaults instantiates a new GetBlockDetailsByBlockHashRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashRIWithDefaults instantiates a new GetBlockDetailsByBlockHashRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHashRWithDefaults instantiates a new GetBlockDetailsByBlockHashR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeight400Response instantiates a new GetBlockDetailsByBlockHeight400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeight400ResponseWithDefaults instantiates a new GetBlockDetailsByBlockHeight400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeight401Response instantiates a new GetBlockDetailsByBlockHeight401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeight401ResponseWithDefaults instantiates a new GetBlockDetailsByBlockHeight401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeight403Response instantiates a new GetBlockDetailsByBlockHeight403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeight403ResponseWithDefaults instantiates a new GetBlockDetailsByBlockHeight403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallback400Response instantiates a new GetBlockDetailsByBlockHeightFromCallback400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallback400ResponseWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallback400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallback401Response instantiates a new GetBlockDetailsByBlockHeightFromCallback401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallback401ResponseWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallback401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallback403Response instantiates a new GetBlockDetailsByBlockHeightFromCallback403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallback403ResponseWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallback403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackR instantiates a new GetBlockDetailsByBlockHeightFromCallbackR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRData instantiates a new GetBlockDetailsByBlockHeightFromCallbackRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRDataWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRI instantiates a new GetBlockDetailsByBlockHeightFromCallbackRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSB instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSBC instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSBCWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSBSC instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSBSCWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSBWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSD instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSD2 instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSD2WithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSDWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSE instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSEC instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSECWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSEWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSL instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSLWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSP instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSP object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSPWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSP object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRIBST instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBST object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSTWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBST object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSX instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSX object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSXWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSX object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSZ instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSZ2 instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSZ2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSZ2WithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSZ2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRIBSZWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRIWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightFromCallbackRWithDefaults instantiates a new GetBlockDetailsByBlockHeightFromCallbackR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightR instantiates a new GetBlockDetailsByBlockHeightR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightRData instantiates a new GetBlockDetailsByBlockHeightRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightRDataWithDefaults instantiates a new GetBlockDetailsByBlockHeightRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightRI instantiates a new GetBlockDetailsByBlockHeightRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightRIBSB instantiates a new GetBlockDetailsByBlockHeightRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightRIBSBC instantiates a new GetBlockDetailsByBlockHeightRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightRIBSBCWithDefaults instantiates a new GetBlockDetailsByBlockHeightRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightRIBSBSC instantiates a new GetBlockDetailsByBlockHeightRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightRIBSBSCWithDefaults instantiates a new GetBlockDetailsByBlockHeightRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightRIBSBWithDefaults instantiates a new GetBlockDetailsByBlockHeightRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightRIBSD instantiates a new GetBlockDetailsByBlockHeightRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightRIBSD2 instantiates a new GetBlockDetailsByBlockHeightRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightRIBSD2WithDefaults instantiates a new GetBlockDetailsByBlockHeightRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightRIBSDWithDefaults instantiates a new GetBlockDetailsByBlockHeightRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightRIBSE instantiates a new GetBlockDetailsByBlockHeightRIBSE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightRIBSEC instantiates a new GetBlockDetailsByBlockHeightRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightRIBSECWithDefaults instantiates a new GetBlockDetailsByBlockHeightRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightRIBSEWithDefaults instantiates a new GetBlockDetailsByBlockHeightRIBSE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightRIBSL instantiates a new GetBlockDetailsByBlockHeightRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightRIBSLWithDefaults instantiates a new GetBlockDetailsByBlockHeightRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightRIBSZ instantiates a new GetBlockDetailsByBlockHeightRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightRIBSZ2 instantiates a new GetBlockDetailsByBlockHeightRIBSZ2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBlockDetailsByBlockHeightRIBSZ2WithDefaults instantiates a new GetBlockDetailsByBlockHeightRIBSZ2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightRIBSZWithDefaults instantiates a new GetBlockDetailsByBlockHeightRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightRIWithDefaults instantiates a new GetBlockDetailsByBlockHeightRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBlockDetailsByBlockHeightRWithDefaults instantiates a new GetBlockDetailsByBlockHeightR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEIP1559FeeRecommendations400Response instantiates a new GetEIP1559FeeRecommendations400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEIP1559FeeRecommendations400ResponseWithDefaults instantiates a new GetEIP1559FeeRecommendations400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEIP1559FeeRecommendations401Response instantiates a new GetEIP1559FeeRecommendations401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEIP1559FeeRecommendations401ResponseWithDefaults instantiates a new GetEIP1559FeeRecommendations401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEIP1559FeeRecommendations403Response instantiates a new GetEIP1559FeeRecommendations403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEIP1559FeeRecommendations403ResponseWithDefaults instantiates a new GetEIP1559FeeRecommendations403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEIP1559FeeRecommendationsR instantiates a new GetEIP1559FeeRecommendationsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEIP1559FeeRecommendationsRData instantiates a new GetEIP1559FeeRecommendationsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEIP1559FeeRecommendationsRDataWithDefaults instantiates a new GetEIP1559FeeRecommendationsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEIP1559FeeRecommendationsRI instantiates a new GetEIP1559FeeRecommendationsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEIP1559FeeRecommendationsRIBaseFeePerGas instantiates a new GetEIP1559FeeRecommendationsRIBaseFeePerGas object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEIP1559FeeRecommendationsRIBaseFeePerGasWithDefaults instantiates a new GetEIP1559FeeRecommendationsRIBaseFeePerGas object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEIP1559FeeRecommendationsRIMaxFeePerGas instantiates a new GetEIP1559FeeRecommendationsRIMaxFeePerGas object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEIP1559FeeRecommendationsRIMaxFeePerGasWithDefaults instantiates a new GetEIP1559FeeRecommendationsRIMaxFeePerGas object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEIP1559FeeRecommendationsRIMaxPriorityFeePerGas instantiates a new GetEIP1559FeeRecommendationsRIMaxPriorityFeePerGas object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEIP1559FeeRecommendationsRIMaxPriorityFeePerGasWithDefaults instantiates a new GetEIP1559FeeRecommendationsRIMaxPriorityFeePerGas object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEIP1559FeeRecommendationsRIWithDefaults instantiates a new GetEIP1559FeeRecommendationsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEIP1559FeeRecommendationsRWithDefaults instantiates a new GetEIP1559FeeRecommendationsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetsIDs400Response instantiates a new GetExchangeRateByAssetsIDs400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetsIDs400ResponseWithDefaults instantiates a new GetExchangeRateByAssetsIDs400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetsIDs401Response instantiates a new GetExchangeRateByAssetsIDs401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetsIDs401ResponseWithDefaults instantiates a new GetExchangeRateByAssetsIDs401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetsIDs403Response instantiates a new GetExchangeRateByAssetsIDs403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetsIDs403ResponseWithDefaults instantiates a new GetExchangeRateByAssetsIDs403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetsIDs422Response instantiates a new GetExchangeRateByAssetsIDs422Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetsIDs422ResponseWithDefaults instantiates a new GetExchangeRateByAssetsIDs422Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetsIDsR instantiates a new GetExchangeRateByAssetsIDsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetsIDsRData instantiates a new GetExchangeRateByAssetsIDsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetsIDsRDataWithDefaults instantiates a new GetExchangeRateByAssetsIDsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetsIDsRI instantiates a new GetExchangeRateByAssetsIDsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetsIDsRIWithDefaults instantiates a new GetExchangeRateByAssetsIDsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetsIDsRWithDefaults instantiates a new GetExchangeRateByAssetsIDsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetSymbols400Response instantiates a new GetExchangeRateByAssetSymbols400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetSymbols400ResponseWithDefaults instantiates a new GetExchangeRateByAssetSymbols400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetSymbols401Response instantiates a new GetExchangeRateByAssetSymbols401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetSymbols401ResponseWithDefaults instantiates a new GetExchangeRateByAssetSymbols401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetSymbols403Response instantiates a new GetExchangeRateByAssetSymbols403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetSymbols403ResponseWithDefaults instantiates a new GetExchangeRateByAssetSymbols403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetSymbols422Response instantiates a new GetExchangeRateByAssetSymbols422Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetSymbols422ResponseWithDefaults instantiates a new GetExchangeRateByAssetSymbols422Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetSymbolsR instantiates a new GetExchangeRateByAssetSymbolsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetSymbolsRData instantiates a new GetExchangeRateByAssetSymbolsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetSymbolsRDataWithDefaults instantiates a new GetExchangeRateByAssetSymbolsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetSymbolsRI instantiates a new GetExchangeRateByAssetSymbolsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetExchangeRateByAssetSymbolsRIWithDefaults instantiates a new GetExchangeRateByAssetSymbolsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetExchangeRateByAssetSymbolsRWithDefaults instantiates a new GetExchangeRateByAssetSymbolsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetFeeAddressDetails400Response instantiates a new GetFeeAddressDetails400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetFeeAddressDetails400ResponseWithDefaults instantiates a new GetFeeAddressDetails400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetFeeAddressDetails401Response instantiates a new GetFeeAddressDetails401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetFeeAddressDetails401ResponseWithDefaults instantiates a new GetFeeAddressDetails401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetFeeAddressDetails403Response instantiates a new GetFeeAddressDetails403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetFeeAddressDetails403ResponseWithDefaults instantiates a new GetFeeAddressDetails403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetFeeAddressDetailsR instantiates a new GetFeeAddressDetailsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetFeeAddressDetailsRData instantiates a new GetFeeAddressDetailsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetFeeAddressDetailsRDataWithDefaults instantiates a new GetFeeAddressDetailsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetFeeAddressDetailsRI instantiates a new GetFeeAddressDetailsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetFeeAddressDetailsRIBalance instantiates a new GetFeeAddressDetailsRIBalance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetFeeAddressDetailsRIBalanceWithDefaults instantiates a new GetFeeAddressDetailsRIBalance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetFeeAddressDetailsRIWithDefaults instantiates a new GetFeeAddressDetailsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetFeeAddressDetailsRWithDefaults instantiates a new GetFeeAddressDetailsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetFeeRecommendations400Response instantiates a new GetFeeRecommendations400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetFeeRecommendations400ResponseWithDefaults instantiates a new GetFeeRecommendations400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetFeeRecommendations401Response instantiates a new GetFeeRecommendations401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetFeeRecommendations401ResponseWithDefaults instantiates a new GetFeeRecommendations401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetFeeRecommendations403Response instantiates a new GetFeeRecommendations403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetFeeRecommendations403ResponseWithDefaults instantiates a new GetFeeRecommendations403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetFeeRecommendationsR instantiates a new GetFeeRecommendationsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetFeeRecommendationsRData instantiates a new GetFeeRecommendationsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetFeeRecommendationsRDataWithDefaults instantiates a new GetFeeRecommendationsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetFeeRecommendationsRI instantiates a new GetFeeRecommendationsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetFeeRecommendationsRIWithDefaults instantiates a new GetFeeRecommendationsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetFeeRecommendationsRWithDefaults instantiates a new GetFeeRecommendationsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubAssets400Response instantiates a new GetHDWalletXPubYPubZPubAssets400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubAssets400ResponseWithDefaults instantiates a new GetHDWalletXPubYPubZPubAssets400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubAssets401Response instantiates a new GetHDWalletXPubYPubZPubAssets401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubAssets401ResponseWithDefaults instantiates a new GetHDWalletXPubYPubZPubAssets401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubAssets403Response instantiates a new GetHDWalletXPubYPubZPubAssets403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubAssets403ResponseWithDefaults instantiates a new GetHDWalletXPubYPubZPubAssets403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubAssets422Response instantiates a new GetHDWalletXPubYPubZPubAssets422Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubAssets422ResponseWithDefaults instantiates a new GetHDWalletXPubYPubZPubAssets422Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubAssetsR instantiates a new GetHDWalletXPubYPubZPubAssetsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubAssetsRData instantiates a new GetHDWalletXPubYPubZPubAssetsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubAssetsRDataWithDefaults instantiates a new GetHDWalletXPubYPubZPubAssetsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubAssetsRI instantiates a new GetHDWalletXPubYPubZPubAssetsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubAssetsRIConfirmedBalance instantiates a new GetHDWalletXPubYPubZPubAssetsRIConfirmedBalance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubAssetsRIConfirmedBalanceWithDefaults instantiates a new GetHDWalletXPubYPubZPubAssetsRIConfirmedBalance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubAssetsRIFungibleTokensInner instantiates a new GetHDWalletXPubYPubZPubAssetsRIFungibleTokensInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubAssetsRIFungibleTokensInnerWithDefaults instantiates a new GetHDWalletXPubYPubZPubAssetsRIFungibleTokensInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubAssetsRINonFungibleTokensInner instantiates a new GetHDWalletXPubYPubZPubAssetsRINonFungibleTokensInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubAssetsRINonFungibleTokensInnerWithDefaults instantiates a new GetHDWalletXPubYPubZPubAssetsRINonFungibleTokensInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubAssetsRIWithDefaults instantiates a new GetHDWalletXPubYPubZPubAssetsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubAssetsRWithDefaults instantiates a new GetHDWalletXPubYPubZPubAssetsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubDetails400Response instantiates a new GetHDWalletXPubYPubZPubDetails400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubDetails400ResponseWithDefaults instantiates a new GetHDWalletXPubYPubZPubDetails400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubDetails401Response instantiates a new GetHDWalletXPubYPubZPubDetails401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubDetails401ResponseWithDefaults instantiates a new GetHDWalletXPubYPubZPubDetails401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubDetails403Response instantiates a new GetHDWalletXPubYPubZPubDetails403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubDetails403ResponseWithDefaults instantiates a new GetHDWalletXPubYPubZPubDetails403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubDetails422Response instantiates a new GetHDWalletXPubYPubZPubDetails422Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubDetails422ResponseWithDefaults instantiates a new GetHDWalletXPubYPubZPubDetails422Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubDetailsR instantiates a new GetHDWalletXPubYPubZPubDetailsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubDetailsRData instantiates a new GetHDWalletXPubYPubZPubDetailsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubDetailsRDataWithDefaults instantiates a new GetHDWalletXPubYPubZPubDetailsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubDetailsRI instantiates a new GetHDWalletXPubYPubZPubDetailsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHDWalletXPubYPubZPubDetailsRIWithDefaults instantiates a new GetHDWalletXPubYPubZPubDetailsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHDWalletXPubYPubZPubDetailsRWithDefaults instantiates a new GetHDWalletXPubYPubZPubDetailsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetInternalTransactionByTransactionHashAndOperationId400Response instantiates a new GetInternalTransactionByTransactionHashAndOperationId400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetInternalTransactionByTransactionHashAndOperationId400ResponseWithDefaults instantiates a new GetInternalTransactionByTransactionHashAndOperationId400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetInternalTransactionByTransactionHashAndOperationId401Response instantiates a new GetInternalTransactionByTransactionHashAndOperationId401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetInternalTransactionByTransactionHashAndOperationId401ResponseWithDefaults instantiates a new GetInternalTransactionByTransactionHashAndOperationId401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetInternalTransactionByTransactionHashAndOperationId403Response instantiates a new GetInternalTransactionByTransactionHashAndOperationId403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetInternalTransactionByTransactionHashAndOperationId403ResponseWithDefaults instantiates a new GetInternalTransactionByTransactionHashAndOperationId403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetInternalTransactionByTransactionHashAndOperationId404Response instantiates a new GetInternalTransactionByTransactionHashAndOperationId404Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetInternalTransactionByTransactionHashAndOperationId404ResponseWithDefaults instantiates a new GetInternalTransactionByTransactionHashAndOperationId404Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetInternalTransactionByTransactionHashAndOperationIdR instantiates a new GetInternalTransactionByTransactionHashAndOperationIdR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetInternalTransactionByTransactionHashAndOperationIdRData instantiates a new GetInternalTransactionByTransactionHashAndOperationIdRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetInternalTransactionByTransactionHashAndOperationIdRDataWithDefaults instantiates a new GetInternalTransactionByTransactionHashAndOperationIdRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetInternalTransactionByTransactionHashAndOperationIdRI instantiates a new GetInternalTransactionByTransactionHashAndOperationIdRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetInternalTransactionByTransactionHashAndOperationIdRIWithDefaults instantiates a new GetInternalTransactionByTransactionHashAndOperationIdRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetInternalTransactionByTransactionHashAndOperationIdRWithDefaults instantiates a new GetInternalTransactionByTransactionHashAndOperationIdR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlock400Response instantiates a new GetLastMinedBlock400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlock400ResponseWithDefaults instantiates a new GetLastMinedBlock400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlock401Response instantiates a new GetLastMinedBlock401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlock401ResponseWithDefaults instantiates a new GetLastMinedBlock401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlock403Response instantiates a new GetLastMinedBlock403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlock403ResponseWithDefaults instantiates a new GetLastMinedBlock403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlockR instantiates a new GetLastMinedBlockR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlockRData instantiates a new GetLastMinedBlockRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlockRDataWithDefaults instantiates a new GetLastMinedBlockRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlockRI instantiates a new GetLastMinedBlockRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlockRIBSB instantiates a new GetLastMinedBlockRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlockRIBSBC instantiates a new GetLastMinedBlockRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlockRIBSBCWithDefaults instantiates a new GetLastMinedBlockRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlockRIBSBSC instantiates a new GetLastMinedBlockRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlockRIBSBSCWithDefaults instantiates a new GetLastMinedBlockRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlockRIBSBWithDefaults instantiates a new GetLastMinedBlockRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlockRIBSD instantiates a new GetLastMinedBlockRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlockRIBSD2 instantiates a new GetLastMinedBlockRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlockRIBSD2WithDefaults instantiates a new GetLastMinedBlockRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlockRIBSDWithDefaults instantiates a new GetLastMinedBlockRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlockRIBSE instantiates a new GetLastMinedBlockRIBSE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlockRIBSEC instantiates a new GetLastMinedBlockRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlockRIBSECWithDefaults instantiates a new GetLastMinedBlockRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlockRIBSEWithDefaults instantiates a new GetLastMinedBlockRIBSE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlockRIBSL instantiates a new GetLastMinedBlockRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlockRIBSLWithDefaults instantiates a new GetLastMinedBlockRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlockRIBSZ instantiates a new GetLastMinedBlockRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlockRIBSZ2 instantiates a new GetLastMinedBlockRIBSZ2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLastMinedBlockRIBSZ2WithDefaults instantiates a new GetLastMinedBlockRIBSZ2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlockRIBSZWithDefaults instantiates a new GetLastMinedBlockRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlockRIWithDefaults instantiates a new GetLastMinedBlockRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLastMinedBlockRWithDefaults instantiates a new GetLastMinedBlockR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedXRPRippleBlock400Response instantiates a new GetLatestMinedXRPRippleBlock400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedXRPRippleBlock400ResponseWithDefaults instantiates a new GetLatestMinedXRPRippleBlock400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedXRPRippleBlock401Response instantiates a new GetLatestMinedXRPRippleBlock401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedXRPRippleBlock401ResponseWithDefaults instantiates a new GetLatestMinedXRPRippleBlock401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedXRPRippleBlock403Response instantiates a new GetLatestMinedXRPRippleBlock403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedXRPRippleBlock403ResponseWithDefaults instantiates a new GetLatestMinedXRPRippleBlock403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedXRPRippleBlockR instantiates a new GetLatestMinedXRPRippleBlockR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedXRPRippleBlockRData instantiates a new GetLatestMinedXRPRippleBlockRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedXRPRippleBlockRDataWithDefaults instantiates a new GetLatestMinedXRPRippleBlockRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedXRPRippleBlockRI instantiates a new GetLatestMinedXRPRippleBlockRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedXRPRippleBlockRITotalCoins instantiates a new GetLatestMinedXRPRippleBlockRITotalCoins object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedXRPRippleBlockRITotalCoinsWithDefaults instantiates a new GetLatestMinedXRPRippleBlockRITotalCoins object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedXRPRippleBlockRITotalFees instantiates a new GetLatestMinedXRPRippleBlockRITotalFees object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedXRPRippleBlockRITotalFeesWithDefaults instantiates a new GetLatestMinedXRPRippleBlockRITotalFees object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedXRPRippleBlockRIWithDefaults instantiates a new GetLatestMinedXRPRippleBlockRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedXRPRippleBlockRWithDefaults instantiates a new GetLatestMinedXRPRippleBlockR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedZilliqaBlock400Response instantiates a new GetLatestMinedZilliqaBlock400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedZilliqaBlock400ResponseWithDefaults instantiates a new GetLatestMinedZilliqaBlock400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedZilliqaBlock401Response instantiates a new GetLatestMinedZilliqaBlock401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedZilliqaBlock401ResponseWithDefaults instantiates a new GetLatestMinedZilliqaBlock401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedZilliqaBlock403Response instantiates a new GetLatestMinedZilliqaBlock403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedZilliqaBlock403ResponseWithDefaults instantiates a new GetLatestMinedZilliqaBlock403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedZilliqaBlockR instantiates a new GetLatestMinedZilliqaBlockR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedZilliqaBlockRData instantiates a new GetLatestMinedZilliqaBlockRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedZilliqaBlockRDataWithDefaults instantiates a new GetLatestMinedZilliqaBlockRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedZilliqaBlockRI instantiates a new GetLatestMinedZilliqaBlockRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetLatestMinedZilliqaBlockRIWithDefaults instantiates a new GetLatestMinedZilliqaBlockRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetLatestMinedZilliqaBlockRWithDefaults instantiates a new GetLatestMinedZilliqaBlockR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetNextAvailableNonce400Response instantiates a new GetNextAvailableNonce400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetNextAvailableNonce400ResponseWithDefaults instantiates a new GetNextAvailableNonce400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetNextAvailableNonce401Response instantiates a new GetNextAvailableNonce401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetNextAvailableNonce401ResponseWithDefaults instantiates a new GetNextAvailableNonce401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetNextAvailableNonce403Response instantiates a new GetNextAvailableNonce403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetNextAvailableNonce403ResponseWithDefaults instantiates a new GetNextAvailableNonce403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetNextAvailableNonceR instantiates a new GetNextAvailableNonceR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetNextAvailableNonceRData instantiates a new GetNextAvailableNonceRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetNextAvailableNonceRDataWithDefaults instantiates a new GetNextAvailableNonceRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetNextAvailableNonceRI instantiates a new GetNextAvailableNonceRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetNextAvailableNonceRIWithDefaults instantiates a new GetNextAvailableNonceRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetNextAvailableNonceRWithDefaults instantiates a new GetNextAvailableNonceR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetRawTransactionData400Response instantiates a new GetRawTransactionData400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetRawTransactionData400ResponseWithDefaults instantiates a new GetRawTransactionData400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetRawTransactionData401Response instantiates a new GetRawTransactionData401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetRawTransactionData401ResponseWithDefaults instantiates a new GetRawTransactionData401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetRawTransactionData403Response instantiates a new GetRawTransactionData403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetRawTransactionData403ResponseWithDefaults instantiates a new GetRawTransactionData403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetRawTransactionDataR instantiates a new GetRawTransactionDataR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetRawTransactionDataRData instantiates a new GetRawTransactionDataRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetRawTransactionDataRDataWithDefaults instantiates a new GetRawTransactionDataRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetRawTransactionDataRI instantiates a new GetRawTransactionDataRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetRawTransactionDataRIWithDefaults instantiates a new GetRawTransactionDataRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetRawTransactionDataRWithDefaults instantiates a new GetRawTransactionDataR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTokenDetailsByContractAddress400Response instantiates a new GetTokenDetailsByContractAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTokenDetailsByContractAddress400ResponseWithDefaults instantiates a new GetTokenDetailsByContractAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTokenDetailsByContractAddress401Response instantiates a new GetTokenDetailsByContractAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTokenDetailsByContractAddress401ResponseWithDefaults instantiates a new GetTokenDetailsByContractAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTokenDetailsByContractAddress403Response instantiates a new GetTokenDetailsByContractAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTokenDetailsByContractAddress403ResponseWithDefaults instantiates a new GetTokenDetailsByContractAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTokenDetailsByContractAddressR instantiates a new GetTokenDetailsByContractAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTokenDetailsByContractAddressRData instantiates a new GetTokenDetailsByContractAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTokenDetailsByContractAddressRDataWithDefaults instantiates a new GetTokenDetailsByContractAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTokenDetailsByContractAddressRI instantiates a new GetTokenDetailsByContractAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTokenDetailsByContractAddressRIWithDefaults instantiates a new GetTokenDetailsByContractAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTokenDetailsByContractAddressRWithDefaults instantiates a new GetTokenDetailsByContractAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionID400Response instantiates a new GetTransactionDetailsByTransactionID400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionID400ResponseWithDefaults instantiates a new GetTransactionDetailsByTransactionID400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionID401Response instantiates a new GetTransactionDetailsByTransactionID401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionID401ResponseWithDefaults instantiates a new GetTransactionDetailsByTransactionID401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionID403Response instantiates a new GetTransactionDetailsByTransactionID403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionID403ResponseWithDefaults instantiates a new GetTransactionDetailsByTransactionID403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionID404Response instantiates a new GetTransactionDetailsByTransactionID404Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionID404ResponseWithDefaults instantiates a new GetTransactionDetailsByTransactionID404Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallback400Response instantiates a new GetTransactionDetailsByTransactionIDFromCallback400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallback400ResponseWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallback400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallback401Response instantiates a new GetTransactionDetailsByTransactionIDFromCallback401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallback401ResponseWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallback401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallback403Response instantiates a new GetTransactionDetailsByTransactionIDFromCallback403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallback403ResponseWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallback403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackR instantiates a new GetTransactionDetailsByTransactionIDFromCallbackR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRData instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRDataWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRI instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSB instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBC instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBCVoutInner instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBCVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBCVoutInnerScriptPubKey instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBCVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBCVoutInnerScriptPubKeyWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBCVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBCVoutInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBCVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBCWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBSC instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBSCWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBVinInner instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBVinInnerScriptSig instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBVinInnerScriptSigWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBVinInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBVoutInner instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBVoutInnerScriptPubKey instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBVoutInnerScriptPubKeyWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBVoutInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSBVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSBWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSD instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSD2 instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSD2VinInner instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSD2VinInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInner instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInnerScriptPubKey instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInnerScriptPubKeyWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSD2WithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSDVinInner instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSDVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSDVinInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSDVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSDVoutInner instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSDVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSDVoutInnerScriptPubKey instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSDVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSDVoutInnerScriptPubKeyWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSDVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSDVoutInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSDVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSDWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSE instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSEC instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSECWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSEWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSL instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSLVoutInner instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSLVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSLVoutInnerScriptPubKey instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSLVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSLVoutInnerScriptPubKeyWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSLVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSLVoutInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSLVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSLWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSP instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSP object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSPWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSP object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBST instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBST object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSTBandwidthUsed instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSTBandwidthUsed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSTBandwidthUsedWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSTBandwidthUsed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSTEnergyUsed instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSTEnergyUsed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSTEnergyUsedWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSTEnergyUsed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSTWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBST object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSX instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSX object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSXValue instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSXValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSXValueWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSXValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSXWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSX object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSZ instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSZ2 instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSZ2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSZ2GasPrice instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSZ2GasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSZ2GasPriceWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSZ2GasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSZ2WithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSZ2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSZVoutInner instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSZVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSZVoutInnerScriptPubKey instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSZVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSZVoutInnerScriptPubKeyWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSZVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSZVoutInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSZVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIBSZWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIFee instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIFeeWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIRecipientsInner instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRIRecipientsInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRISendersInner instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRISendersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDFromCallbackRISendersInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRISendersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRIWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDFromCallbackRWithDefaults instantiates a new GetTransactionDetailsByTransactionIDFromCallbackR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDR instantiates a new GetTransactionDetailsByTransactionIDR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRData instantiates a new GetTransactionDetailsByTransactionIDRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRDataWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRI instantiates a new GetTransactionDetailsByTransactionIDRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSB instantiates a new GetTransactionDetailsByTransactionIDRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSBC instantiates a new GetTransactionDetailsByTransactionIDRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSBCVinInner instantiates a new GetTransactionDetailsByTransactionIDRIBSBCVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSBCVinInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSBCVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSBCVoutInner instantiates a new GetTransactionDetailsByTransactionIDRIBSBCVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSBCVoutInnerScriptPubKey instantiates a new GetTransactionDetailsByTransactionIDRIBSBCVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSBCVoutInnerScriptPubKeyWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSBCVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSBCVoutInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSBCVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSBCWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSBSC instantiates a new GetTransactionDetailsByTransactionIDRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSBSCGasPrice instantiates a new GetTransactionDetailsByTransactionIDRIBSBSCGasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSBSCGasPriceWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSBSCGasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSBSCWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSBVinInner instantiates a new GetTransactionDetailsByTransactionIDRIBSBVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSBVinInnerScriptSig instantiates a new GetTransactionDetailsByTransactionIDRIBSBVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSBVinInnerScriptSigWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSBVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSBVinInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSBVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSBVoutInner instantiates a new GetTransactionDetailsByTransactionIDRIBSBVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSBVoutInnerScriptPubKey instantiates a new GetTransactionDetailsByTransactionIDRIBSBVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSBVoutInnerScriptPubKeyWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSBVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSBVoutInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSBVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSBWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSD instantiates a new GetTransactionDetailsByTransactionIDRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSD2 instantiates a new GetTransactionDetailsByTransactionIDRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSD2VinInner instantiates a new GetTransactionDetailsByTransactionIDRIBSD2VinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSD2VinInnerScriptSig instantiates a new GetTransactionDetailsByTransactionIDRIBSD2VinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSD2VinInnerScriptSigWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSD2VinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSD2VinInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSD2VinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSD2VoutInner instantiates a new GetTransactionDetailsByTransactionIDRIBSD2VoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSD2VoutInnerScriptPubKey instantiates a new GetTransactionDetailsByTransactionIDRIBSD2VoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSD2VoutInnerScriptPubKeyWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSD2VoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSD2VoutInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSD2VoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSD2WithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSDVinInner instantiates a new GetTransactionDetailsByTransactionIDRIBSDVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSDVinInnerScriptSig instantiates a new GetTransactionDetailsByTransactionIDRIBSDVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSDVinInnerScriptSigWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSDVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSDVinInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSDVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSDVoutInner instantiates a new GetTransactionDetailsByTransactionIDRIBSDVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSDVoutInnerScriptPubKey instantiates a new GetTransactionDetailsByTransactionIDRIBSDVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSDVoutInnerScriptPubKeyWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSDVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSDVoutInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSDVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSDWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSE instantiates a new GetTransactionDetailsByTransactionIDRIBSE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSEC instantiates a new GetTransactionDetailsByTransactionIDRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSECGasPrice instantiates a new GetTransactionDetailsByTransactionIDRIBSECGasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSECGasPriceWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSECGasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSECWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSEGasPrice instantiates a new GetTransactionDetailsByTransactionIDRIBSEGasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSEGasPriceWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSEGasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSEWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSL instantiates a new GetTransactionDetailsByTransactionIDRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSLVinInner instantiates a new GetTransactionDetailsByTransactionIDRIBSLVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSLVinInnerScriptSig instantiates a new GetTransactionDetailsByTransactionIDRIBSLVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSLVinInnerScriptSigWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSLVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSLVinInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSLVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSLVoutInner instantiates a new GetTransactionDetailsByTransactionIDRIBSLVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSLVoutInnerScriptPubKey instantiates a new GetTransactionDetailsByTransactionIDRIBSLVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSLVoutInnerScriptPubKeyWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSLVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSLVoutInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSLVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSLWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSZ instantiates a new GetTransactionDetailsByTransactionIDRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSZVinInner instantiates a new GetTransactionDetailsByTransactionIDRIBSZVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSZVinInnerScriptSig instantiates a new GetTransactionDetailsByTransactionIDRIBSZVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSZVinInnerScriptSigWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSZVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSZVinInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSZVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSZVJoinSplitInner instantiates a new GetTransactionDetailsByTransactionIDRIBSZVJoinSplitInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSZVJoinSplitInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSZVJoinSplitInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSZVoutInner instantiates a new GetTransactionDetailsByTransactionIDRIBSZVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSZVoutInnerScriptPubKey instantiates a new GetTransactionDetailsByTransactionIDRIBSZVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSZVoutInnerScriptPubKeyWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSZVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSZVoutInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSZVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSZVShieldedOutputInner instantiates a new GetTransactionDetailsByTransactionIDRIBSZVShieldedOutputInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSZVShieldedOutputInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSZVShieldedOutputInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSZVShieldedSpendInner instantiates a new GetTransactionDetailsByTransactionIDRIBSZVShieldedSpendInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIBSZVShieldedSpendInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSZVShieldedSpendInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIBSZWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIFee instantiates a new GetTransactionDetailsByTransactionIDRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIFeeWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIRecipientsInner instantiates a new GetTransactionDetailsByTransactionIDRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRIRecipientsInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRISendersInner instantiates a new GetTransactionDetailsByTransactionIDRISendersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionDetailsByTransactionIDRISendersInnerWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRISendersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRIWithDefaults instantiates a new GetTransactionDetailsByTransactionIDRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionDetailsByTransactionIDRWithDefaults instantiates a new GetTransactionDetailsByTransactionIDR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionRequestDetails400Response instantiates a new GetTransactionRequestDetails400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionRequestDetails400ResponseWithDefaults instantiates a new GetTransactionRequestDetails400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionRequestDetails401Response instantiates a new GetTransactionRequestDetails401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionRequestDetails401ResponseWithDefaults instantiates a new GetTransactionRequestDetails401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionRequestDetails403Response instantiates a new GetTransactionRequestDetails403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionRequestDetails403ResponseWithDefaults instantiates a new GetTransactionRequestDetails403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionRequestDetailsR instantiates a new GetTransactionRequestDetailsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionRequestDetailsRData instantiates a new GetTransactionRequestDetailsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionRequestDetailsRDataWithDefaults instantiates a new GetTransactionRequestDetailsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionRequestDetailsRI instantiates a new GetTransactionRequestDetailsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionRequestDetailsRIRecipientsInner instantiates a new GetTransactionRequestDetailsRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionRequestDetailsRIRecipientsInnerWithDefaults instantiates a new GetTransactionRequestDetailsRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionRequestDetailsRIWithDefaults instantiates a new GetTransactionRequestDetailsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionRequestDetailsRWithDefaults instantiates a new GetTransactionRequestDetailsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletAssetDetails400Response instantiates a new GetWalletAssetDetails400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletAssetDetails400ResponseWithDefaults instantiates a new GetWalletAssetDetails400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletAssetDetails401Response instantiates a new GetWalletAssetDetails401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletAssetDetails401ResponseWithDefaults instantiates a new GetWalletAssetDetails401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletAssetDetails403Response instantiates a new GetWalletAssetDetails403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletAssetDetails403ResponseWithDefaults instantiates a new GetWalletAssetDetails403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletAssetDetailsR instantiates a new GetWalletAssetDetailsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletAssetDetailsRData instantiates a new GetWalletAssetDetailsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletAssetDetailsRDataWithDefaults instantiates a new GetWalletAssetDetailsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletAssetDetailsRI instantiates a new GetWalletAssetDetailsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletAssetDetailsRIConfirmedBalance instantiates a new GetWalletAssetDetailsRIConfirmedBalance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletAssetDetailsRIConfirmedBalanceWithDefaults instantiates a new GetWalletAssetDetailsRIConfirmedBalance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletAssetDetailsRIFungibleTokensInner instantiates a new GetWalletAssetDetailsRIFungibleTokensInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletAssetDetailsRIFungibleTokensInnerWithDefaults instantiates a new GetWalletAssetDetailsRIFungibleTokensInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletAssetDetailsRINonFungibleTokensInner instantiates a new GetWalletAssetDetailsRINonFungibleTokensInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletAssetDetailsRINonFungibleTokensInnerWithDefaults instantiates a new GetWalletAssetDetailsRINonFungibleTokensInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletAssetDetailsRIRecievedConfirmedAmount instantiates a new GetWalletAssetDetailsRIRecievedConfirmedAmount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletAssetDetailsRIRecievedConfirmedAmountWithDefaults instantiates a new GetWalletAssetDetailsRIRecievedConfirmedAmount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletAssetDetailsRISentConfirmedAmount instantiates a new GetWalletAssetDetailsRISentConfirmedAmount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletAssetDetailsRISentConfirmedAmountWithDefaults instantiates a new GetWalletAssetDetailsRISentConfirmedAmount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletAssetDetailsRIWithDefaults instantiates a new GetWalletAssetDetailsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletAssetDetailsRWithDefaults instantiates a new GetWalletAssetDetailsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionID400Response instantiates a new GetWalletTransactionDetailsByTransactionID400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionID400ResponseWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionID400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionID401Response instantiates a new GetWalletTransactionDetailsByTransactionID401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionID401ResponseWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionID401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionID403Response instantiates a new GetWalletTransactionDetailsByTransactionID403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionID403ResponseWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionID403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDR instantiates a new GetWalletTransactionDetailsByTransactionIDR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRData instantiates a new GetWalletTransactionDetailsByTransactionIDRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRDataWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRI instantiates a new GetWalletTransactionDetailsByTransactionIDRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSB instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSBC instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSBCVinInner instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBCVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSBCVinInnerScriptSig instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBCVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSBCVinInnerScriptSigWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBCVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSBCVinInnerWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBCVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSBCVoutInner instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBCVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSBCVoutInnerScriptPubKey instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBCVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSBCVoutInnerScriptPubKeyWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBCVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSBCVoutInnerWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBCVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSBCWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSBSC instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSBSCWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSBVinInner instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSBVinInnerScriptSig instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSBVinInnerScriptSigWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSBVinInnerWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSBVoutInner instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSBVoutInnerScriptPubKey instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSBVoutInnerScriptPubKeyWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSBVoutInnerWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSBVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSBWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSD instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSD2 instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSD2VinInner instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSD2VinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSD2VinInnerWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSD2VinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSD2WithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSDVinInner instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSDVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSDVinInnerScriptSig instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSDVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSDVinInnerScriptSigWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSDVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSDVinInnerWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSDVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSDWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSE instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSEC instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSECWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSEGasPrice instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSEGasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSEGasPriceWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSEGasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSEWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSL instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSLVinInner instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSLVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSLVinInnerScriptSig instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSLVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSLVinInnerScriptSigWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSLVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSLVinInnerWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSLVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSLWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSP instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSP object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSPGasPrice instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSPGasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSPGasPriceWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSPGasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSPWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSP object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBST instantiates a new GetWalletTransactionDetailsByTransactionIDRIBST object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSTWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBST object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSZ instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSZVinInner instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSZVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIBSZVinInnerWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSZVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIBSZWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIFee instantiates a new GetWalletTransactionDetailsByTransactionIDRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletTransactionDetailsByTransactionIDRIFeeWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRIWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletTransactionDetailsByTransactionIDRWithDefaults instantiates a new GetWalletTransactionDetailsByTransactionIDR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleAddressDetails400Response instantiates a new GetXRPRippleAddressDetails400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleAddressDetails400ResponseWithDefaults instantiates a new GetXRPRippleAddressDetails400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleAddressDetails401Response instantiates a new GetXRPRippleAddressDetails401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleAddressDetails401ResponseWithDefaults instantiates a new GetXRPRippleAddressDetails401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleAddressDetails403Response instantiates a new GetXRPRippleAddressDetails403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleAddressDetails403ResponseWithDefaults instantiates a new GetXRPRippleAddressDetails403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleAddressDetailsR instantiates a new GetXRPRippleAddressDetailsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleAddressDetailsRData instantiates a new GetXRPRippleAddressDetailsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleAddressDetailsRDataWithDefaults instantiates a new GetXRPRippleAddressDetailsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleAddressDetailsRI instantiates a new GetXRPRippleAddressDetailsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleAddressDetailsRIBalance instantiates a new GetXRPRippleAddressDetailsRIBalance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleAddressDetailsRIBalanceWithDefaults instantiates a new GetXRPRippleAddressDetailsRIBalance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleAddressDetailsRIWithDefaults instantiates a new GetXRPRippleAddressDetailsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleAddressDetailsRWithDefaults instantiates a new GetXRPRippleAddressDetailsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHash400Response instantiates a new GetXRPRippleBlockDetailsByBlockHash400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHash400ResponseWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHash400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHash401Response instantiates a new GetXRPRippleBlockDetailsByBlockHash401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHash401ResponseWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHash401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHash403Response instantiates a new GetXRPRippleBlockDetailsByBlockHash403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHash403ResponseWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHash403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHashR instantiates a new GetXRPRippleBlockDetailsByBlockHashR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHashRData instantiates a new GetXRPRippleBlockDetailsByBlockHashRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHashRDataWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHashRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHashRI instantiates a new GetXRPRippleBlockDetailsByBlockHashRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHashRITotalCoins instantiates a new GetXRPRippleBlockDetailsByBlockHashRITotalCoins object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHashRITotalCoinsWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHashRITotalCoins object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHashRIWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHashRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHashRWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHashR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHeight400Response instantiates a new GetXRPRippleBlockDetailsByBlockHeight400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHeight400ResponseWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHeight400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHeight401Response instantiates a new GetXRPRippleBlockDetailsByBlockHeight401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHeight401ResponseWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHeight401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHeight403Response instantiates a new GetXRPRippleBlockDetailsByBlockHeight403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHeight403ResponseWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHeight403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHeightR instantiates a new GetXRPRippleBlockDetailsByBlockHeightR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHeightRData instantiates a new GetXRPRippleBlockDetailsByBlockHeightRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHeightRDataWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHeightRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHeightRI instantiates a new GetXRPRippleBlockDetailsByBlockHeightRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHeightRITotalCoins instantiates a new GetXRPRippleBlockDetailsByBlockHeightRITotalCoins object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHeightRITotalCoinsWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHeightRITotalCoins object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHeightRITotalFees instantiates a new GetXRPRippleBlockDetailsByBlockHeightRITotalFees object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleBlockDetailsByBlockHeightRITotalFeesWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHeightRITotalFees object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHeightRIWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHeightRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleBlockDetailsByBlockHeightRWithDefaults instantiates a new GetXRPRippleBlockDetailsByBlockHeightR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleTransactionDetailsByTransactionID400Response instantiates a new GetXRPRippleTransactionDetailsByTransactionID400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleTransactionDetailsByTransactionID400ResponseWithDefaults instantiates a new GetXRPRippleTransactionDetailsByTransactionID400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleTransactionDetailsByTransactionID401Response instantiates a new GetXRPRippleTransactionDetailsByTransactionID401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleTransactionDetailsByTransactionID401ResponseWithDefaults instantiates a new GetXRPRippleTransactionDetailsByTransactionID401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleTransactionDetailsByTransactionID403Response instantiates a new GetXRPRippleTransactionDetailsByTransactionID403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleTransactionDetailsByTransactionID403ResponseWithDefaults instantiates a new GetXRPRippleTransactionDetailsByTransactionID403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleTransactionDetailsByTransactionID404Response instantiates a new GetXRPRippleTransactionDetailsByTransactionID404Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleTransactionDetailsByTransactionID404ResponseWithDefaults instantiates a new GetXRPRippleTransactionDetailsByTransactionID404Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleTransactionDetailsByTransactionIDR instantiates a new GetXRPRippleTransactionDetailsByTransactionIDR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleTransactionDetailsByTransactionIDRData instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleTransactionDetailsByTransactionIDRDataWithDefaults instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleTransactionDetailsByTransactionIDRI instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleTransactionDetailsByTransactionIDRIFee instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleTransactionDetailsByTransactionIDRIFeeWithDefaults instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleTransactionDetailsByTransactionIDRIOffer instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRIOffer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleTransactionDetailsByTransactionIDRIOfferWithDefaults instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRIOffer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleTransactionDetailsByTransactionIDRIReceive instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRIReceive object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleTransactionDetailsByTransactionIDRIReceiveWithDefaults instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRIReceive object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleTransactionDetailsByTransactionIDRIRecipientsInner instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleTransactionDetailsByTransactionIDRIRecipientsInnerWithDefaults instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleTransactionDetailsByTransactionIDRISendersInner instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRISendersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleTransactionDetailsByTransactionIDRISendersInnerWithDefaults instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRISendersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleTransactionDetailsByTransactionIDRIValue instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRIValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetXRPRippleTransactionDetailsByTransactionIDRIValueWithDefaults instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRIValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleTransactionDetailsByTransactionIDRIWithDefaults instantiates a new GetXRPRippleTransactionDetailsByTransactionIDRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetXRPRippleTransactionDetailsByTransactionIDRWithDefaults instantiates a new GetXRPRippleTransactionDetailsByTransactionIDR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaAddressDetails400Response instantiates a new GetZilliqaAddressDetails400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaAddressDetails400ResponseWithDefaults instantiates a new GetZilliqaAddressDetails400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaAddressDetails401Response instantiates a new GetZilliqaAddressDetails401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaAddressDetails401ResponseWithDefaults instantiates a new GetZilliqaAddressDetails401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaAddressDetails403Response instantiates a new GetZilliqaAddressDetails403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaAddressDetails403ResponseWithDefaults instantiates a new GetZilliqaAddressDetails403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaAddressDetailsR instantiates a new GetZilliqaAddressDetailsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaAddressDetailsRData instantiates a new GetZilliqaAddressDetailsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaAddressDetailsRDataWithDefaults instantiates a new GetZilliqaAddressDetailsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaAddressDetailsRI instantiates a new GetZilliqaAddressDetailsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaAddressDetailsRIBalance instantiates a new GetZilliqaAddressDetailsRIBalance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaAddressDetailsRIBalanceWithDefaults instantiates a new GetZilliqaAddressDetailsRIBalance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaAddressDetailsRIWithDefaults instantiates a new GetZilliqaAddressDetailsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaAddressDetailsRWithDefaults instantiates a new GetZilliqaAddressDetailsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaBlockDetailsByBlockHash400Response instantiates a new GetZilliqaBlockDetailsByBlockHash400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaBlockDetailsByBlockHash400ResponseWithDefaults instantiates a new GetZilliqaBlockDetailsByBlockHash400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaBlockDetailsByBlockHash401Response instantiates a new GetZilliqaBlockDetailsByBlockHash401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaBlockDetailsByBlockHash401ResponseWithDefaults instantiates a new GetZilliqaBlockDetailsByBlockHash401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaBlockDetailsByBlockHash403Response instantiates a new GetZilliqaBlockDetailsByBlockHash403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaBlockDetailsByBlockHash403ResponseWithDefaults instantiates a new GetZilliqaBlockDetailsByBlockHash403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaBlockDetailsByBlockHashR instantiates a new GetZilliqaBlockDetailsByBlockHashR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaBlockDetailsByBlockHashRData instantiates a new GetZilliqaBlockDetailsByBlockHashRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaBlockDetailsByBlockHashRDataWithDefaults instantiates a new GetZilliqaBlockDetailsByBlockHashRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaBlockDetailsByBlockHashRI instantiates a new GetZilliqaBlockDetailsByBlockHashRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaBlockDetailsByBlockHashRIWithDefaults instantiates a new GetZilliqaBlockDetailsByBlockHashRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaBlockDetailsByBlockHashRWithDefaults instantiates a new GetZilliqaBlockDetailsByBlockHashR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaBlockDetailsByBlockHeight400Response instantiates a new GetZilliqaBlockDetailsByBlockHeight400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaBlockDetailsByBlockHeight400ResponseWithDefaults instantiates a new GetZilliqaBlockDetailsByBlockHeight400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaBlockDetailsByBlockHeight401Response instantiates a new GetZilliqaBlockDetailsByBlockHeight401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaBlockDetailsByBlockHeight401ResponseWithDefaults instantiates a new GetZilliqaBlockDetailsByBlockHeight401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaBlockDetailsByBlockHeight403Response instantiates a new GetZilliqaBlockDetailsByBlockHeight403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaBlockDetailsByBlockHeight403ResponseWithDefaults instantiates a new GetZilliqaBlockDetailsByBlockHeight403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaBlockDetailsByBlockHeightR instantiates a new GetZilliqaBlockDetailsByBlockHeightR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaBlockDetailsByBlockHeightRData instantiates a new GetZilliqaBlockDetailsByBlockHeightRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaBlockDetailsByBlockHeightRDataWithDefaults instantiates a new GetZilliqaBlockDetailsByBlockHeightRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaBlockDetailsByBlockHeightRI instantiates a new GetZilliqaBlockDetailsByBlockHeightRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaBlockDetailsByBlockHeightRIWithDefaults instantiates a new GetZilliqaBlockDetailsByBlockHeightRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaBlockDetailsByBlockHeightRWithDefaults instantiates a new GetZilliqaBlockDetailsByBlockHeightR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaTransactionDetailsByTransactionID400Response instantiates a new GetZilliqaTransactionDetailsByTransactionID400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaTransactionDetailsByTransactionID400ResponseWithDefaults instantiates a new GetZilliqaTransactionDetailsByTransactionID400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaTransactionDetailsByTransactionID401Response instantiates a new GetZilliqaTransactionDetailsByTransactionID401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaTransactionDetailsByTransactionID401ResponseWithDefaults instantiates a new GetZilliqaTransactionDetailsByTransactionID401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaTransactionDetailsByTransactionID403Response instantiates a new GetZilliqaTransactionDetailsByTransactionID403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaTransactionDetailsByTransactionID403ResponseWithDefaults instantiates a new GetZilliqaTransactionDetailsByTransactionID403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaTransactionDetailsByTransactionIDR instantiates a new GetZilliqaTransactionDetailsByTransactionIDR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaTransactionDetailsByTransactionIDRData instantiates a new GetZilliqaTransactionDetailsByTransactionIDRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaTransactionDetailsByTransactionIDRDataWithDefaults instantiates a new GetZilliqaTransactionDetailsByTransactionIDRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaTransactionDetailsByTransactionIDRI instantiates a new GetZilliqaTransactionDetailsByTransactionIDRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaTransactionDetailsByTransactionIDRIFee instantiates a new GetZilliqaTransactionDetailsByTransactionIDRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaTransactionDetailsByTransactionIDRIFeeWithDefaults instantiates a new GetZilliqaTransactionDetailsByTransactionIDRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaTransactionDetailsByTransactionIDRIRecipientsInner instantiates a new GetZilliqaTransactionDetailsByTransactionIDRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaTransactionDetailsByTransactionIDRIRecipientsInnerWithDefaults instantiates a new GetZilliqaTransactionDetailsByTransactionIDRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaTransactionDetailsByTransactionIDRISendersInner instantiates a new GetZilliqaTransactionDetailsByTransactionIDRISendersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetZilliqaTransactionDetailsByTransactionIDRISendersInnerWithDefaults instantiates a new GetZilliqaTransactionDetailsByTransactionIDRISendersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaTransactionDetailsByTransactionIDRIWithDefaults instantiates a new GetZilliqaTransactionDetailsByTransactionIDRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetZilliqaTransactionDetailsByTransactionIDRWithDefaults instantiates a new GetZilliqaTransactionDetailsByTransactionIDR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInsufficientCredits instantiates a new InsufficientCredits object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInsufficientCreditsWithDefaults instantiates a new InsufficientCredits object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvalidApiKey instantiates a new InvalidApiKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvalidApiKeyWithDefaults instantiates a new InvalidApiKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvalidBlockchain instantiates a new InvalidBlockchain object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvalidBlockchainWithDefaults instantiates a new InvalidBlockchain object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvalidData instantiates a new InvalidData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvalidDataWithDefaults instantiates a new InvalidData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvalidNetwork instantiates a new InvalidNetwork object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvalidNetworkWithDefaults instantiates a new InvalidNetwork object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvalidPagination instantiates a new InvalidPagination object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvalidPaginationWithDefaults instantiates a new InvalidPagination object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvalidRequestBodyStructure instantiates a new InvalidRequestBodyStructure object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvalidRequestBodyStructureWithDefaults instantiates a new InvalidRequestBodyStructure object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvalidTransactionHex instantiates a new InvalidTransactionHex object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvalidTransactionHexWithDefaults instantiates a new InvalidTransactionHex object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvalidXpub instantiates a new InvalidXpub object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvalidXpubWithDefaults instantiates a new InvalidXpub object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLimitGreaterThanAllowed instantiates a new LimitGreaterThanAllowed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLimitGreaterThanAllowedWithDefaults instantiates a new LimitGreaterThanAllowed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsByWalletID400Response instantiates a new ListAllAssetsByWalletID400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsByWalletID400ResponseWithDefaults instantiates a new ListAllAssetsByWalletID400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsByWalletID401Response instantiates a new ListAllAssetsByWalletID401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsByWalletID401ResponseWithDefaults instantiates a new ListAllAssetsByWalletID401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsByWalletID403Response instantiates a new ListAllAssetsByWalletID403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsByWalletID403ResponseWithDefaults instantiates a new ListAllAssetsByWalletID403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsByWalletIDR instantiates a new ListAllAssetsByWalletIDR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsByWalletIDRData instantiates a new ListAllAssetsByWalletIDRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsByWalletIDRDataWithDefaults instantiates a new ListAllAssetsByWalletIDRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsByWalletIDRI instantiates a new ListAllAssetsByWalletIDRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsByWalletIDRIWithDefaults instantiates a new ListAllAssetsByWalletIDRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsByWalletIDRWithDefaults instantiates a new ListAllAssetsByWalletIDR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsFromAllWallets400Response instantiates a new ListAllAssetsFromAllWallets400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsFromAllWallets400ResponseWithDefaults instantiates a new ListAllAssetsFromAllWallets400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsFromAllWallets401Response instantiates a new ListAllAssetsFromAllWallets401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsFromAllWallets401ResponseWithDefaults instantiates a new ListAllAssetsFromAllWallets401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsFromAllWallets403Response instantiates a new ListAllAssetsFromAllWallets403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsFromAllWallets403ResponseWithDefaults instantiates a new ListAllAssetsFromAllWallets403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsFromAllWalletsR instantiates a new ListAllAssetsFromAllWalletsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsFromAllWalletsRData instantiates a new ListAllAssetsFromAllWalletsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsFromAllWalletsRDataWithDefaults instantiates a new ListAllAssetsFromAllWalletsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsFromAllWalletsRI instantiates a new ListAllAssetsFromAllWalletsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsFromAllWalletsRICoinsInner instantiates a new ListAllAssetsFromAllWalletsRICoinsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsFromAllWalletsRICoinsInnerWithDefaults instantiates a new ListAllAssetsFromAllWalletsRICoinsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsFromAllWalletsRIFungibleTokensInner instantiates a new ListAllAssetsFromAllWalletsRIFungibleTokensInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsFromAllWalletsRIFungibleTokensInnerWithDefaults instantiates a new ListAllAssetsFromAllWalletsRIFungibleTokensInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsFromAllWalletsRINonFungibleTokensInner instantiates a new ListAllAssetsFromAllWalletsRINonFungibleTokensInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAllAssetsFromAllWalletsRINonFungibleTokensInnerWithDefaults instantiates a new ListAllAssetsFromAllWalletsRINonFungibleTokensInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsFromAllWalletsRIWithDefaults instantiates a new ListAllAssetsFromAllWalletsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAllAssetsFromAllWalletsRWithDefaults instantiates a new ListAllAssetsFromAllWalletsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListBlockchainEventsSubscriptions400Response instantiates a new ListBlockchainEventsSubscriptions400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListBlockchainEventsSubscriptions400ResponseWithDefaults instantiates a new ListBlockchainEventsSubscriptions400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListBlockchainEventsSubscriptions401Response instantiates a new ListBlockchainEventsSubscriptions401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListBlockchainEventsSubscriptions401ResponseWithDefaults instantiates a new ListBlockchainEventsSubscriptions401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListBlockchainEventsSubscriptions403Response instantiates a new ListBlockchainEventsSubscriptions403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListBlockchainEventsSubscriptions403ResponseWithDefaults instantiates a new ListBlockchainEventsSubscriptions403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListBlockchainEventsSubscriptionsR instantiates a new ListBlockchainEventsSubscriptionsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListBlockchainEventsSubscriptionsRData instantiates a new ListBlockchainEventsSubscriptionsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListBlockchainEventsSubscriptionsRDataWithDefaults instantiates a new ListBlockchainEventsSubscriptionsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListBlockchainEventsSubscriptionsRI instantiates a new ListBlockchainEventsSubscriptionsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListBlockchainEventsSubscriptionsRIDeactivationReasonsInner instantiates a new ListBlockchainEventsSubscriptionsRIDeactivationReasonsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListBlockchainEventsSubscriptionsRIDeactivationReasonsInnerWithDefaults instantiates a new ListBlockchainEventsSubscriptionsRIDeactivationReasonsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListBlockchainEventsSubscriptionsRIWithDefaults instantiates a new ListBlockchainEventsSubscriptionsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListBlockchainEventsSubscriptionsRWithDefaults instantiates a new ListBlockchainEventsSubscriptionsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListCoinsForwardingAutomations400Response instantiates a new ListCoinsForwardingAutomations400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListCoinsForwardingAutomations400ResponseWithDefaults instantiates a new ListCoinsForwardingAutomations400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListCoinsForwardingAutomations401Response instantiates a new ListCoinsForwardingAutomations401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListCoinsForwardingAutomations401ResponseWithDefaults instantiates a new ListCoinsForwardingAutomations401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListCoinsForwardingAutomations403Response instantiates a new ListCoinsForwardingAutomations403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListCoinsForwardingAutomations403ResponseWithDefaults instantiates a new ListCoinsForwardingAutomations403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListCoinsForwardingAutomationsR instantiates a new ListCoinsForwardingAutomationsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListCoinsForwardingAutomationsRData instantiates a new ListCoinsForwardingAutomationsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListCoinsForwardingAutomationsRDataWithDefaults instantiates a new ListCoinsForwardingAutomationsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListCoinsForwardingAutomationsRI instantiates a new ListCoinsForwardingAutomationsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListCoinsForwardingAutomationsRIWithDefaults instantiates a new ListCoinsForwardingAutomationsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListCoinsForwardingAutomationsRWithDefaults instantiates a new ListCoinsForwardingAutomationsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTokensTransfersByAddress400Response instantiates a new ListConfirmedTokensTransfersByAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTokensTransfersByAddress400ResponseWithDefaults instantiates a new ListConfirmedTokensTransfersByAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTokensTransfersByAddress401Response instantiates a new ListConfirmedTokensTransfersByAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTokensTransfersByAddress401ResponseWithDefaults instantiates a new ListConfirmedTokensTransfersByAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTokensTransfersByAddress403Response instantiates a new ListConfirmedTokensTransfersByAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTokensTransfersByAddress403ResponseWithDefaults instantiates a new ListConfirmedTokensTransfersByAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTokensTransfersByAddressAndTimeRange400Response instantiates a new ListConfirmedTokensTransfersByAddressAndTimeRange400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTokensTransfersByAddressAndTimeRange400ResponseWithDefaults instantiates a new ListConfirmedTokensTransfersByAddressAndTimeRange400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTokensTransfersByAddressAndTimeRange401Response instantiates a new ListConfirmedTokensTransfersByAddressAndTimeRange401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTokensTransfersByAddressAndTimeRange401ResponseWithDefaults instantiates a new ListConfirmedTokensTransfersByAddressAndTimeRange401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTokensTransfersByAddressAndTimeRange403Response instantiates a new ListConfirmedTokensTransfersByAddressAndTimeRange403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTokensTransfersByAddressAndTimeRange403ResponseWithDefaults instantiates a new ListConfirmedTokensTransfersByAddressAndTimeRange403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTokensTransfersByAddressAndTimeRangeR instantiates a new ListConfirmedTokensTransfersByAddressAndTimeRangeR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTokensTransfersByAddressAndTimeRangeRData instantiates a new ListConfirmedTokensTransfersByAddressAndTimeRangeRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTokensTransfersByAddressAndTimeRangeRDataWithDefaults instantiates a new ListConfirmedTokensTransfersByAddressAndTimeRangeRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTokensTransfersByAddressAndTimeRangeRI instantiates a new ListConfirmedTokensTransfersByAddressAndTimeRangeRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTokensTransfersByAddressAndTimeRangeRIWithDefaults instantiates a new ListConfirmedTokensTransfersByAddressAndTimeRangeRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTokensTransfersByAddressAndTimeRangeRWithDefaults instantiates a new ListConfirmedTokensTransfersByAddressAndTimeRangeR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTokensTransfersByAddressR instantiates a new ListConfirmedTokensTransfersByAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTokensTransfersByAddressRData instantiates a new ListConfirmedTokensTransfersByAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTokensTransfersByAddressRDataWithDefaults instantiates a new ListConfirmedTokensTransfersByAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTokensTransfersByAddressRI instantiates a new ListConfirmedTokensTransfersByAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTokensTransfersByAddressRIWithDefaults instantiates a new ListConfirmedTokensTransfersByAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTokensTransfersByAddressRWithDefaults instantiates a new ListConfirmedTokensTransfersByAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddress400Response instantiates a new ListConfirmedTransactionsByAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddress400ResponseWithDefaults instantiates a new ListConfirmedTransactionsByAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddress401Response instantiates a new ListConfirmedTransactionsByAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddress401ResponseWithDefaults instantiates a new ListConfirmedTransactionsByAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddress403Response instantiates a new ListConfirmedTransactionsByAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddress403ResponseWithDefaults instantiates a new ListConfirmedTransactionsByAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRange400Response instantiates a new ListConfirmedTransactionsByAddressAndTimeRange400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRange400ResponseWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRange400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRange401Response instantiates a new ListConfirmedTransactionsByAddressAndTimeRange401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRange401ResponseWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRange401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRange403Response instantiates a new ListConfirmedTransactionsByAddressAndTimeRange403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRange403ResponseWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRange403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRangeR instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRangeRData instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRangeRDataWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRangeRI instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSB instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSBC instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSBCWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSBSC instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSBSCWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSBWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSD instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSD2 instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSD2WithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSDWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSE instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSEC instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSECWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSEWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSL instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSLWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSZ instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressAndTimeRangeRIBSZWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRangeRIWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressAndTimeRangeRWithDefaults instantiates a new ListConfirmedTransactionsByAddressAndTimeRangeR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressR instantiates a new ListConfirmedTransactionsByAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRData instantiates a new ListConfirmedTransactionsByAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRDataWithDefaults instantiates a new ListConfirmedTransactionsByAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRI instantiates a new ListConfirmedTransactionsByAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSB instantiates a new ListConfirmedTransactionsByAddressRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSBC instantiates a new ListConfirmedTransactionsByAddressRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSBCVinInner instantiates a new ListConfirmedTransactionsByAddressRIBSBCVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSBCVinInnerWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSBCVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSBCWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSBSC instantiates a new ListConfirmedTransactionsByAddressRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSBSCGasPrice instantiates a new ListConfirmedTransactionsByAddressRIBSBSCGasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSBSCGasPriceWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSBSCGasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSBSCWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSBVinInner instantiates a new ListConfirmedTransactionsByAddressRIBSBVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSBVinInnerWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSBVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSBVoutInner instantiates a new ListConfirmedTransactionsByAddressRIBSBVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKey instantiates a new ListConfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKeyWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSBVoutInnerWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSBVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSBWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSD instantiates a new ListConfirmedTransactionsByAddressRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSD2 instantiates a new ListConfirmedTransactionsByAddressRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSD2VinInner instantiates a new ListConfirmedTransactionsByAddressRIBSD2VinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSD2VinInnerScriptSig instantiates a new ListConfirmedTransactionsByAddressRIBSD2VinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSD2VinInnerScriptSigWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSD2VinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSD2VinInnerWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSD2VinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSD2VoutInner instantiates a new ListConfirmedTransactionsByAddressRIBSD2VoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSD2VoutInnerScriptPubKey instantiates a new ListConfirmedTransactionsByAddressRIBSD2VoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSD2VoutInnerScriptPubKeyWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSD2VoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSD2VoutInnerWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSD2VoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSD2WithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSDVinInner instantiates a new ListConfirmedTransactionsByAddressRIBSDVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSDVinInnerScriptSig instantiates a new ListConfirmedTransactionsByAddressRIBSDVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSDVinInnerScriptSigWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSDVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSDVinInnerWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSDVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSDWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSE instantiates a new ListConfirmedTransactionsByAddressRIBSE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSEC instantiates a new ListConfirmedTransactionsByAddressRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSECGasPrice instantiates a new ListConfirmedTransactionsByAddressRIBSECGasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSECGasPriceWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSECGasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSECWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSEGasPrice instantiates a new ListConfirmedTransactionsByAddressRIBSEGasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSEGasPriceWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSEGasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSEWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSL instantiates a new ListConfirmedTransactionsByAddressRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSLVinInner instantiates a new ListConfirmedTransactionsByAddressRIBSLVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSLVinInnerScriptSig instantiates a new ListConfirmedTransactionsByAddressRIBSLVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSLVinInnerScriptSigWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSLVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSLVinInnerWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSLVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSLWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSZ instantiates a new ListConfirmedTransactionsByAddressRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSZVinInner instantiates a new ListConfirmedTransactionsByAddressRIBSZVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSZVinInnerWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSZVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSZVJoinSplitInner instantiates a new ListConfirmedTransactionsByAddressRIBSZVJoinSplitInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIBSZVJoinSplitInnerWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSZVJoinSplitInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIBSZWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIFee instantiates a new ListConfirmedTransactionsByAddressRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListConfirmedTransactionsByAddressRIFeeWithDefaults instantiates a new ListConfirmedTransactionsByAddressRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRIWithDefaults instantiates a new ListConfirmedTransactionsByAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListConfirmedTransactionsByAddressRWithDefaults instantiates a new ListConfirmedTransactionsByAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListDepositAddresses400Response instantiates a new ListDepositAddresses400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListDepositAddresses400ResponseWithDefaults instantiates a new ListDepositAddresses400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListDepositAddresses401Response instantiates a new ListDepositAddresses401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListDepositAddresses401ResponseWithDefaults instantiates a new ListDepositAddresses401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListDepositAddresses403Response instantiates a new ListDepositAddresses403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListDepositAddresses403ResponseWithDefaults instantiates a new ListDepositAddresses403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListDepositAddressesR instantiates a new ListDepositAddressesR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListDepositAddressesRData instantiates a new ListDepositAddressesRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListDepositAddressesRDataWithDefaults instantiates a new ListDepositAddressesRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListDepositAddressesRI instantiates a new ListDepositAddressesRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListDepositAddressesRIConfirmedBalance instantiates a new ListDepositAddressesRIConfirmedBalance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListDepositAddressesRIConfirmedBalanceWithDefaults instantiates a new ListDepositAddressesRIConfirmedBalance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListDepositAddressesRIFungibleTokensInner instantiates a new ListDepositAddressesRIFungibleTokensInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListDepositAddressesRIFungibleTokensInnerWithDefaults instantiates a new ListDepositAddressesRIFungibleTokensInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListDepositAddressesRINonFungibleTokensInner instantiates a new ListDepositAddressesRINonFungibleTokensInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListDepositAddressesRINonFungibleTokensInnerWithDefaults instantiates a new ListDepositAddressesRINonFungibleTokensInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListDepositAddressesRIWithDefaults instantiates a new ListDepositAddressesRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListDepositAddressesRWithDefaults instantiates a new ListDepositAddressesR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubTransactions400Response instantiates a new ListHDWalletXPubYPubZPubTransactions400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubTransactions400ResponseWithDefaults instantiates a new ListHDWalletXPubYPubZPubTransactions400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubTransactions401Response instantiates a new ListHDWalletXPubYPubZPubTransactions401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubTransactions401ResponseWithDefaults instantiates a new ListHDWalletXPubYPubZPubTransactions401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubTransactions403Response instantiates a new ListHDWalletXPubYPubZPubTransactions403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubTransactions403ResponseWithDefaults instantiates a new ListHDWalletXPubYPubZPubTransactions403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubTransactions422Response instantiates a new ListHDWalletXPubYPubZPubTransactions422Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubTransactions422ResponseWithDefaults instantiates a new ListHDWalletXPubYPubZPubTransactions422Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubTransactionsR instantiates a new ListHDWalletXPubYPubZPubTransactionsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubTransactionsRData instantiates a new ListHDWalletXPubYPubZPubTransactionsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubTransactionsRDataWithDefaults instantiates a new ListHDWalletXPubYPubZPubTransactionsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubTransactionsRI instantiates a new ListHDWalletXPubYPubZPubTransactionsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubTransactionsRIFee instantiates a new ListHDWalletXPubYPubZPubTransactionsRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubTransactionsRIFeeWithDefaults instantiates a new ListHDWalletXPubYPubZPubTransactionsRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubTransactionsRIRecipientsInner instantiates a new ListHDWalletXPubYPubZPubTransactionsRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubTransactionsRIRecipientsInnerWithDefaults instantiates a new ListHDWalletXPubYPubZPubTransactionsRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubTransactionsRISendersInner instantiates a new ListHDWalletXPubYPubZPubTransactionsRISendersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubTransactionsRISendersInnerWithDefaults instantiates a new ListHDWalletXPubYPubZPubTransactionsRISendersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubTransactionsRIWithDefaults instantiates a new ListHDWalletXPubYPubZPubTransactionsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubTransactionsRWithDefaults instantiates a new ListHDWalletXPubYPubZPubTransactionsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubUTXOs400Response instantiates a new ListHDWalletXPubYPubZPubUTXOs400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubUTXOs400ResponseWithDefaults instantiates a new ListHDWalletXPubYPubZPubUTXOs400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubUTXOs401Response instantiates a new ListHDWalletXPubYPubZPubUTXOs401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubUTXOs401ResponseWithDefaults instantiates a new ListHDWalletXPubYPubZPubUTXOs401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubUTXOs403Response instantiates a new ListHDWalletXPubYPubZPubUTXOs403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubUTXOs403ResponseWithDefaults instantiates a new ListHDWalletXPubYPubZPubUTXOs403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubUTXOs422Response instantiates a new ListHDWalletXPubYPubZPubUTXOs422Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubUTXOs422ResponseWithDefaults instantiates a new ListHDWalletXPubYPubZPubUTXOs422Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubUTXOsR instantiates a new ListHDWalletXPubYPubZPubUTXOsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubUTXOsRData instantiates a new ListHDWalletXPubYPubZPubUTXOsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubUTXOsRDataWithDefaults instantiates a new ListHDWalletXPubYPubZPubUTXOsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubUTXOsRI instantiates a new ListHDWalletXPubYPubZPubUTXOsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHDWalletXPubYPubZPubUTXOsRIWithDefaults instantiates a new ListHDWalletXPubYPubZPubUTXOsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHDWalletXPubYPubZPubUTXOsRWithDefaults instantiates a new ListHDWalletXPubYPubZPubUTXOsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionDetailsByTransactionHash400Response instantiates a new ListInternalTransactionDetailsByTransactionHash400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionDetailsByTransactionHash400ResponseWithDefaults instantiates a new ListInternalTransactionDetailsByTransactionHash400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionDetailsByTransactionHash401Response instantiates a new ListInternalTransactionDetailsByTransactionHash401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionDetailsByTransactionHash401ResponseWithDefaults instantiates a new ListInternalTransactionDetailsByTransactionHash401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionDetailsByTransactionHash403Response instantiates a new ListInternalTransactionDetailsByTransactionHash403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionDetailsByTransactionHash403ResponseWithDefaults instantiates a new ListInternalTransactionDetailsByTransactionHash403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionDetailsByTransactionHashR instantiates a new ListInternalTransactionDetailsByTransactionHashR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionDetailsByTransactionHashRData instantiates a new ListInternalTransactionDetailsByTransactionHashRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionDetailsByTransactionHashRDataWithDefaults instantiates a new ListInternalTransactionDetailsByTransactionHashRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionDetailsByTransactionHashRI instantiates a new ListInternalTransactionDetailsByTransactionHashRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionDetailsByTransactionHashRIWithDefaults instantiates a new ListInternalTransactionDetailsByTransactionHashRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionDetailsByTransactionHashRWithDefaults instantiates a new ListInternalTransactionDetailsByTransactionHashR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionsByAddress400Response instantiates a new ListInternalTransactionsByAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionsByAddress400ResponseWithDefaults instantiates a new ListInternalTransactionsByAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionsByAddress401Response instantiates a new ListInternalTransactionsByAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionsByAddress401ResponseWithDefaults instantiates a new ListInternalTransactionsByAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionsByAddress403Response instantiates a new ListInternalTransactionsByAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionsByAddress403ResponseWithDefaults instantiates a new ListInternalTransactionsByAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionsByAddressAndTimeRange400Response instantiates a new ListInternalTransactionsByAddressAndTimeRange400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionsByAddressAndTimeRange400ResponseWithDefaults instantiates a new ListInternalTransactionsByAddressAndTimeRange400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionsByAddressAndTimeRange401Response instantiates a new ListInternalTransactionsByAddressAndTimeRange401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionsByAddressAndTimeRange401ResponseWithDefaults instantiates a new ListInternalTransactionsByAddressAndTimeRange401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionsByAddressAndTimeRange403Response instantiates a new ListInternalTransactionsByAddressAndTimeRange403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionsByAddressAndTimeRange403ResponseWithDefaults instantiates a new ListInternalTransactionsByAddressAndTimeRange403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionsByAddressAndTimeRangeR instantiates a new ListInternalTransactionsByAddressAndTimeRangeR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionsByAddressAndTimeRangeRData instantiates a new ListInternalTransactionsByAddressAndTimeRangeRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionsByAddressAndTimeRangeRDataWithDefaults instantiates a new ListInternalTransactionsByAddressAndTimeRangeRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionsByAddressAndTimeRangeRI instantiates a new ListInternalTransactionsByAddressAndTimeRangeRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionsByAddressAndTimeRangeRIWithDefaults instantiates a new ListInternalTransactionsByAddressAndTimeRangeRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionsByAddressAndTimeRangeRWithDefaults instantiates a new ListInternalTransactionsByAddressAndTimeRangeR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionsByAddressR instantiates a new ListInternalTransactionsByAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionsByAddressRData instantiates a new ListInternalTransactionsByAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionsByAddressRDataWithDefaults instantiates a new ListInternalTransactionsByAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionsByAddressRI instantiates a new ListInternalTransactionsByAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListInternalTransactionsByAddressRIWithDefaults instantiates a new ListInternalTransactionsByAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListInternalTransactionsByAddressRWithDefaults instantiates a new ListInternalTransactionsByAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocks400Response instantiates a new ListLatestMinedBlocks400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocks400ResponseWithDefaults instantiates a new ListLatestMinedBlocks400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocks401Response instantiates a new ListLatestMinedBlocks401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocks401ResponseWithDefaults instantiates a new ListLatestMinedBlocks401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocks403Response instantiates a new ListLatestMinedBlocks403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocks403ResponseWithDefaults instantiates a new ListLatestMinedBlocks403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksR instantiates a new ListLatestMinedBlocksR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRData instantiates a new ListLatestMinedBlocksRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRDataWithDefaults instantiates a new ListLatestMinedBlocksRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRI instantiates a new ListLatestMinedBlocksRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRIBSB instantiates a new ListLatestMinedBlocksRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRIBSBC instantiates a new ListLatestMinedBlocksRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRIBSBCWithDefaults instantiates a new ListLatestMinedBlocksRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRIBSBSC instantiates a new ListLatestMinedBlocksRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRIBSBSCWithDefaults instantiates a new ListLatestMinedBlocksRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRIBSBWithDefaults instantiates a new ListLatestMinedBlocksRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRIBSD instantiates a new ListLatestMinedBlocksRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRIBSD2 instantiates a new ListLatestMinedBlocksRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRIBSD2WithDefaults instantiates a new ListLatestMinedBlocksRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRIBSDWithDefaults instantiates a new ListLatestMinedBlocksRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRIBSEC instantiates a new ListLatestMinedBlocksRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRIBSECWithDefaults instantiates a new ListLatestMinedBlocksRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRIBSL instantiates a new ListLatestMinedBlocksRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRIBSLWithDefaults instantiates a new ListLatestMinedBlocksRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRIBSX instantiates a new ListLatestMinedBlocksRIBSX object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRIBSXTotalCoins instantiates a new ListLatestMinedBlocksRIBSXTotalCoins object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRIBSXTotalCoinsWithDefaults instantiates a new ListLatestMinedBlocksRIBSXTotalCoins object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRIBSXTotalFees instantiates a new ListLatestMinedBlocksRIBSXTotalFees object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRIBSXTotalFeesWithDefaults instantiates a new ListLatestMinedBlocksRIBSXTotalFees object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRIBSXWithDefaults instantiates a new ListLatestMinedBlocksRIBSX object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRIBSZ instantiates a new ListLatestMinedBlocksRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRIBSZ2 instantiates a new ListLatestMinedBlocksRIBSZ2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListLatestMinedBlocksRIBSZ2WithDefaults instantiates a new ListLatestMinedBlocksRIBSZ2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRIBSZWithDefaults instantiates a new ListLatestMinedBlocksRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRIWithDefaults instantiates a new ListLatestMinedBlocksRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListLatestMinedBlocksRWithDefaults instantiates a new ListLatestMinedBlocksR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSupportedAssets400Response instantiates a new ListSupportedAssets400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSupportedAssets400ResponseWithDefaults instantiates a new ListSupportedAssets400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSupportedAssets401Response instantiates a new ListSupportedAssets401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSupportedAssets401ResponseWithDefaults instantiates a new ListSupportedAssets401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSupportedAssets403Response instantiates a new ListSupportedAssets403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSupportedAssets403ResponseWithDefaults instantiates a new ListSupportedAssets403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSupportedAssetsR instantiates a new ListSupportedAssetsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSupportedAssetsRData instantiates a new ListSupportedAssetsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSupportedAssetsRDataWithDefaults instantiates a new ListSupportedAssetsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSupportedAssetsRI instantiates a new ListSupportedAssetsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSupportedAssetsRIWithDefaults instantiates a new ListSupportedAssetsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSupportedAssetsRWithDefaults instantiates a new ListSupportedAssetsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSupportedTokens400Response instantiates a new ListSupportedTokens400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSupportedTokens400ResponseWithDefaults instantiates a new ListSupportedTokens400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSupportedTokens401Response instantiates a new ListSupportedTokens401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSupportedTokens401ResponseWithDefaults instantiates a new ListSupportedTokens401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSupportedTokens403Response instantiates a new ListSupportedTokens403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSupportedTokens403ResponseWithDefaults instantiates a new ListSupportedTokens403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSupportedTokensR instantiates a new ListSupportedTokensR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSupportedTokensRData instantiates a new ListSupportedTokensRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSupportedTokensRDataWithDefaults instantiates a new ListSupportedTokensRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSupportedTokensRI instantiates a new ListSupportedTokensRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSupportedTokensRIWithDefaults instantiates a new ListSupportedTokensRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSupportedTokensRWithDefaults instantiates a new ListSupportedTokensR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSyncedAddresses400Response instantiates a new ListSyncedAddresses400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSyncedAddresses400ResponseWithDefaults instantiates a new ListSyncedAddresses400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSyncedAddresses401Response instantiates a new ListSyncedAddresses401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSyncedAddresses401ResponseWithDefaults instantiates a new ListSyncedAddresses401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSyncedAddresses403Response instantiates a new ListSyncedAddresses403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSyncedAddresses403ResponseWithDefaults instantiates a new ListSyncedAddresses403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSyncedAddressesR instantiates a new ListSyncedAddressesR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSyncedAddressesRData instantiates a new ListSyncedAddressesRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSyncedAddressesRDataWithDefaults instantiates a new ListSyncedAddressesRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSyncedAddressesRI instantiates a new ListSyncedAddressesRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSyncedAddressesRIWithDefaults instantiates a new ListSyncedAddressesRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSyncedAddressesRWithDefaults instantiates a new ListSyncedAddressesR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensByAddress400Response instantiates a new ListTokensByAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensByAddress400ResponseWithDefaults instantiates a new ListTokensByAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensByAddress401Response instantiates a new ListTokensByAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensByAddress401ResponseWithDefaults instantiates a new ListTokensByAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensByAddress403Response instantiates a new ListTokensByAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensByAddress403ResponseWithDefaults instantiates a new ListTokensByAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensByAddressR instantiates a new ListTokensByAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensByAddressRData instantiates a new ListTokensByAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensByAddressRDataWithDefaults instantiates a new ListTokensByAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensByAddressRI instantiates a new ListTokensByAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensByAddressRIWithDefaults instantiates a new ListTokensByAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensByAddressRWithDefaults instantiates a new ListTokensByAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensForwardingAutomations400Response instantiates a new ListTokensForwardingAutomations400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensForwardingAutomations400ResponseWithDefaults instantiates a new ListTokensForwardingAutomations400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensForwardingAutomations401Response instantiates a new ListTokensForwardingAutomations401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensForwardingAutomations401ResponseWithDefaults instantiates a new ListTokensForwardingAutomations401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensForwardingAutomations403Response instantiates a new ListTokensForwardingAutomations403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensForwardingAutomations403ResponseWithDefaults instantiates a new ListTokensForwardingAutomations403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensForwardingAutomationsR instantiates a new ListTokensForwardingAutomationsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensForwardingAutomationsRData instantiates a new ListTokensForwardingAutomationsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensForwardingAutomationsRDataWithDefaults instantiates a new ListTokensForwardingAutomationsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensForwardingAutomationsRI instantiates a new ListTokensForwardingAutomationsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensForwardingAutomationsRITSBOT instantiates a new ListTokensForwardingAutomationsRITSBOT object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensForwardingAutomationsRITSBOTWithDefaults instantiates a new ListTokensForwardingAutomationsRITSBOT object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensForwardingAutomationsRITSET instantiates a new ListTokensForwardingAutomationsRITSET object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensForwardingAutomationsRITSETWithDefaults instantiates a new ListTokensForwardingAutomationsRITSET object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensForwardingAutomationsRIWithDefaults instantiates a new ListTokensForwardingAutomationsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensForwardingAutomationsRWithDefaults instantiates a new ListTokensForwardingAutomationsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensTransfersByTransactionHash400Response instantiates a new ListTokensTransfersByTransactionHash400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensTransfersByTransactionHash400ResponseWithDefaults instantiates a new ListTokensTransfersByTransactionHash400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensTransfersByTransactionHash401Response instantiates a new ListTokensTransfersByTransactionHash401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensTransfersByTransactionHash401ResponseWithDefaults instantiates a new ListTokensTransfersByTransactionHash401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensTransfersByTransactionHash403Response instantiates a new ListTokensTransfersByTransactionHash403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensTransfersByTransactionHash403ResponseWithDefaults instantiates a new ListTokensTransfersByTransactionHash403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensTransfersByTransactionHashR instantiates a new ListTokensTransfersByTransactionHashR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensTransfersByTransactionHashRData instantiates a new ListTokensTransfersByTransactionHashRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensTransfersByTransactionHashRDataWithDefaults instantiates a new ListTokensTransfersByTransactionHashRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensTransfersByTransactionHashRI instantiates a new ListTokensTransfersByTransactionHashRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensTransfersByTransactionHashRITransactionFee instantiates a new ListTokensTransfersByTransactionHashRITransactionFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTokensTransfersByTransactionHashRITransactionFeeWithDefaults instantiates a new ListTokensTransfersByTransactionHashRITransactionFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensTransfersByTransactionHashRIWithDefaults instantiates a new ListTokensTransfersByTransactionHashRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTokensTransfersByTransactionHashRWithDefaults instantiates a new ListTokensTransfersByTransactionHashR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHash400Response instantiates a new ListTransactionsByBlockHash400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHash400ResponseWithDefaults instantiates a new ListTransactionsByBlockHash400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHash401Response instantiates a new ListTransactionsByBlockHash401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHash401ResponseWithDefaults instantiates a new ListTransactionsByBlockHash401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHash403Response instantiates a new ListTransactionsByBlockHash403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHash403ResponseWithDefaults instantiates a new ListTransactionsByBlockHash403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashR instantiates a new ListTransactionsByBlockHashR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRData instantiates a new ListTransactionsByBlockHashRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRDataWithDefaults instantiates a new ListTransactionsByBlockHashRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRI instantiates a new ListTransactionsByBlockHashRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSB instantiates a new ListTransactionsByBlockHashRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSBC instantiates a new ListTransactionsByBlockHashRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSBCVinInner instantiates a new ListTransactionsByBlockHashRIBSBCVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSBCVinInnerWithDefaults instantiates a new ListTransactionsByBlockHashRIBSBCVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSBCVoutInner instantiates a new ListTransactionsByBlockHashRIBSBCVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSBCVoutInnerScriptPubKey instantiates a new ListTransactionsByBlockHashRIBSBCVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSBCVoutInnerScriptPubKeyWithDefaults instantiates a new ListTransactionsByBlockHashRIBSBCVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSBCVoutInnerWithDefaults instantiates a new ListTransactionsByBlockHashRIBSBCVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSBCWithDefaults instantiates a new ListTransactionsByBlockHashRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSBSC instantiates a new ListTransactionsByBlockHashRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSBSCGasPrice instantiates a new ListTransactionsByBlockHashRIBSBSCGasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSBSCGasPriceWithDefaults instantiates a new ListTransactionsByBlockHashRIBSBSCGasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSBSCWithDefaults instantiates a new ListTransactionsByBlockHashRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSBVinInner instantiates a new ListTransactionsByBlockHashRIBSBVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSBVinInnerWithDefaults instantiates a new ListTransactionsByBlockHashRIBSBVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSBVoutInner instantiates a new ListTransactionsByBlockHashRIBSBVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSBVoutInnerScriptPubKey instantiates a new ListTransactionsByBlockHashRIBSBVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSBVoutInnerScriptPubKeyWithDefaults instantiates a new ListTransactionsByBlockHashRIBSBVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSBVoutInnerWithDefaults instantiates a new ListTransactionsByBlockHashRIBSBVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSBWithDefaults instantiates a new ListTransactionsByBlockHashRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSD instantiates a new ListTransactionsByBlockHashRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSD2 instantiates a new ListTransactionsByBlockHashRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSD2VinInner instantiates a new ListTransactionsByBlockHashRIBSD2VinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSD2VinInnerScriptSig instantiates a new ListTransactionsByBlockHashRIBSD2VinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSD2VinInnerScriptSigWithDefaults instantiates a new ListTransactionsByBlockHashRIBSD2VinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSD2VinInnerWithDefaults instantiates a new ListTransactionsByBlockHashRIBSD2VinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSD2VoutInner instantiates a new ListTransactionsByBlockHashRIBSD2VoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSD2VoutInnerScriptPubKey instantiates a new ListTransactionsByBlockHashRIBSD2VoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSD2VoutInnerScriptPubKeyWithDefaults instantiates a new ListTransactionsByBlockHashRIBSD2VoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSD2VoutInnerWithDefaults instantiates a new ListTransactionsByBlockHashRIBSD2VoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSD2WithDefaults instantiates a new ListTransactionsByBlockHashRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSDVinInner instantiates a new ListTransactionsByBlockHashRIBSDVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSDVinInnerWithDefaults instantiates a new ListTransactionsByBlockHashRIBSDVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSDVoutInner instantiates a new ListTransactionsByBlockHashRIBSDVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSDVoutInnerScriptPubKey instantiates a new ListTransactionsByBlockHashRIBSDVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSDVoutInnerScriptPubKeyWithDefaults instantiates a new ListTransactionsByBlockHashRIBSDVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSDVoutInnerWithDefaults instantiates a new ListTransactionsByBlockHashRIBSDVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSDWithDefaults instantiates a new ListTransactionsByBlockHashRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSE instantiates a new ListTransactionsByBlockHashRIBSE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSEC instantiates a new ListTransactionsByBlockHashRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSECWithDefaults instantiates a new ListTransactionsByBlockHashRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSEGasPrice instantiates a new ListTransactionsByBlockHashRIBSEGasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSEGasPriceWithDefaults instantiates a new ListTransactionsByBlockHashRIBSEGasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSEWithDefaults instantiates a new ListTransactionsByBlockHashRIBSE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSL instantiates a new ListTransactionsByBlockHashRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSLVinInner instantiates a new ListTransactionsByBlockHashRIBSLVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSLVinInnerScriptSig instantiates a new ListTransactionsByBlockHashRIBSLVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSLVinInnerScriptSigWithDefaults instantiates a new ListTransactionsByBlockHashRIBSLVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSLVinInnerWithDefaults instantiates a new ListTransactionsByBlockHashRIBSLVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSLVoutInner instantiates a new ListTransactionsByBlockHashRIBSLVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSLVoutInnerScriptPubKey instantiates a new ListTransactionsByBlockHashRIBSLVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSLVoutInnerScriptPubKeyWithDefaults instantiates a new ListTransactionsByBlockHashRIBSLVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSLVoutInnerWithDefaults instantiates a new ListTransactionsByBlockHashRIBSLVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSLWithDefaults instantiates a new ListTransactionsByBlockHashRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSZ instantiates a new ListTransactionsByBlockHashRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSZVinInner instantiates a new ListTransactionsByBlockHashRIBSZVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSZVinInnerScriptSig instantiates a new ListTransactionsByBlockHashRIBSZVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSZVinInnerScriptSigWithDefaults instantiates a new ListTransactionsByBlockHashRIBSZVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSZVinInnerWithDefaults instantiates a new ListTransactionsByBlockHashRIBSZVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSZVJoinSplitInner instantiates a new ListTransactionsByBlockHashRIBSZVJoinSplitInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIBSZVJoinSplitInnerWithDefaults instantiates a new ListTransactionsByBlockHashRIBSZVJoinSplitInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIBSZWithDefaults instantiates a new ListTransactionsByBlockHashRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIFee instantiates a new ListTransactionsByBlockHashRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIFeeWithDefaults instantiates a new ListTransactionsByBlockHashRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIRecipientsInner instantiates a new ListTransactionsByBlockHashRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRIRecipientsInnerWithDefaults instantiates a new ListTransactionsByBlockHashRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRISendersInner instantiates a new ListTransactionsByBlockHashRISendersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHashRISendersInnerWithDefaults instantiates a new ListTransactionsByBlockHashRISendersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRIWithDefaults instantiates a new ListTransactionsByBlockHashRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHashRWithDefaults instantiates a new ListTransactionsByBlockHashR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeight400Response instantiates a new ListTransactionsByBlockHeight400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeight400ResponseWithDefaults instantiates a new ListTransactionsByBlockHeight400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeight401Response instantiates a new ListTransactionsByBlockHeight401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeight401ResponseWithDefaults instantiates a new ListTransactionsByBlockHeight401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeight403Response instantiates a new ListTransactionsByBlockHeight403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeight403ResponseWithDefaults instantiates a new ListTransactionsByBlockHeight403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeight404Response instantiates a new ListTransactionsByBlockHeight404Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeight404ResponseWithDefaults instantiates a new ListTransactionsByBlockHeight404Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightR instantiates a new ListTransactionsByBlockHeightR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRData instantiates a new ListTransactionsByBlockHeightRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRDataWithDefaults instantiates a new ListTransactionsByBlockHeightRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRI instantiates a new ListTransactionsByBlockHeightRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSB instantiates a new ListTransactionsByBlockHeightRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSBC instantiates a new ListTransactionsByBlockHeightRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSBCWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSBSC instantiates a new ListTransactionsByBlockHeightRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSBSCGasPrice instantiates a new ListTransactionsByBlockHeightRIBSBSCGasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSBSCGasPriceWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSBSCGasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSBSCWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSBVoutInner instantiates a new ListTransactionsByBlockHeightRIBSBVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSBVoutInnerScriptPubKey instantiates a new ListTransactionsByBlockHeightRIBSBVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSBVoutInnerScriptPubKeyWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSBVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSBVoutInnerWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSBVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSBWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSD instantiates a new ListTransactionsByBlockHeightRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSD2 instantiates a new ListTransactionsByBlockHeightRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSD2VinInner instantiates a new ListTransactionsByBlockHeightRIBSD2VinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSD2VinInnerWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSD2VinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSD2WithDefaults instantiates a new ListTransactionsByBlockHeightRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSDVinInner instantiates a new ListTransactionsByBlockHeightRIBSDVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSDVinInnerScriptSig instantiates a new ListTransactionsByBlockHeightRIBSDVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSDVinInnerScriptSigWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSDVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSDVinInnerWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSDVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSDVoutInner instantiates a new ListTransactionsByBlockHeightRIBSDVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSDVoutInnerScriptPubKey instantiates a new ListTransactionsByBlockHeightRIBSDVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSDVoutInnerScriptPubKeyWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSDVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSDVoutInnerWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSDVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSDWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSE instantiates a new ListTransactionsByBlockHeightRIBSE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSEC instantiates a new ListTransactionsByBlockHeightRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSECGasPrice instantiates a new ListTransactionsByBlockHeightRIBSECGasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSECGasPriceWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSECGasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSECWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSEWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSL instantiates a new ListTransactionsByBlockHeightRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSLVinInner instantiates a new ListTransactionsByBlockHeightRIBSLVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSLVinInnerScriptSig instantiates a new ListTransactionsByBlockHeightRIBSLVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSLVinInnerScriptSigWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSLVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSLVinInnerWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSLVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSLVoutInner instantiates a new ListTransactionsByBlockHeightRIBSLVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSLVoutInnerScriptPubKey instantiates a new ListTransactionsByBlockHeightRIBSLVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSLVoutInnerScriptPubKeyWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSLVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSLVoutInnerWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSLVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSLWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSZ instantiates a new ListTransactionsByBlockHeightRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSZVinInner instantiates a new ListTransactionsByBlockHeightRIBSZVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSZVinInnerScriptSig instantiates a new ListTransactionsByBlockHeightRIBSZVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSZVinInnerScriptSigWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSZVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSZVinInnerWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSZVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSZVJoinSplitInner instantiates a new ListTransactionsByBlockHeightRIBSZVJoinSplitInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSZVJoinSplitInnerWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSZVJoinSplitInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSZVoutInner instantiates a new ListTransactionsByBlockHeightRIBSZVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSZVoutInnerScriptPubKey instantiates a new ListTransactionsByBlockHeightRIBSZVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSZVoutInnerScriptPubKeyWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSZVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSZVoutInnerWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSZVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSZVShieldedOutputInner instantiates a new ListTransactionsByBlockHeightRIBSZVShieldedOutputInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIBSZVShieldedOutputInnerWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSZVShieldedOutputInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIBSZWithDefaults instantiates a new ListTransactionsByBlockHeightRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIFee instantiates a new ListTransactionsByBlockHeightRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransactionsByBlockHeightRIFeeWithDefaults instantiates a new ListTransactionsByBlockHeightRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRIWithDefaults instantiates a new ListTransactionsByBlockHeightRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransactionsByBlockHeightRWithDefaults instantiates a new ListTransactionsByBlockHeightR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTokensTransfersByAddress400Response instantiates a new ListUnconfirmedTokensTransfersByAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTokensTransfersByAddress400ResponseWithDefaults instantiates a new ListUnconfirmedTokensTransfersByAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTokensTransfersByAddress401Response instantiates a new ListUnconfirmedTokensTransfersByAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTokensTransfersByAddress401ResponseWithDefaults instantiates a new ListUnconfirmedTokensTransfersByAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTokensTransfersByAddress403Response instantiates a new ListUnconfirmedTokensTransfersByAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTokensTransfersByAddress403ResponseWithDefaults instantiates a new ListUnconfirmedTokensTransfersByAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTokensTransfersByAddressR instantiates a new ListUnconfirmedTokensTransfersByAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTokensTransfersByAddressRData instantiates a new ListUnconfirmedTokensTransfersByAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTokensTransfersByAddressRDataWithDefaults instantiates a new ListUnconfirmedTokensTransfersByAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTokensTransfersByAddressRI instantiates a new ListUnconfirmedTokensTransfersByAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTokensTransfersByAddressRIWithDefaults instantiates a new ListUnconfirmedTokensTransfersByAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTokensTransfersByAddressRWithDefaults instantiates a new ListUnconfirmedTokensTransfersByAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddress400Response instantiates a new ListUnconfirmedTransactionsByAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddress400ResponseWithDefaults instantiates a new ListUnconfirmedTransactionsByAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddress401Response instantiates a new ListUnconfirmedTransactionsByAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddress401ResponseWithDefaults instantiates a new ListUnconfirmedTransactionsByAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddress403Response instantiates a new ListUnconfirmedTransactionsByAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddress403ResponseWithDefaults instantiates a new ListUnconfirmedTransactionsByAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressR instantiates a new ListUnconfirmedTransactionsByAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRData instantiates a new ListUnconfirmedTransactionsByAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRDataWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRI instantiates a new ListUnconfirmedTransactionsByAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSB instantiates a new ListUnconfirmedTransactionsByAddressRIBSB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSBC instantiates a new ListUnconfirmedTransactionsByAddressRIBSBC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSBCVinInner instantiates a new ListUnconfirmedTransactionsByAddressRIBSBCVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSBCVinInnerWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSBCVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSBCVoutInner instantiates a new ListUnconfirmedTransactionsByAddressRIBSBCVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSBCVoutInnerScriptPubKey instantiates a new ListUnconfirmedTransactionsByAddressRIBSBCVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSBCVoutInnerScriptPubKeyWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSBCVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSBCVoutInnerWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSBCVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSBCWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSBC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSBSC instantiates a new ListUnconfirmedTransactionsByAddressRIBSBSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSBSCWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSBSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSBVinInner instantiates a new ListUnconfirmedTransactionsByAddressRIBSBVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSBVinInnerScriptSig instantiates a new ListUnconfirmedTransactionsByAddressRIBSBVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSBVinInnerScriptSigWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSBVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSBVinInnerWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSBVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSBVoutInner instantiates a new ListUnconfirmedTransactionsByAddressRIBSBVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKey instantiates a new ListUnconfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKeyWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSBVoutInnerWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSBVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSBWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSD instantiates a new ListUnconfirmedTransactionsByAddressRIBSD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSD2 instantiates a new ListUnconfirmedTransactionsByAddressRIBSD2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSD2VinInner instantiates a new ListUnconfirmedTransactionsByAddressRIBSD2VinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSD2VinInnerWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSD2VinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSD2VoutInner instantiates a new ListUnconfirmedTransactionsByAddressRIBSD2VoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSD2VoutInnerWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSD2VoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSD2WithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSD2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSDVinInner instantiates a new ListUnconfirmedTransactionsByAddressRIBSDVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSDVinInnerWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSDVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSDWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSE instantiates a new ListUnconfirmedTransactionsByAddressRIBSE object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSEC instantiates a new ListUnconfirmedTransactionsByAddressRIBSEC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSECFee instantiates a new ListUnconfirmedTransactionsByAddressRIBSECFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSECFeeWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSECFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSECGasPrice instantiates a new ListUnconfirmedTransactionsByAddressRIBSECGasPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSECGasPriceWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSECGasPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSECWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSEC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSEFee instantiates a new ListUnconfirmedTransactionsByAddressRIBSEFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSEFeeWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSEFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSEWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSE object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSL instantiates a new ListUnconfirmedTransactionsByAddressRIBSL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSLVinInner instantiates a new ListUnconfirmedTransactionsByAddressRIBSLVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSLVinInnerScriptSig instantiates a new ListUnconfirmedTransactionsByAddressRIBSLVinInnerScriptSig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSLVinInnerScriptSigWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSLVinInnerScriptSig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSLVinInnerWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSLVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSLVoutInner instantiates a new ListUnconfirmedTransactionsByAddressRIBSLVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSLVoutInnerWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSLVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSLWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIBSZ instantiates a new ListUnconfirmedTransactionsByAddressRIBSZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIBSZWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIBSZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIRecipientsInner instantiates a new ListUnconfirmedTransactionsByAddressRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRIRecipientsInnerWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRISendersInner instantiates a new ListUnconfirmedTransactionsByAddressRISendersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnconfirmedTransactionsByAddressRISendersInnerWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRISendersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRIWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnconfirmedTransactionsByAddressRWithDefaults instantiates a new ListUnconfirmedTransactionsByAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnspentTransactionOutputsByAddress400Response instantiates a new ListUnspentTransactionOutputsByAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnspentTransactionOutputsByAddress400ResponseWithDefaults instantiates a new ListUnspentTransactionOutputsByAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnspentTransactionOutputsByAddress401Response instantiates a new ListUnspentTransactionOutputsByAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnspentTransactionOutputsByAddress401ResponseWithDefaults instantiates a new ListUnspentTransactionOutputsByAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnspentTransactionOutputsByAddress403Response instantiates a new ListUnspentTransactionOutputsByAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnspentTransactionOutputsByAddress403ResponseWithDefaults instantiates a new ListUnspentTransactionOutputsByAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnspentTransactionOutputsByAddressR instantiates a new ListUnspentTransactionOutputsByAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnspentTransactionOutputsByAddressRData instantiates a new ListUnspentTransactionOutputsByAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnspentTransactionOutputsByAddressRDataWithDefaults instantiates a new ListUnspentTransactionOutputsByAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnspentTransactionOutputsByAddressRI instantiates a new ListUnspentTransactionOutputsByAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUnspentTransactionOutputsByAddressRIWithDefaults instantiates a new ListUnspentTransactionOutputsByAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUnspentTransactionOutputsByAddressRWithDefaults instantiates a new ListUnspentTransactionOutputsByAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletTransactions400Response instantiates a new ListWalletTransactions400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletTransactions400ResponseWithDefaults instantiates a new ListWalletTransactions400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletTransactions401Response instantiates a new ListWalletTransactions401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletTransactions401ResponseWithDefaults instantiates a new ListWalletTransactions401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletTransactions403Response instantiates a new ListWalletTransactions403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletTransactions403ResponseWithDefaults instantiates a new ListWalletTransactions403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletTransactionsR instantiates a new ListWalletTransactionsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletTransactionsRData instantiates a new ListWalletTransactionsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletTransactionsRDataWithDefaults instantiates a new ListWalletTransactionsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletTransactionsRI instantiates a new ListWalletTransactionsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletTransactionsRIFee instantiates a new ListWalletTransactionsRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletTransactionsRIFeeWithDefaults instantiates a new ListWalletTransactionsRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletTransactionsRIFungibleTokensInner instantiates a new ListWalletTransactionsRIFungibleTokensInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletTransactionsRIFungibleTokensInnerWithDefaults instantiates a new ListWalletTransactionsRIFungibleTokensInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletTransactionsRIInternalTransactionsInner instantiates a new ListWalletTransactionsRIInternalTransactionsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletTransactionsRIInternalTransactionsInnerWithDefaults instantiates a new ListWalletTransactionsRIInternalTransactionsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletTransactionsRINonFungibleTokensInner instantiates a new ListWalletTransactionsRINonFungibleTokensInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletTransactionsRINonFungibleTokensInnerWithDefaults instantiates a new ListWalletTransactionsRINonFungibleTokensInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletTransactionsRIRecipientsInner instantiates a new ListWalletTransactionsRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletTransactionsRIRecipientsInnerWithDefaults instantiates a new ListWalletTransactionsRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletTransactionsRISendersInner instantiates a new ListWalletTransactionsRISendersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletTransactionsRISendersInnerWithDefaults instantiates a new ListWalletTransactionsRISendersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletTransactionsRIValue instantiates a new ListWalletTransactionsRIValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletTransactionsRIValueWithDefaults instantiates a new ListWalletTransactionsRIValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletTransactionsRIWithDefaults instantiates a new ListWalletTransactionsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletTransactionsRWithDefaults instantiates a new ListWalletTransactionsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddress400Response instantiates a new ListXRPRippleTransactionsByAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddress400ResponseWithDefaults instantiates a new ListXRPRippleTransactionsByAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddress401Response instantiates a new ListXRPRippleTransactionsByAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddress401ResponseWithDefaults instantiates a new ListXRPRippleTransactionsByAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddress403Response instantiates a new ListXRPRippleTransactionsByAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddress403ResponseWithDefaults instantiates a new ListXRPRippleTransactionsByAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddressAndTimeRange400Response instantiates a new ListXRPRippleTransactionsByAddressAndTimeRange400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddressAndTimeRange400ResponseWithDefaults instantiates a new ListXRPRippleTransactionsByAddressAndTimeRange400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddressAndTimeRange401Response instantiates a new ListXRPRippleTransactionsByAddressAndTimeRange401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddressAndTimeRange401ResponseWithDefaults instantiates a new ListXRPRippleTransactionsByAddressAndTimeRange401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddressAndTimeRange403Response instantiates a new ListXRPRippleTransactionsByAddressAndTimeRange403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddressAndTimeRange403ResponseWithDefaults instantiates a new ListXRPRippleTransactionsByAddressAndTimeRange403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddressAndTimeRangeR instantiates a new ListXRPRippleTransactionsByAddressAndTimeRangeR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddressAndTimeRangeRData instantiates a new ListXRPRippleTransactionsByAddressAndTimeRangeRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddressAndTimeRangeRDataWithDefaults instantiates a new ListXRPRippleTransactionsByAddressAndTimeRangeRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddressAndTimeRangeRI instantiates a new ListXRPRippleTransactionsByAddressAndTimeRangeRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddressAndTimeRangeRIWithDefaults instantiates a new ListXRPRippleTransactionsByAddressAndTimeRangeRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddressAndTimeRangeRWithDefaults instantiates a new ListXRPRippleTransactionsByAddressAndTimeRangeR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddressR instantiates a new ListXRPRippleTransactionsByAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddressRData instantiates a new ListXRPRippleTransactionsByAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddressRDataWithDefaults instantiates a new ListXRPRippleTransactionsByAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddressRI instantiates a new ListXRPRippleTransactionsByAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddressRIFee instantiates a new ListXRPRippleTransactionsByAddressRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddressRIFeeWithDefaults instantiates a new ListXRPRippleTransactionsByAddressRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddressRIOffer instantiates a new ListXRPRippleTransactionsByAddressRIOffer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddressRIOfferWithDefaults instantiates a new ListXRPRippleTransactionsByAddressRIOffer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddressRIReceive instantiates a new ListXRPRippleTransactionsByAddressRIReceive object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddressRIReceiveWithDefaults instantiates a new ListXRPRippleTransactionsByAddressRIReceive object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddressRIValue instantiates a new ListXRPRippleTransactionsByAddressRIValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByAddressRIValueWithDefaults instantiates a new ListXRPRippleTransactionsByAddressRIValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddressRIWithDefaults instantiates a new ListXRPRippleTransactionsByAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByAddressRWithDefaults instantiates a new ListXRPRippleTransactionsByAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHash400Response instantiates a new ListXRPRippleTransactionsByBlockHash400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHash400ResponseWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHash400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHash401Response instantiates a new ListXRPRippleTransactionsByBlockHash401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHash401ResponseWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHash401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHash403Response instantiates a new ListXRPRippleTransactionsByBlockHash403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHash403ResponseWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHash403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHashR instantiates a new ListXRPRippleTransactionsByBlockHashR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHashRData instantiates a new ListXRPRippleTransactionsByBlockHashRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHashRDataWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHashRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHashRI instantiates a new ListXRPRippleTransactionsByBlockHashRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHashRIFee instantiates a new ListXRPRippleTransactionsByBlockHashRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHashRIFeeWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHashRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHashRIOffer instantiates a new ListXRPRippleTransactionsByBlockHashRIOffer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHashRIOfferWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHashRIOffer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHashRIReceive instantiates a new ListXRPRippleTransactionsByBlockHashRIReceive object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHashRIReceiveWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHashRIReceive object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHashRIRecipientsInner instantiates a new ListXRPRippleTransactionsByBlockHashRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHashRIRecipientsInnerWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHashRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHashRISendersInner instantiates a new ListXRPRippleTransactionsByBlockHashRISendersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHashRISendersInnerWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHashRISendersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHashRIValue instantiates a new ListXRPRippleTransactionsByBlockHashRIValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHashRIValueWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHashRIValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHashRIWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHashRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHashRWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHashR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHeight400Response instantiates a new ListXRPRippleTransactionsByBlockHeight400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHeight400ResponseWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHeight400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHeight401Response instantiates a new ListXRPRippleTransactionsByBlockHeight401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHeight401ResponseWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHeight401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHeight403Response instantiates a new ListXRPRippleTransactionsByBlockHeight403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHeight403ResponseWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHeight403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHeightR instantiates a new ListXRPRippleTransactionsByBlockHeightR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHeightRData instantiates a new ListXRPRippleTransactionsByBlockHeightRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHeightRDataWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHeightRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHeightRI instantiates a new ListXRPRippleTransactionsByBlockHeightRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHeightRIFee instantiates a new ListXRPRippleTransactionsByBlockHeightRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHeightRIFeeWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHeightRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHeightRIOffer instantiates a new ListXRPRippleTransactionsByBlockHeightRIOffer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHeightRIOfferWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHeightRIOffer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHeightRIReceive instantiates a new ListXRPRippleTransactionsByBlockHeightRIReceive object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHeightRIReceiveWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHeightRIReceive object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHeightRIRecipientsInner instantiates a new ListXRPRippleTransactionsByBlockHeightRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHeightRIRecipientsInnerWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHeightRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHeightRISendersInner instantiates a new ListXRPRippleTransactionsByBlockHeightRISendersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHeightRISendersInnerWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHeightRISendersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHeightRIValue instantiates a new ListXRPRippleTransactionsByBlockHeightRIValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListXRPRippleTransactionsByBlockHeightRIValueWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHeightRIValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHeightRIWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHeightRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListXRPRippleTransactionsByBlockHeightRWithDefaults instantiates a new ListXRPRippleTransactionsByBlockHeightR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByAddress400Response instantiates a new ListZilliqaTransactionsByAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByAddress400ResponseWithDefaults instantiates a new ListZilliqaTransactionsByAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByAddress401Response instantiates a new ListZilliqaTransactionsByAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByAddress401ResponseWithDefaults instantiates a new ListZilliqaTransactionsByAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByAddress403Response instantiates a new ListZilliqaTransactionsByAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByAddress403ResponseWithDefaults instantiates a new ListZilliqaTransactionsByAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByAddressR instantiates a new ListZilliqaTransactionsByAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByAddressRData instantiates a new ListZilliqaTransactionsByAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByAddressRDataWithDefaults instantiates a new ListZilliqaTransactionsByAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByAddressRI instantiates a new ListZilliqaTransactionsByAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByAddressRIRecipientsInner instantiates a new ListZilliqaTransactionsByAddressRIRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByAddressRIRecipientsInnerWithDefaults instantiates a new ListZilliqaTransactionsByAddressRIRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByAddressRISendersInner instantiates a new ListZilliqaTransactionsByAddressRISendersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByAddressRISendersInnerWithDefaults instantiates a new ListZilliqaTransactionsByAddressRISendersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByAddressRIWithDefaults instantiates a new ListZilliqaTransactionsByAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByAddressRWithDefaults instantiates a new ListZilliqaTransactionsByAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByBlockHash400Response instantiates a new ListZilliqaTransactionsByBlockHash400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByBlockHash400ResponseWithDefaults instantiates a new ListZilliqaTransactionsByBlockHash400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByBlockHash401Response instantiates a new ListZilliqaTransactionsByBlockHash401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByBlockHash401ResponseWithDefaults instantiates a new ListZilliqaTransactionsByBlockHash401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByBlockHash403Response instantiates a new ListZilliqaTransactionsByBlockHash403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByBlockHash403ResponseWithDefaults instantiates a new ListZilliqaTransactionsByBlockHash403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByBlockHashR instantiates a new ListZilliqaTransactionsByBlockHashR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByBlockHashRData instantiates a new ListZilliqaTransactionsByBlockHashRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByBlockHashRDataWithDefaults instantiates a new ListZilliqaTransactionsByBlockHashRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByBlockHashRI instantiates a new ListZilliqaTransactionsByBlockHashRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByBlockHashRIWithDefaults instantiates a new ListZilliqaTransactionsByBlockHashRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByBlockHashRWithDefaults instantiates a new ListZilliqaTransactionsByBlockHashR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByBlockHeight400Response instantiates a new ListZilliqaTransactionsByBlockHeight400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByBlockHeight400ResponseWithDefaults instantiates a new ListZilliqaTransactionsByBlockHeight400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByBlockHeight401Response instantiates a new ListZilliqaTransactionsByBlockHeight401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByBlockHeight401ResponseWithDefaults instantiates a new ListZilliqaTransactionsByBlockHeight401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByBlockHeight403Response instantiates a new ListZilliqaTransactionsByBlockHeight403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByBlockHeight403ResponseWithDefaults instantiates a new ListZilliqaTransactionsByBlockHeight403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByBlockHeightR instantiates a new ListZilliqaTransactionsByBlockHeightR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByBlockHeightRData instantiates a new ListZilliqaTransactionsByBlockHeightRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByBlockHeightRDataWithDefaults instantiates a new ListZilliqaTransactionsByBlockHeightRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByBlockHeightRI instantiates a new ListZilliqaTransactionsByBlockHeightRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListZilliqaTransactionsByBlockHeightRIWithDefaults instantiates a new ListZilliqaTransactionsByBlockHeightRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListZilliqaTransactionsByBlockHeightRWithDefaults instantiates a new ListZilliqaTransactionsByBlockHeightR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMinedTransaction400Response instantiates a new MinedTransaction400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMinedTransaction400ResponseWithDefaults instantiates a new MinedTransaction400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMinedTransaction401Response instantiates a new MinedTransaction401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMinedTransaction401ResponseWithDefaults instantiates a new MinedTransaction401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMinedTransaction403Response instantiates a new MinedTransaction403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMinedTransaction403ResponseWithDefaults instantiates a new MinedTransaction403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMinedTransaction409Response instantiates a new MinedTransaction409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMinedTransaction409ResponseWithDefaults instantiates a new MinedTransaction409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMinedTransactionR instantiates a new MinedTransactionR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMinedTransactionRB instantiates a new MinedTransactionRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMinedTransactionRBData instantiates a new MinedTransactionRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMinedTransactionRBDataItem instantiates a new MinedTransactionRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMinedTransactionRBDataItemWithDefaults instantiates a new MinedTransactionRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMinedTransactionRBDataWithDefaults instantiates a new MinedTransactionRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMinedTransactionRBWithDefaults instantiates a new MinedTransactionRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMinedTransactionRData instantiates a new MinedTransactionRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMinedTransactionRDataWithDefaults instantiates a new MinedTransactionRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMinedTransactionRI instantiates a new MinedTransactionRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMinedTransactionRIWithDefaults instantiates a new MinedTransactionRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMinedTransactionRWithDefaults instantiates a new MinedTransactionR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMissingApiKey instantiates a new MissingApiKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMissingApiKeyWithDefaults instantiates a new MissingApiKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewBlock400Response instantiates a new NewBlock400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewBlock400ResponseWithDefaults instantiates a new NewBlock400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewBlock401Response instantiates a new NewBlock401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewBlock401ResponseWithDefaults instantiates a new NewBlock401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewBlock403Response instantiates a new NewBlock403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewBlock403ResponseWithDefaults instantiates a new NewBlock403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewBlock409Response instantiates a new NewBlock409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewBlock409ResponseWithDefaults instantiates a new NewBlock409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewBlockR instantiates a new NewBlockR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewBlockRB instantiates a new NewBlockRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewBlockRBData instantiates a new NewBlockRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewBlockRBDataItem instantiates a new NewBlockRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewBlockRBDataItemWithDefaults instantiates a new NewBlockRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewBlockRBDataWithDefaults instantiates a new NewBlockRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewBlockRBWithDefaults instantiates a new NewBlockRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewBlockRData instantiates a new NewBlockRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewBlockRDataWithDefaults instantiates a new NewBlockRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewBlockRI instantiates a new NewBlockRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewBlockRIWithDefaults instantiates a new NewBlockRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewBlockRWithDefaults instantiates a new NewBlockR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactions400Response instantiates a new NewConfirmedCoinsTransactions400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactions400ResponseWithDefaults instantiates a new NewConfirmedCoinsTransactions400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactions401Response instantiates a new NewConfirmedCoinsTransactions401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactions401ResponseWithDefaults instantiates a new NewConfirmedCoinsTransactions401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactions403Response instantiates a new NewConfirmedCoinsTransactions403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactions403ResponseWithDefaults instantiates a new NewConfirmedCoinsTransactions403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactions409Response instantiates a new NewConfirmedCoinsTransactions409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactions409ResponseWithDefaults instantiates a new NewConfirmedCoinsTransactions409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsAndEachConfirmation400Response instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmation400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsAndEachConfirmation400ResponseWithDefaults instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmation400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsAndEachConfirmation401Response instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmation401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsAndEachConfirmation401ResponseWithDefaults instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmation401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsAndEachConfirmation403Response instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmation403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsAndEachConfirmation403ResponseWithDefaults instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmation403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsAndEachConfirmation409Response instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmation409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsAndEachConfirmation409ResponseWithDefaults instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmation409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsAndEachConfirmationR instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmationR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsAndEachConfirmationRB instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmationRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsAndEachConfirmationRBData instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmationRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsAndEachConfirmationRBDataItem instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmationRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsAndEachConfirmationRBDataItemWithDefaults instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmationRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsAndEachConfirmationRBDataWithDefaults instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmationRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsAndEachConfirmationRBWithDefaults instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmationRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsAndEachConfirmationRData instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmationRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsAndEachConfirmationRDataWithDefaults instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmationRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsAndEachConfirmationRI instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmationRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsAndEachConfirmationRIWithDefaults instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmationRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsAndEachConfirmationRWithDefaults instantiates a new NewConfirmedCoinsTransactionsAndEachConfirmationR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsForSpecificAmount400Response instantiates a new NewConfirmedCoinsTransactionsForSpecificAmount400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsForSpecificAmount400ResponseWithDefaults instantiates a new NewConfirmedCoinsTransactionsForSpecificAmount400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsForSpecificAmount401Response instantiates a new NewConfirmedCoinsTransactionsForSpecificAmount401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsForSpecificAmount401ResponseWithDefaults instantiates a new NewConfirmedCoinsTransactionsForSpecificAmount401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsForSpecificAmount403Response instantiates a new NewConfirmedCoinsTransactionsForSpecificAmount403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsForSpecificAmount403ResponseWithDefaults instantiates a new NewConfirmedCoinsTransactionsForSpecificAmount403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsForSpecificAmount409Response instantiates a new NewConfirmedCoinsTransactionsForSpecificAmount409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsForSpecificAmount409ResponseWithDefaults instantiates a new NewConfirmedCoinsTransactionsForSpecificAmount409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsForSpecificAmountR instantiates a new NewConfirmedCoinsTransactionsForSpecificAmountR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsForSpecificAmountRB instantiates a new NewConfirmedCoinsTransactionsForSpecificAmountRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsForSpecificAmountRBData instantiates a new NewConfirmedCoinsTransactionsForSpecificAmountRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsForSpecificAmountRBDataItem instantiates a new NewConfirmedCoinsTransactionsForSpecificAmountRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsForSpecificAmountRBDataItemWithDefaults instantiates a new NewConfirmedCoinsTransactionsForSpecificAmountRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsForSpecificAmountRBDataWithDefaults instantiates a new NewConfirmedCoinsTransactionsForSpecificAmountRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsForSpecificAmountRBWithDefaults instantiates a new NewConfirmedCoinsTransactionsForSpecificAmountRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsForSpecificAmountRData instantiates a new NewConfirmedCoinsTransactionsForSpecificAmountRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsForSpecificAmountRDataWithDefaults instantiates a new NewConfirmedCoinsTransactionsForSpecificAmountRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsForSpecificAmountRI instantiates a new NewConfirmedCoinsTransactionsForSpecificAmountRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsForSpecificAmountRIWithDefaults instantiates a new NewConfirmedCoinsTransactionsForSpecificAmountRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsForSpecificAmountRWithDefaults instantiates a new NewConfirmedCoinsTransactionsForSpecificAmountR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsR instantiates a new NewConfirmedCoinsTransactionsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsRB instantiates a new NewConfirmedCoinsTransactionsRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsRBData instantiates a new NewConfirmedCoinsTransactionsRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsRBDataItem instantiates a new NewConfirmedCoinsTransactionsRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsRBDataItemWithDefaults instantiates a new NewConfirmedCoinsTransactionsRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsRBDataWithDefaults instantiates a new NewConfirmedCoinsTransactionsRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsRBWithDefaults instantiates a new NewConfirmedCoinsTransactionsRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsRData instantiates a new NewConfirmedCoinsTransactionsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsRDataWithDefaults instantiates a new NewConfirmedCoinsTransactionsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsRI instantiates a new NewConfirmedCoinsTransactionsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedCoinsTransactionsRIWithDefaults instantiates a new NewConfirmedCoinsTransactionsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedCoinsTransactionsRWithDefaults instantiates a new NewConfirmedCoinsTransactionsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactions400Response instantiates a new NewConfirmedInternalTransactions400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactions400ResponseWithDefaults instantiates a new NewConfirmedInternalTransactions400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactions401Response instantiates a new NewConfirmedInternalTransactions401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactions401ResponseWithDefaults instantiates a new NewConfirmedInternalTransactions401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactions403Response instantiates a new NewConfirmedInternalTransactions403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactions403ResponseWithDefaults instantiates a new NewConfirmedInternalTransactions403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactions409Response instantiates a new NewConfirmedInternalTransactions409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactions409ResponseWithDefaults instantiates a new NewConfirmedInternalTransactions409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsAndEachConfirmation400Response instantiates a new NewConfirmedInternalTransactionsAndEachConfirmation400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsAndEachConfirmation400ResponseWithDefaults instantiates a new NewConfirmedInternalTransactionsAndEachConfirmation400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsAndEachConfirmation401Response instantiates a new NewConfirmedInternalTransactionsAndEachConfirmation401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsAndEachConfirmation401ResponseWithDefaults instantiates a new NewConfirmedInternalTransactionsAndEachConfirmation401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsAndEachConfirmation403Response instantiates a new NewConfirmedInternalTransactionsAndEachConfirmation403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsAndEachConfirmation403ResponseWithDefaults instantiates a new NewConfirmedInternalTransactionsAndEachConfirmation403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsAndEachConfirmation409Response instantiates a new NewConfirmedInternalTransactionsAndEachConfirmation409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsAndEachConfirmation409ResponseWithDefaults instantiates a new NewConfirmedInternalTransactionsAndEachConfirmation409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsAndEachConfirmationR instantiates a new NewConfirmedInternalTransactionsAndEachConfirmationR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsAndEachConfirmationRB instantiates a new NewConfirmedInternalTransactionsAndEachConfirmationRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsAndEachConfirmationRBData instantiates a new NewConfirmedInternalTransactionsAndEachConfirmationRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsAndEachConfirmationRBDataItem instantiates a new NewConfirmedInternalTransactionsAndEachConfirmationRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsAndEachConfirmationRBDataItemWithDefaults instantiates a new NewConfirmedInternalTransactionsAndEachConfirmationRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsAndEachConfirmationRBDataWithDefaults instantiates a new NewConfirmedInternalTransactionsAndEachConfirmationRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsAndEachConfirmationRBWithDefaults instantiates a new NewConfirmedInternalTransactionsAndEachConfirmationRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsAndEachConfirmationRData instantiates a new NewConfirmedInternalTransactionsAndEachConfirmationRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsAndEachConfirmationRDataWithDefaults instantiates a new NewConfirmedInternalTransactionsAndEachConfirmationRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsAndEachConfirmationRI instantiates a new NewConfirmedInternalTransactionsAndEachConfirmationRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsAndEachConfirmationRIWithDefaults instantiates a new NewConfirmedInternalTransactionsAndEachConfirmationRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsAndEachConfirmationRWithDefaults instantiates a new NewConfirmedInternalTransactionsAndEachConfirmationR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsForSpecificAmount400Response instantiates a new NewConfirmedInternalTransactionsForSpecificAmount400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsForSpecificAmount400ResponseWithDefaults instantiates a new NewConfirmedInternalTransactionsForSpecificAmount400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsForSpecificAmount401Response instantiates a new NewConfirmedInternalTransactionsForSpecificAmount401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsForSpecificAmount401ResponseWithDefaults instantiates a new NewConfirmedInternalTransactionsForSpecificAmount401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsForSpecificAmount403Response instantiates a new NewConfirmedInternalTransactionsForSpecificAmount403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsForSpecificAmount403ResponseWithDefaults instantiates a new NewConfirmedInternalTransactionsForSpecificAmount403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsForSpecificAmount409Response instantiates a new NewConfirmedInternalTransactionsForSpecificAmount409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsForSpecificAmount409ResponseWithDefaults instantiates a new NewConfirmedInternalTransactionsForSpecificAmount409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsForSpecificAmountR instantiates a new NewConfirmedInternalTransactionsForSpecificAmountR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsForSpecificAmountRB instantiates a new NewConfirmedInternalTransactionsForSpecificAmountRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsForSpecificAmountRBData instantiates a new NewConfirmedInternalTransactionsForSpecificAmountRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsForSpecificAmountRBDataItem instantiates a new NewConfirmedInternalTransactionsForSpecificAmountRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsForSpecificAmountRBDataItemWithDefaults instantiates a new NewConfirmedInternalTransactionsForSpecificAmountRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsForSpecificAmountRBDataWithDefaults instantiates a new NewConfirmedInternalTransactionsForSpecificAmountRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsForSpecificAmountRBWithDefaults instantiates a new NewConfirmedInternalTransactionsForSpecificAmountRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsForSpecificAmountRData instantiates a new NewConfirmedInternalTransactionsForSpecificAmountRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsForSpecificAmountRDataWithDefaults instantiates a new NewConfirmedInternalTransactionsForSpecificAmountRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsForSpecificAmountRI instantiates a new NewConfirmedInternalTransactionsForSpecificAmountRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsForSpecificAmountRIWithDefaults instantiates a new NewConfirmedInternalTransactionsForSpecificAmountRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsForSpecificAmountRWithDefaults instantiates a new NewConfirmedInternalTransactionsForSpecificAmountR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsR instantiates a new NewConfirmedInternalTransactionsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsRB instantiates a new NewConfirmedInternalTransactionsRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsRBData instantiates a new NewConfirmedInternalTransactionsRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsRBDataItem instantiates a new NewConfirmedInternalTransactionsRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsRBDataItemWithDefaults instantiates a new NewConfirmedInternalTransactionsRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsRBDataWithDefaults instantiates a new NewConfirmedInternalTransactionsRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsRBWithDefaults instantiates a new NewConfirmedInternalTransactionsRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsRData instantiates a new NewConfirmedInternalTransactionsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsRDataWithDefaults instantiates a new NewConfirmedInternalTransactionsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsRI instantiates a new NewConfirmedInternalTransactionsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedInternalTransactionsRIWithDefaults instantiates a new NewConfirmedInternalTransactionsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedInternalTransactionsRWithDefaults instantiates a new NewConfirmedInternalTransactionsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactions400Response instantiates a new NewConfirmedTokensTransactions400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactions400ResponseWithDefaults instantiates a new NewConfirmedTokensTransactions400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactions401Response instantiates a new NewConfirmedTokensTransactions401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactions401ResponseWithDefaults instantiates a new NewConfirmedTokensTransactions401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactions403Response instantiates a new NewConfirmedTokensTransactions403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactions403ResponseWithDefaults instantiates a new NewConfirmedTokensTransactions403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactions409Response instantiates a new NewConfirmedTokensTransactions409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactions409ResponseWithDefaults instantiates a new NewConfirmedTokensTransactions409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsAndEachConfirmation400Response instantiates a new NewConfirmedTokensTransactionsAndEachConfirmation400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsAndEachConfirmation400ResponseWithDefaults instantiates a new NewConfirmedTokensTransactionsAndEachConfirmation400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsAndEachConfirmation401Response instantiates a new NewConfirmedTokensTransactionsAndEachConfirmation401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsAndEachConfirmation401ResponseWithDefaults instantiates a new NewConfirmedTokensTransactionsAndEachConfirmation401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsAndEachConfirmation403Response instantiates a new NewConfirmedTokensTransactionsAndEachConfirmation403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsAndEachConfirmation403ResponseWithDefaults instantiates a new NewConfirmedTokensTransactionsAndEachConfirmation403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsAndEachConfirmation409Response instantiates a new NewConfirmedTokensTransactionsAndEachConfirmation409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsAndEachConfirmation409ResponseWithDefaults instantiates a new NewConfirmedTokensTransactionsAndEachConfirmation409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsAndEachConfirmationR instantiates a new NewConfirmedTokensTransactionsAndEachConfirmationR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsAndEachConfirmationRB instantiates a new NewConfirmedTokensTransactionsAndEachConfirmationRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsAndEachConfirmationRBData instantiates a new NewConfirmedTokensTransactionsAndEachConfirmationRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsAndEachConfirmationRBDataItem instantiates a new NewConfirmedTokensTransactionsAndEachConfirmationRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsAndEachConfirmationRBDataItemWithDefaults instantiates a new NewConfirmedTokensTransactionsAndEachConfirmationRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsAndEachConfirmationRBDataWithDefaults instantiates a new NewConfirmedTokensTransactionsAndEachConfirmationRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsAndEachConfirmationRBWithDefaults instantiates a new NewConfirmedTokensTransactionsAndEachConfirmationRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsAndEachConfirmationRData instantiates a new NewConfirmedTokensTransactionsAndEachConfirmationRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsAndEachConfirmationRDataWithDefaults instantiates a new NewConfirmedTokensTransactionsAndEachConfirmationRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsAndEachConfirmationRI instantiates a new NewConfirmedTokensTransactionsAndEachConfirmationRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsAndEachConfirmationRIWithDefaults instantiates a new NewConfirmedTokensTransactionsAndEachConfirmationRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsAndEachConfirmationRWithDefaults instantiates a new NewConfirmedTokensTransactionsAndEachConfirmationR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsR instantiates a new NewConfirmedTokensTransactionsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsRB instantiates a new NewConfirmedTokensTransactionsRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsRBData instantiates a new NewConfirmedTokensTransactionsRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsRBDataItem instantiates a new NewConfirmedTokensTransactionsRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsRBDataItemWithDefaults instantiates a new NewConfirmedTokensTransactionsRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsRBDataWithDefaults instantiates a new NewConfirmedTokensTransactionsRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsRBWithDefaults instantiates a new NewConfirmedTokensTransactionsRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsRData instantiates a new NewConfirmedTokensTransactionsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsRDataWithDefaults instantiates a new NewConfirmedTokensTransactionsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsRI instantiates a new NewConfirmedTokensTransactionsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokensTransactionsRIWithDefaults instantiates a new NewConfirmedTokensTransactionsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokensTransactionsRWithDefaults instantiates a new NewConfirmedTokensTransactionsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokenTransactionsForSpecificAmount400Response instantiates a new NewConfirmedTokenTransactionsForSpecificAmount400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokenTransactionsForSpecificAmount400ResponseWithDefaults instantiates a new NewConfirmedTokenTransactionsForSpecificAmount400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokenTransactionsForSpecificAmount401Response instantiates a new NewConfirmedTokenTransactionsForSpecificAmount401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokenTransactionsForSpecificAmount401ResponseWithDefaults instantiates a new NewConfirmedTokenTransactionsForSpecificAmount401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokenTransactionsForSpecificAmount403Response instantiates a new NewConfirmedTokenTransactionsForSpecificAmount403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokenTransactionsForSpecificAmount403ResponseWithDefaults instantiates a new NewConfirmedTokenTransactionsForSpecificAmount403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokenTransactionsForSpecificAmount409Response instantiates a new NewConfirmedTokenTransactionsForSpecificAmount409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokenTransactionsForSpecificAmount409ResponseWithDefaults instantiates a new NewConfirmedTokenTransactionsForSpecificAmount409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokenTransactionsForSpecificAmountR instantiates a new NewConfirmedTokenTransactionsForSpecificAmountR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokenTransactionsForSpecificAmountRB instantiates a new NewConfirmedTokenTransactionsForSpecificAmountRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokenTransactionsForSpecificAmountRBData instantiates a new NewConfirmedTokenTransactionsForSpecificAmountRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokenTransactionsForSpecificAmountRBDataItem instantiates a new NewConfirmedTokenTransactionsForSpecificAmountRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokenTransactionsForSpecificAmountRBDataItemWithDefaults instantiates a new NewConfirmedTokenTransactionsForSpecificAmountRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokenTransactionsForSpecificAmountRBDataWithDefaults instantiates a new NewConfirmedTokenTransactionsForSpecificAmountRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokenTransactionsForSpecificAmountRBWithDefaults instantiates a new NewConfirmedTokenTransactionsForSpecificAmountRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokenTransactionsForSpecificAmountRData instantiates a new NewConfirmedTokenTransactionsForSpecificAmountRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokenTransactionsForSpecificAmountRDataWithDefaults instantiates a new NewConfirmedTokenTransactionsForSpecificAmountRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokenTransactionsForSpecificAmountRI instantiates a new NewConfirmedTokenTransactionsForSpecificAmountRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewConfirmedTokenTransactionsForSpecificAmountRIWithDefaults instantiates a new NewConfirmedTokenTransactionsForSpecificAmountRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewConfirmedTokenTransactionsForSpecificAmountRWithDefaults instantiates a new NewConfirmedTokenTransactionsForSpecificAmountR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedCoinsTransactions400Response instantiates a new NewUnconfirmedCoinsTransactions400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedCoinsTransactions400ResponseWithDefaults instantiates a new NewUnconfirmedCoinsTransactions400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedCoinsTransactions401Response instantiates a new NewUnconfirmedCoinsTransactions401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedCoinsTransactions401ResponseWithDefaults instantiates a new NewUnconfirmedCoinsTransactions401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedCoinsTransactions403Response instantiates a new NewUnconfirmedCoinsTransactions403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedCoinsTransactions403ResponseWithDefaults instantiates a new NewUnconfirmedCoinsTransactions403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedCoinsTransactions409Response instantiates a new NewUnconfirmedCoinsTransactions409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedCoinsTransactions409ResponseWithDefaults instantiates a new NewUnconfirmedCoinsTransactions409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedCoinsTransactionsR instantiates a new NewUnconfirmedCoinsTransactionsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedCoinsTransactionsRB instantiates a new NewUnconfirmedCoinsTransactionsRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedCoinsTransactionsRBData instantiates a new NewUnconfirmedCoinsTransactionsRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedCoinsTransactionsRBDataItem instantiates a new NewUnconfirmedCoinsTransactionsRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedCoinsTransactionsRBDataItemWithDefaults instantiates a new NewUnconfirmedCoinsTransactionsRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedCoinsTransactionsRBDataWithDefaults instantiates a new NewUnconfirmedCoinsTransactionsRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedCoinsTransactionsRBWithDefaults instantiates a new NewUnconfirmedCoinsTransactionsRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedCoinsTransactionsRData instantiates a new NewUnconfirmedCoinsTransactionsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedCoinsTransactionsRDataWithDefaults instantiates a new NewUnconfirmedCoinsTransactionsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedCoinsTransactionsRI instantiates a new NewUnconfirmedCoinsTransactionsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedCoinsTransactionsRIWithDefaults instantiates a new NewUnconfirmedCoinsTransactionsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedCoinsTransactionsRWithDefaults instantiates a new NewUnconfirmedCoinsTransactionsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedTokensTransactions400Response instantiates a new NewUnconfirmedTokensTransactions400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedTokensTransactions400ResponseWithDefaults instantiates a new NewUnconfirmedTokensTransactions400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedTokensTransactions401Response instantiates a new NewUnconfirmedTokensTransactions401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedTokensTransactions401ResponseWithDefaults instantiates a new NewUnconfirmedTokensTransactions401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedTokensTransactions403Response instantiates a new NewUnconfirmedTokensTransactions403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedTokensTransactions403ResponseWithDefaults instantiates a new NewUnconfirmedTokensTransactions403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedTokensTransactions409Response instantiates a new NewUnconfirmedTokensTransactions409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedTokensTransactions409ResponseWithDefaults instantiates a new NewUnconfirmedTokensTransactions409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedTokensTransactionsR instantiates a new NewUnconfirmedTokensTransactionsR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedTokensTransactionsRB instantiates a new NewUnconfirmedTokensTransactionsRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedTokensTransactionsRBData instantiates a new NewUnconfirmedTokensTransactionsRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedTokensTransactionsRBDataItem instantiates a new NewUnconfirmedTokensTransactionsRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedTokensTransactionsRBDataItemWithDefaults instantiates a new NewUnconfirmedTokensTransactionsRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedTokensTransactionsRBDataWithDefaults instantiates a new NewUnconfirmedTokensTransactionsRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedTokensTransactionsRBWithDefaults instantiates a new NewUnconfirmedTokensTransactionsRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedTokensTransactionsRData instantiates a new NewUnconfirmedTokensTransactionsRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedTokensTransactionsRDataWithDefaults instantiates a new NewUnconfirmedTokensTransactionsRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedTokensTransactionsRI instantiates a new NewUnconfirmedTokensTransactionsRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewUnconfirmedTokensTransactionsRIWithDefaults instantiates a new NewUnconfirmedTokensTransactionsRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewUnconfirmedTokensTransactionsRWithDefaults instantiates a new NewUnconfirmedTokensTransactionsR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub400Response instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub400ResponseWithDefaults instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub401Response instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub401ResponseWithDefaults instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub403Response instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub403ResponseWithDefaults instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubR instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRB instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBData instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBDataItem instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBDataItemFee instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBDataItemFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBDataItemFeeWithDefaults instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBDataItemFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBDataItemWithDefaults instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBDataWithDefaults instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBWithDefaults instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRData instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRDataWithDefaults instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRI instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRIFee instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRIFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRIFeeWithDefaults instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRIFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRIWithDefaults instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRWithDefaults instantiates a new PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub400Response instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub400ResponseWithDefaults instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub401Response instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub401ResponseWithDefaults instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub403Response instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub403ResponseWithDefaults instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubR instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRB instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBData instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItem instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItemFee instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItemFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItemFeeWithDefaults instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItemFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItemRecipientsInner instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItemRecipientsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItemRecipientsInnerWithDefaults instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItemRecipientsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItemWithDefaults instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataWithDefaults instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBWithDefaults instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRData instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRDataWithDefaults instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRI instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIVinInner instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIVinInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIVinInnerWithDefaults instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIVinInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIVoutInner instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIVoutInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIVoutInnerWithDefaults instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIVoutInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIWithDefaults instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRWithDefaults instantiates a new PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRequestLimitReached instantiates a new RequestLimitReached object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRequestLimitReachedWithDefaults instantiates a new RequestLimitReached object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourceNotFound instantiates a new ResourceNotFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceNotFoundWithDefaults instantiates a new ResourceNotFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncHDWalletXPubYPubZPub400Response instantiates a new SyncHDWalletXPubYPubZPub400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncHDWalletXPubYPubZPub400ResponseWithDefaults instantiates a new SyncHDWalletXPubYPubZPub400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncHDWalletXPubYPubZPub401Response instantiates a new SyncHDWalletXPubYPubZPub401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncHDWalletXPubYPubZPub401ResponseWithDefaults instantiates a new SyncHDWalletXPubYPubZPub401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncHDWalletXPubYPubZPub403Response instantiates a new SyncHDWalletXPubYPubZPub403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncHDWalletXPubYPubZPub403ResponseWithDefaults instantiates a new SyncHDWalletXPubYPubZPub403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncHDWalletXPubYPubZPub409Response instantiates a new SyncHDWalletXPubYPubZPub409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncHDWalletXPubYPubZPub409ResponseWithDefaults instantiates a new SyncHDWalletXPubYPubZPub409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncHDWalletXPubYPubZPub422Response instantiates a new SyncHDWalletXPubYPubZPub422Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncHDWalletXPubYPubZPub422ResponseWithDefaults instantiates a new SyncHDWalletXPubYPubZPub422Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncHDWalletXPubYPubZPubR instantiates a new SyncHDWalletXPubYPubZPubR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncHDWalletXPubYPubZPubRB instantiates a new SyncHDWalletXPubYPubZPubRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncHDWalletXPubYPubZPubRBData instantiates a new SyncHDWalletXPubYPubZPubRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncHDWalletXPubYPubZPubRBDataItem instantiates a new SyncHDWalletXPubYPubZPubRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncHDWalletXPubYPubZPubRBDataItemWithDefaults instantiates a new SyncHDWalletXPubYPubZPubRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncHDWalletXPubYPubZPubRBDataWithDefaults instantiates a new SyncHDWalletXPubYPubZPubRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncHDWalletXPubYPubZPubRBWithDefaults instantiates a new SyncHDWalletXPubYPubZPubRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncHDWalletXPubYPubZPubRData instantiates a new SyncHDWalletXPubYPubZPubRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncHDWalletXPubYPubZPubRDataWithDefaults instantiates a new SyncHDWalletXPubYPubZPubRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncHDWalletXPubYPubZPubRI instantiates a new SyncHDWalletXPubYPubZPubRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncHDWalletXPubYPubZPubRIWithDefaults instantiates a new SyncHDWalletXPubYPubZPubRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncHDWalletXPubYPubZPubRWithDefaults instantiates a new SyncHDWalletXPubYPubZPubR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncNewHDWalletXPubYPubZPub400Response instantiates a new SyncNewHDWalletXPubYPubZPub400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncNewHDWalletXPubYPubZPub400ResponseWithDefaults instantiates a new SyncNewHDWalletXPubYPubZPub400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncNewHDWalletXPubYPubZPub401Response instantiates a new SyncNewHDWalletXPubYPubZPub401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncNewHDWalletXPubYPubZPub401ResponseWithDefaults instantiates a new SyncNewHDWalletXPubYPubZPub401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncNewHDWalletXPubYPubZPub403Response instantiates a new SyncNewHDWalletXPubYPubZPub403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncNewHDWalletXPubYPubZPub403ResponseWithDefaults instantiates a new SyncNewHDWalletXPubYPubZPub403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncNewHDWalletXPubYPubZPub409Response instantiates a new SyncNewHDWalletXPubYPubZPub409Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncNewHDWalletXPubYPubZPub409ResponseWithDefaults instantiates a new SyncNewHDWalletXPubYPubZPub409Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncNewHDWalletXPubYPubZPub422Response instantiates a new SyncNewHDWalletXPubYPubZPub422Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncNewHDWalletXPubYPubZPub422ResponseWithDefaults instantiates a new SyncNewHDWalletXPubYPubZPub422Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncNewHDWalletXPubYPubZPubR instantiates a new SyncNewHDWalletXPubYPubZPubR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncNewHDWalletXPubYPubZPubRB instantiates a new SyncNewHDWalletXPubYPubZPubRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncNewHDWalletXPubYPubZPubRBWithDefaults instantiates a new SyncNewHDWalletXPubYPubZPubRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncNewHDWalletXPubYPubZPubRData instantiates a new SyncNewHDWalletXPubYPubZPubRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncNewHDWalletXPubYPubZPubRDataWithDefaults instantiates a new SyncNewHDWalletXPubYPubZPubRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncNewHDWalletXPubYPubZPubRI instantiates a new SyncNewHDWalletXPubYPubZPubRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyncNewHDWalletXPubYPubZPubRIWithDefaults instantiates a new SyncNewHDWalletXPubYPubZPubRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyncNewHDWalletXPubYPubZPubRWithDefaults instantiates a new SyncNewHDWalletXPubYPubZPubR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokensForwardingAutomationsLimitReached instantiates a new TokensForwardingAutomationsLimitReached object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokensForwardingAutomationsLimitReachedWithDefaults instantiates a new TokensForwardingAutomationsLimitReached object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokensForwardingFail instantiates a new TokensForwardingFail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokensForwardingFailData instantiates a new TokensForwardingFailData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokensForwardingFailDataItem instantiates a new TokensForwardingFailDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokensForwardingFailDataItemWithDefaults instantiates a new TokensForwardingFailDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokensForwardingFailDataWithDefaults instantiates a new TokensForwardingFailData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokensForwardingFailWithDefaults instantiates a new TokensForwardingFail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokensForwardingSuccess instantiates a new TokensForwardingSuccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokensForwardingSuccessData instantiates a new TokensForwardingSuccessData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokensForwardingSuccessDataItem instantiates a new TokensForwardingSuccessDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokensForwardingSuccessDataItemWithDefaults instantiates a new TokensForwardingSuccessDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokensForwardingSuccessDataWithDefaults instantiates a new TokensForwardingSuccessData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokensForwardingSuccessErc20 instantiates a new TokensForwardingSuccessErc20 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokensForwardingSuccessErc20WithDefaults instantiates a new TokensForwardingSuccessErc20 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokensForwardingSuccessErc721 instantiates a new TokensForwardingSuccessErc721 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokensForwardingSuccessErc721WithDefaults instantiates a new TokensForwardingSuccessErc721 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokensForwardingSuccessOmni instantiates a new TokensForwardingSuccessOmni object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokensForwardingSuccessOmniWithDefaults instantiates a new TokensForwardingSuccessOmni object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokensForwardingSuccessWithDefaults instantiates a new TokensForwardingSuccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionMined instantiates a new TransactionMined object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionMinedData instantiates a new TransactionMinedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionMinedDataItem instantiates a new TransactionMinedDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionMinedDataItemMinedInBlock instantiates a new TransactionMinedDataItemMinedInBlock object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionMinedDataItemMinedInBlockWithDefaults instantiates a new TransactionMinedDataItemMinedInBlock object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionMinedDataItemWithDefaults instantiates a new TransactionMinedDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionMinedDataWithDefaults instantiates a new TransactionMinedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionMinedWithDefaults instantiates a new TransactionMined object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestApproval instantiates a new TransactionRequestApproval object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestApprovalData instantiates a new TransactionRequestApprovalData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestApprovalDataItem instantiates a new TransactionRequestApprovalDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestApprovalDataItemWithDefaults instantiates a new TransactionRequestApprovalDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestApprovalDataWithDefaults instantiates a new TransactionRequestApprovalData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestApprovalWithDefaults instantiates a new TransactionRequestApproval object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestBroadcasted instantiates a new TransactionRequestBroadcasted object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestBroadcastedData instantiates a new TransactionRequestBroadcastedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestBroadcastedDataItem instantiates a new TransactionRequestBroadcastedDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestBroadcastedDataItemWithDefaults instantiates a new TransactionRequestBroadcastedDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestBroadcastedDataWithDefaults instantiates a new TransactionRequestBroadcastedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestBroadcastedWithDefaults instantiates a new TransactionRequestBroadcasted object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestFail instantiates a new TransactionRequestFail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestFailData instantiates a new TransactionRequestFailData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestFailDataItem instantiates a new TransactionRequestFailDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestFailDataItemWithDefaults instantiates a new TransactionRequestFailDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestFailDataWithDefaults instantiates a new TransactionRequestFailData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestFailWithDefaults instantiates a new TransactionRequestFail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestMined instantiates a new TransactionRequestMined object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestMinedData instantiates a new TransactionRequestMinedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestMinedDataWithDefaults instantiates a new TransactionRequestMinedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestMinedWithDefaults instantiates a new TransactionRequestMined object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestRejection instantiates a new TransactionRequestRejection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestRejectionData instantiates a new TransactionRequestRejectionData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestRejectionDataItem instantiates a new TransactionRequestRejectionDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionRequestRejectionDataItemWithDefaults instantiates a new TransactionRequestRejectionDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestRejectionDataWithDefaults instantiates a new TransactionRequestRejectionData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionRequestRejectionWithDefaults instantiates a new TransactionRequestRejection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUnexpectedServerError instantiates a new UnexpectedServerError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUnexpectedServerErrorWithDefaults instantiates a new UnexpectedServerError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUnimplemented instantiates a new Unimplemented object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUnimplementedWithDefaults instantiates a new Unimplemented object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUnsupportedMediaType instantiates a new UnsupportedMediaType object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUnsupportedMediaTypeWithDefaults instantiates a new UnsupportedMediaType object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUriNotFound instantiates a new UriNotFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUriNotFoundWithDefaults instantiates a new UriNotFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidateAddress400Response instantiates a new ValidateAddress400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidateAddress400ResponseWithDefaults instantiates a new ValidateAddress400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidateAddress401Response instantiates a new ValidateAddress401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidateAddress401ResponseWithDefaults instantiates a new ValidateAddress401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidateAddress403Response instantiates a new ValidateAddress403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidateAddress403ResponseWithDefaults instantiates a new ValidateAddress403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidateAddressR instantiates a new ValidateAddressR object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidateAddressRB instantiates a new ValidateAddressRB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidateAddressRBData instantiates a new ValidateAddressRBData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidateAddressRBDataItem instantiates a new ValidateAddressRBDataItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidateAddressRBDataItemWithDefaults instantiates a new ValidateAddressRBDataItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidateAddressRBDataWithDefaults instantiates a new ValidateAddressRBData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidateAddressRBWithDefaults instantiates a new ValidateAddressRB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidateAddressRData instantiates a new ValidateAddressRData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidateAddressRDataWithDefaults instantiates a new ValidateAddressRData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidateAddressRI instantiates a new ValidateAddressRI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidateAddressRIWithDefaults instantiates a new ValidateAddressRI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidateAddressRWithDefaults instantiates a new ValidateAddressR object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWalletAsAServiceAddressBalanceNotEnough instantiates a new WalletAsAServiceAddressBalanceNotEnough object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletAsAServiceAddressBalanceNotEnoughWithDefaults instantiates a new WalletAsAServiceAddressBalanceNotEnough object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWalletAsAServiceDepositAddressesLimitReached instantiates a new WalletAsAServiceDepositAddressesLimitReached object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletAsAServiceDepositAddressesLimitReachedWithDefaults instantiates a new WalletAsAServiceDepositAddressesLimitReached object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWalletAsAServiceNoDepositAddressesFound instantiates a new WalletAsAServiceNoDepositAddressesFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletAsAServiceNoDepositAddressesFoundWithDefaults instantiates a new WalletAsAServiceNoDepositAddressesFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType instantiates a new WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletTypeWithDefaults instantiates a new WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWalletAsAServiceTokenNotSupported instantiates a new WalletAsAServiceTokenNotSupported object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletAsAServiceTokenNotSupportedWithDefaults instantiates a new WalletAsAServiceTokenNotSupported object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWalletAsAServiceWalletBalanceNotEnough instantiates a new WalletAsAServiceWalletBalanceNotEnough object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletAsAServiceWalletBalanceNotEnoughWithDefaults instantiates a new WalletAsAServiceWalletBalanceNotEnough object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewXpubNotSynced instantiates a new XpubNotSynced object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewXpubNotSyncedWithDefaults instantiates a new XpubNotSynced object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewXpubSyncInProgress instantiates a new XpubSyncInProgress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewXpubSyncInProgressWithDefaults instantiates a new XpubSyncInProgress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.
TokensForwardingAutomationsLimitReachedAsAddTokensToExistingFromAddressE403 is a convenience function that returns TokensForwardingAutomationsLimitReached wrapped in AddTokensToExistingFromAddressE403.
TokensForwardingAutomationsLimitReachedAsCreateAutomaticTokensForwardingE403 is a convenience function that returns TokensForwardingAutomationsLimitReached wrapped in CreateAutomaticTokensForwardingE403.
TokensForwardingSuccessErc20AsTokensForwardingSuccessToken is a convenience function that returns TokensForwardingSuccessErc20 wrapped in TokensForwardingSuccessToken.
TokensForwardingSuccessErc721AsTokensForwardingSuccessToken is a convenience function that returns TokensForwardingSuccessErc721 wrapped in TokensForwardingSuccessToken.
TokensForwardingSuccessOmniAsTokensForwardingSuccessToken is a convenience function that returns TokensForwardingSuccessOmni wrapped in TokensForwardingSuccessToken.
UriNotFoundAsActivateBlockchainEventSubscriptionE400 is a convenience function that returns UriNotFound wrapped in ActivateBlockchainEventSubscriptionE400.
UriNotFoundAsAddTokensToExistingFromAddressE400 is a convenience function that returns UriNotFound wrapped in AddTokensToExistingFromAddressE400.
UriNotFoundAsBlockHeightReachedE400 is a convenience function that returns UriNotFound wrapped in BlockHeightReachedE400.
UriNotFoundAsBroadcastLocallySignedTransactionE400 is a convenience function that returns UriNotFound wrapped in BroadcastLocallySignedTransactionE400.
UriNotFoundAsConvertBitcoinCashAddressE400 is a convenience function that returns UriNotFound wrapped in ConvertBitcoinCashAddressE400.
UriNotFoundAsCreateAutomaticCoinsForwardingE400 is a convenience function that returns UriNotFound wrapped in CreateAutomaticCoinsForwardingE400.
UriNotFoundAsCreateAutomaticTokensForwardingE400 is a convenience function that returns UriNotFound wrapped in CreateAutomaticTokensForwardingE400.
UriNotFoundAsCreateCoinsTransactionFromAddressForWholeAmountE400 is a convenience function that returns UriNotFound wrapped in CreateCoinsTransactionFromAddressForWholeAmountE400.
UriNotFoundAsCreateCoinsTransactionRequestFromAddressE400 is a convenience function that returns UriNotFound wrapped in CreateCoinsTransactionRequestFromAddressE400.
UriNotFoundAsCreateCoinsTransactionRequestFromWalletE400 is a convenience function that returns UriNotFound wrapped in CreateCoinsTransactionRequestFromWalletE400.
UriNotFoundAsCreateFungibleTokensTransactionRequestFromAddressE400 is a convenience function that returns UriNotFound wrapped in CreateFungibleTokensTransactionRequestFromAddressE400.
UriNotFoundAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE400 is a convenience function that returns UriNotFound wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE400.
UriNotFoundAsCreateSingleTransactionRequestFromAddressWithoutFeePriorityE400 is a convenience function that returns UriNotFound wrapped in CreateSingleTransactionRequestFromAddressWithoutFeePriorityE400.
UriNotFoundAsDecodeRawTransactionHexE400 is a convenience function that returns UriNotFound wrapped in DecodeRawTransactionHexE400.
UriNotFoundAsDecodeXAddressE400 is a convenience function that returns UriNotFound wrapped in DecodeXAddressE400.
UriNotFoundAsDeleteAutomaticCoinsForwardingE400 is a convenience function that returns UriNotFound wrapped in DeleteAutomaticCoinsForwardingE400.
UriNotFoundAsDeleteAutomaticTokensForwardingE400 is a convenience function that returns UriNotFound wrapped in DeleteAutomaticTokensForwardingE400.
UriNotFoundAsDeleteBlockchainEventSubscriptionE400 is a convenience function that returns UriNotFound wrapped in DeleteBlockchainEventSubscriptionE400.
UriNotFoundAsDeriveAndSyncNewChangeAddressesE400 is a convenience function that returns UriNotFound wrapped in DeriveAndSyncNewChangeAddressesE400.
UriNotFoundAsDeriveAndSyncNewReceivingAddressesE400 is a convenience function that returns UriNotFound wrapped in DeriveAndSyncNewReceivingAddressesE400.
UriNotFoundAsDeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE400 is a convenience function that returns UriNotFound wrapped in DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE400.
UriNotFoundAsEncodeXAddressE400 is a convenience function that returns UriNotFound wrapped in EncodeXAddressE400.
UriNotFoundAsEstimateGasLimitE400 is a convenience function that returns UriNotFound wrapped in EstimateGasLimitE400.
UriNotFoundAsEstimateTokenGasLimitE400 is a convenience function that returns UriNotFound wrapped in EstimateTokenGasLimitE400.
UriNotFoundAsEstimateTransactionSmartFeeE400 is a convenience function that returns UriNotFound wrapped in EstimateTransactionSmartFeeE400.
UriNotFoundAsGenerateDepositAddressE400 is a convenience function that returns UriNotFound wrapped in GenerateDepositAddressE400.
UriNotFoundAsGetAddressBalanceE400 is a convenience function that returns UriNotFound wrapped in GetAddressBalanceE400.
UriNotFoundAsGetAddressDetailsE400 is a convenience function that returns UriNotFound wrapped in GetAddressDetailsE400.
UriNotFoundAsGetAddressDetailsFromCallbackE400 is a convenience function that returns UriNotFound wrapped in GetAddressDetailsFromCallbackE400.
UriNotFoundAsGetAssetDetailsByAssetIDE400 is a convenience function that returns UriNotFound wrapped in GetAssetDetailsByAssetIDE400.
UriNotFoundAsGetAssetDetailsByAssetSymbolE400 is a convenience function that returns UriNotFound wrapped in GetAssetDetailsByAssetSymbolE400.
UriNotFoundAsGetBlockchainEventSubscriptionDetailsByReferenceIDE400 is a convenience function that returns UriNotFound wrapped in GetBlockchainEventSubscriptionDetailsByReferenceIDE400.
UriNotFoundAsGetBlockDetailsByBlockHashE400 is a convenience function that returns UriNotFound wrapped in GetBlockDetailsByBlockHashE400.
UriNotFoundAsGetBlockDetailsByBlockHashFromCallbackE400 is a convenience function that returns UriNotFound wrapped in GetBlockDetailsByBlockHashFromCallbackE400.
UriNotFoundAsGetBlockDetailsByBlockHeightE400 is a convenience function that returns UriNotFound wrapped in GetBlockDetailsByBlockHeightE400.
UriNotFoundAsGetBlockDetailsByBlockHeightFromCallbackE400 is a convenience function that returns UriNotFound wrapped in GetBlockDetailsByBlockHeightFromCallbackE400.
UriNotFoundAsGetEIP1559FeeRecommendationsE400 is a convenience function that returns UriNotFound wrapped in GetEIP1559FeeRecommendationsE400.
UriNotFoundAsGetExchangeRateByAssetsIDsE400 is a convenience function that returns UriNotFound wrapped in GetExchangeRateByAssetsIDsE400.
UriNotFoundAsGetExchangeRateByAssetSymbolsE400 is a convenience function that returns UriNotFound wrapped in GetExchangeRateByAssetSymbolsE400.
UriNotFoundAsGetFeeAddressDetailsE400 is a convenience function that returns UriNotFound wrapped in GetFeeAddressDetailsE400.
UriNotFoundAsGetFeeRecommendationsE400 is a convenience function that returns UriNotFound wrapped in GetFeeRecommendationsE400.
UriNotFoundAsGetHDWalletXPubYPubZPubAssetsE400 is a convenience function that returns UriNotFound wrapped in GetHDWalletXPubYPubZPubAssetsE400.
UriNotFoundAsGetHDWalletXPubYPubZPubDetailsE400 is a convenience function that returns UriNotFound wrapped in GetHDWalletXPubYPubZPubDetailsE400.
UriNotFoundAsGetInternalTransactionByTransactionHashAndOperationIdE400 is a convenience function that returns UriNotFound wrapped in GetInternalTransactionByTransactionHashAndOperationIdE400.
UriNotFoundAsGetLastMinedBlockE400 is a convenience function that returns UriNotFound wrapped in GetLastMinedBlockE400.
UriNotFoundAsGetLatestMinedXRPRippleBlockE400 is a convenience function that returns UriNotFound wrapped in GetLatestMinedXRPRippleBlockE400.
UriNotFoundAsGetLatestMinedZilliqaBlockE400 is a convenience function that returns UriNotFound wrapped in GetLatestMinedZilliqaBlockE400.
UriNotFoundAsGetNextAvailableNonceE400 is a convenience function that returns UriNotFound wrapped in GetNextAvailableNonceE400.
UriNotFoundAsGetRawTransactionDataE400 is a convenience function that returns UriNotFound wrapped in GetRawTransactionDataE400.
UriNotFoundAsGetTokenDetailsByContractAddressE400 is a convenience function that returns UriNotFound wrapped in GetTokenDetailsByContractAddressE400.
UriNotFoundAsGetTransactionDetailsByTransactionIDE400 is a convenience function that returns UriNotFound wrapped in GetTransactionDetailsByTransactionIDE400.
UriNotFoundAsGetTransactionDetailsByTransactionIDFromCallbackE400 is a convenience function that returns UriNotFound wrapped in GetTransactionDetailsByTransactionIDFromCallbackE400.
UriNotFoundAsGetTransactionRequestDetailsE400 is a convenience function that returns UriNotFound wrapped in GetTransactionRequestDetailsE400.
UriNotFoundAsGetWalletAssetDetailsE400 is a convenience function that returns UriNotFound wrapped in GetWalletAssetDetailsE400.
UriNotFoundAsGetWalletTransactionDetailsByTransactionIDE400 is a convenience function that returns UriNotFound wrapped in GetWalletTransactionDetailsByTransactionIDE400.
UriNotFoundAsGetXRPRippleAddressDetailsE400 is a convenience function that returns UriNotFound wrapped in GetXRPRippleAddressDetailsE400.
UriNotFoundAsGetXRPRippleBlockDetailsByBlockHashE400 is a convenience function that returns UriNotFound wrapped in GetXRPRippleBlockDetailsByBlockHashE400.
UriNotFoundAsGetXRPRippleBlockDetailsByBlockHeightE400 is a convenience function that returns UriNotFound wrapped in GetXRPRippleBlockDetailsByBlockHeightE400.
UriNotFoundAsGetXRPRippleTransactionDetailsByTransactionIDE400 is a convenience function that returns UriNotFound wrapped in GetXRPRippleTransactionDetailsByTransactionIDE400.
UriNotFoundAsGetZilliqaAddressDetailsE400 is a convenience function that returns UriNotFound wrapped in GetZilliqaAddressDetailsE400.
UriNotFoundAsGetZilliqaBlockDetailsByBlockHashE400 is a convenience function that returns UriNotFound wrapped in GetZilliqaBlockDetailsByBlockHashE400.
UriNotFoundAsGetZilliqaBlockDetailsByBlockHeightE400 is a convenience function that returns UriNotFound wrapped in GetZilliqaBlockDetailsByBlockHeightE400.
UriNotFoundAsGetZilliqaTransactionDetailsByTransactionIDE400 is a convenience function that returns UriNotFound wrapped in GetZilliqaTransactionDetailsByTransactionIDE400.
UriNotFoundAsListAllAssetsByWalletIDE400 is a convenience function that returns UriNotFound wrapped in ListAllAssetsByWalletIDE400.
UriNotFoundAsListAllAssetsFromAllWalletsE400 is a convenience function that returns UriNotFound wrapped in ListAllAssetsFromAllWalletsE400.
UriNotFoundAsListBlockchainEventsSubscriptionsE400 is a convenience function that returns UriNotFound wrapped in ListBlockchainEventsSubscriptionsE400.
UriNotFoundAsListCoinsForwardingAutomationsE400 is a convenience function that returns UriNotFound wrapped in ListCoinsForwardingAutomationsE400.
UriNotFoundAsListConfirmedTokensTransfersByAddressAndTimeRangeE400 is a convenience function that returns UriNotFound wrapped in ListConfirmedTokensTransfersByAddressAndTimeRangeE400.
UriNotFoundAsListConfirmedTokensTransfersByAddressE400 is a convenience function that returns UriNotFound wrapped in ListConfirmedTokensTransfersByAddressE400.
UriNotFoundAsListConfirmedTransactionsByAddressAndTimeRangeE400 is a convenience function that returns UriNotFound wrapped in ListConfirmedTransactionsByAddressAndTimeRangeE400.
UriNotFoundAsListConfirmedTransactionsByAddressE400 is a convenience function that returns UriNotFound wrapped in ListConfirmedTransactionsByAddressE400.
UriNotFoundAsListDepositAddressesE400 is a convenience function that returns UriNotFound wrapped in ListDepositAddressesE400.
UriNotFoundAsListHDWalletXPubYPubZPubTransactionsE400 is a convenience function that returns UriNotFound wrapped in ListHDWalletXPubYPubZPubTransactionsE400.
UriNotFoundAsListHDWalletXPubYPubZPubUTXOsE400 is a convenience function that returns UriNotFound wrapped in ListHDWalletXPubYPubZPubUTXOsE400.
UriNotFoundAsListInternalTransactionDetailsByTransactionHashE400 is a convenience function that returns UriNotFound wrapped in ListInternalTransactionDetailsByTransactionHashE400.
UriNotFoundAsListInternalTransactionsByAddressAndTimeRangeE400 is a convenience function that returns UriNotFound wrapped in ListInternalTransactionsByAddressAndTimeRangeE400.
UriNotFoundAsListInternalTransactionsByAddressE400 is a convenience function that returns UriNotFound wrapped in ListInternalTransactionsByAddressE400.
UriNotFoundAsListLatestMinedBlocksE400 is a convenience function that returns UriNotFound wrapped in ListLatestMinedBlocksE400.
UriNotFoundAsListSupportedAssetsE400 is a convenience function that returns UriNotFound wrapped in ListSupportedAssetsE400.
UriNotFoundAsListSupportedTokensE400 is a convenience function that returns UriNotFound wrapped in ListSupportedTokensE400.
UriNotFoundAsListSyncedAddressesE400 is a convenience function that returns UriNotFound wrapped in ListSyncedAddressesE400.
UriNotFoundAsListTokensByAddressE400 is a convenience function that returns UriNotFound wrapped in ListTokensByAddressE400.
UriNotFoundAsListTokensForwardingAutomationsE400 is a convenience function that returns UriNotFound wrapped in ListTokensForwardingAutomationsE400.
UriNotFoundAsListTokensTransfersByTransactionHashE400 is a convenience function that returns UriNotFound wrapped in ListTokensTransfersByTransactionHashE400.
UriNotFoundAsListTransactionsByBlockHashE400 is a convenience function that returns UriNotFound wrapped in ListTransactionsByBlockHashE400.
UriNotFoundAsListTransactionsByBlockHeightE400 is a convenience function that returns UriNotFound wrapped in ListTransactionsByBlockHeightE400.
UriNotFoundAsListUnconfirmedTokensTransfersByAddressE400 is a convenience function that returns UriNotFound wrapped in ListUnconfirmedTokensTransfersByAddressE400.
UriNotFoundAsListUnconfirmedTransactionsByAddressE400 is a convenience function that returns UriNotFound wrapped in ListUnconfirmedTransactionsByAddressE400.
UriNotFoundAsListUnspentTransactionOutputsByAddressE400 is a convenience function that returns UriNotFound wrapped in ListUnspentTransactionOutputsByAddressE400.
UriNotFoundAsListWalletTransactionsE400 is a convenience function that returns UriNotFound wrapped in ListWalletTransactionsE400.
UriNotFoundAsListXRPRippleTransactionsByAddressAndTimeRangeE400 is a convenience function that returns UriNotFound wrapped in ListXRPRippleTransactionsByAddressAndTimeRangeE400.
UriNotFoundAsListXRPRippleTransactionsByAddressE400 is a convenience function that returns UriNotFound wrapped in ListXRPRippleTransactionsByAddressE400.
UriNotFoundAsListXRPRippleTransactionsByBlockHashE400 is a convenience function that returns UriNotFound wrapped in ListXRPRippleTransactionsByBlockHashE400.
UriNotFoundAsListXRPRippleTransactionsByBlockHeightE400 is a convenience function that returns UriNotFound wrapped in ListXRPRippleTransactionsByBlockHeightE400.
UriNotFoundAsListZilliqaTransactionsByAddressE400 is a convenience function that returns UriNotFound wrapped in ListZilliqaTransactionsByAddressE400.
UriNotFoundAsListZilliqaTransactionsByBlockHashE400 is a convenience function that returns UriNotFound wrapped in ListZilliqaTransactionsByBlockHashE400.
UriNotFoundAsListZilliqaTransactionsByBlockHeightE400 is a convenience function that returns UriNotFound wrapped in ListZilliqaTransactionsByBlockHeightE400.
UriNotFoundAsMinedTransactionE400 is a convenience function that returns UriNotFound wrapped in MinedTransactionE400.
UriNotFoundAsNewBlockE400 is a convenience function that returns UriNotFound wrapped in NewBlockE400.
UriNotFoundAsNewConfirmedCoinsTransactionsAndEachConfirmationE400 is a convenience function that returns UriNotFound wrapped in NewConfirmedCoinsTransactionsAndEachConfirmationE400.
UriNotFoundAsNewConfirmedCoinsTransactionsE400 is a convenience function that returns UriNotFound wrapped in NewConfirmedCoinsTransactionsE400.
UriNotFoundAsNewConfirmedCoinsTransactionsForSpecificAmountE400 is a convenience function that returns UriNotFound wrapped in NewConfirmedCoinsTransactionsForSpecificAmountE400.
UriNotFoundAsNewConfirmedInternalTransactionsAndEachConfirmationE400 is a convenience function that returns UriNotFound wrapped in NewConfirmedInternalTransactionsAndEachConfirmationE400.
UriNotFoundAsNewConfirmedInternalTransactionsE400 is a convenience function that returns UriNotFound wrapped in NewConfirmedInternalTransactionsE400.
UriNotFoundAsNewConfirmedInternalTransactionsForSpecificAmountE400 is a convenience function that returns UriNotFound wrapped in NewConfirmedInternalTransactionsForSpecificAmountE400.
UriNotFoundAsNewConfirmedTokensTransactionsAndEachConfirmationE400 is a convenience function that returns UriNotFound wrapped in NewConfirmedTokensTransactionsAndEachConfirmationE400.
UriNotFoundAsNewConfirmedTokensTransactionsE400 is a convenience function that returns UriNotFound wrapped in NewConfirmedTokensTransactionsE400.
UriNotFoundAsNewConfirmedTokenTransactionsForSpecificAmountE400 is a convenience function that returns UriNotFound wrapped in NewConfirmedTokenTransactionsForSpecificAmountE400.
UriNotFoundAsNewUnconfirmedCoinsTransactionsE400 is a convenience function that returns UriNotFound wrapped in NewUnconfirmedCoinsTransactionsE400.
UriNotFoundAsNewUnconfirmedTokensTransactionsE400 is a convenience function that returns UriNotFound wrapped in NewUnconfirmedTokensTransactionsE400.
UriNotFoundAsPrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE400 is a convenience function that returns UriNotFound wrapped in PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE400.
UriNotFoundAsPrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE400 is a convenience function that returns UriNotFound wrapped in PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE400.
UriNotFoundAsSyncHDWalletXPubYPubZPubE400 is a convenience function that returns UriNotFound wrapped in SyncHDWalletXPubYPubZPubE400.
UriNotFoundAsSyncNewHDWalletXPubYPubZPubE400 is a convenience function that returns UriNotFound wrapped in SyncNewHDWalletXPubYPubZPubE400.
UriNotFoundAsValidateAddressE400 is a convenience function that returns UriNotFound wrapped in ValidateAddressE400.
WalletAsAServiceAddressBalanceNotEnoughAsCreateCoinsTransactionFromAddressForWholeAmountE409 is a convenience function that returns WalletAsAServiceAddressBalanceNotEnough wrapped in CreateCoinsTransactionFromAddressForWholeAmountE409.
WalletAsAServiceAddressBalanceNotEnoughAsCreateCoinsTransactionRequestFromAddressE409 is a convenience function that returns WalletAsAServiceAddressBalanceNotEnough wrapped in CreateCoinsTransactionRequestFromAddressE409.
WalletAsAServiceAddressBalanceNotEnoughAsCreateCoinsTransactionRequestFromWalletE409 is a convenience function that returns WalletAsAServiceAddressBalanceNotEnough wrapped in CreateCoinsTransactionRequestFromWalletE409.
WalletAsAServiceAddressBalanceNotEnoughAsCreateFungibleTokensTransactionRequestFromAddressE409 is a convenience function that returns WalletAsAServiceAddressBalanceNotEnough wrapped in CreateFungibleTokensTransactionRequestFromAddressE409.
WalletAsAServiceAddressBalanceNotEnoughAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE409 is a convenience function that returns WalletAsAServiceAddressBalanceNotEnough wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE409.
WalletAsAServiceAddressBalanceNotEnoughAsCreateSingleTransactionRequestFromAddressWithoutFeePriorityE409 is a convenience function that returns WalletAsAServiceAddressBalanceNotEnough wrapped in CreateSingleTransactionRequestFromAddressWithoutFeePriorityE409.
WalletAsAServiceDepositAddressesLimitReachedAsGenerateDepositAddressE403 is a convenience function that returns WalletAsAServiceDepositAddressesLimitReached wrapped in GenerateDepositAddressE403.
WalletAsAServiceNoDepositAddressesFoundAsCreateCoinsTransactionRequestFromWalletE409 is a convenience function that returns WalletAsAServiceNoDepositAddressesFound wrapped in CreateCoinsTransactionRequestFromWalletE409.
WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletTypeAsCreateCoinsTransactionFromAddressForWholeAmountE403 is a convenience function that returns WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType wrapped in CreateCoinsTransactionFromAddressForWholeAmountE403.
WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletTypeAsCreateCoinsTransactionRequestFromAddressE403 is a convenience function that returns WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType wrapped in CreateCoinsTransactionRequestFromAddressE403.
WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletTypeAsCreateCoinsTransactionRequestFromWalletE403 is a convenience function that returns WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType wrapped in CreateCoinsTransactionRequestFromWalletE403.
WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletTypeAsCreateFungibleTokensTransactionRequestFromAddressE403 is a convenience function that returns WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType wrapped in CreateFungibleTokensTransactionRequestFromAddressE403.
WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletTypeAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE403 is a convenience function that returns WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE403.
WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletTypeAsCreateSingleTransactionRequestFromAddressWithoutFeePriorityE403 is a convenience function that returns WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType wrapped in CreateSingleTransactionRequestFromAddressWithoutFeePriorityE403.
WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletTypeAsGenerateDepositAddressE403 is a convenience function that returns WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType wrapped in GenerateDepositAddressE403.
WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletTypeAsGetWalletAssetDetailsE403 is a convenience function that returns WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType wrapped in GetWalletAssetDetailsE403.
WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletTypeAsListDepositAddressesE403 is a convenience function that returns WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType wrapped in ListDepositAddressesE403.
WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletTypeAsListWalletTransactionsE403 is a convenience function that returns WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType wrapped in ListWalletTransactionsE403.
WalletAsAServiceTokenNotSupportedAsCreateFungibleTokensTransactionRequestFromAddressE409 is a convenience function that returns WalletAsAServiceTokenNotSupported wrapped in CreateFungibleTokensTransactionRequestFromAddressE409.
WalletAsAServiceTokenNotSupportedAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE409 is a convenience function that returns WalletAsAServiceTokenNotSupported wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE409.
WalletAsAServiceWalletBalanceNotEnoughAsCreateCoinsTransactionFromAddressForWholeAmountE409 is a convenience function that returns WalletAsAServiceWalletBalanceNotEnough wrapped in CreateCoinsTransactionFromAddressForWholeAmountE409.
WalletAsAServiceWalletBalanceNotEnoughAsCreateCoinsTransactionRequestFromAddressE409 is a convenience function that returns WalletAsAServiceWalletBalanceNotEnough wrapped in CreateCoinsTransactionRequestFromAddressE409.
WalletAsAServiceWalletBalanceNotEnoughAsCreateCoinsTransactionRequestFromWalletE409 is a convenience function that returns WalletAsAServiceWalletBalanceNotEnough wrapped in CreateCoinsTransactionRequestFromWalletE409.
WalletAsAServiceWalletBalanceNotEnoughAsCreateFungibleTokensTransactionRequestFromAddressE409 is a convenience function that returns WalletAsAServiceWalletBalanceNotEnough wrapped in CreateFungibleTokensTransactionRequestFromAddressE409.
WalletAsAServiceWalletBalanceNotEnoughAsCreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE409 is a convenience function that returns WalletAsAServiceWalletBalanceNotEnough wrapped in CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE409.
WalletAsAServiceWalletBalanceNotEnoughAsCreateSingleTransactionRequestFromAddressWithoutFeePriorityE409 is a convenience function that returns WalletAsAServiceWalletBalanceNotEnough wrapped in CreateSingleTransactionRequestFromAddressWithoutFeePriorityE409.
XpubNotSyncedAsGetHDWalletXPubYPubZPubAssetsE400 is a convenience function that returns XpubNotSynced wrapped in GetHDWalletXPubYPubZPubAssetsE400.
XpubNotSyncedAsGetHDWalletXPubYPubZPubDetailsE400 is a convenience function that returns XpubNotSynced wrapped in GetHDWalletXPubYPubZPubDetailsE400.
XpubNotSyncedAsListHDWalletXPubYPubZPubTransactionsE400 is a convenience function that returns XpubNotSynced wrapped in ListHDWalletXPubYPubZPubTransactionsE400.
XpubNotSyncedAsListHDWalletXPubYPubZPubUTXOsE400 is a convenience function that returns XpubNotSynced wrapped in ListHDWalletXPubYPubZPubUTXOsE400.
XpubNotSyncedAsSyncHDWalletXPubYPubZPubE400 is a convenience function that returns XpubNotSynced wrapped in SyncHDWalletXPubYPubZPubE400.
XpubNotSyncedAsSyncNewHDWalletXPubYPubZPubE400 is a convenience function that returns XpubNotSynced wrapped in SyncNewHDWalletXPubYPubZPubE400.
XpubSyncInProgressAsGetHDWalletXPubYPubZPubAssetsE422 is a convenience function that returns XpubSyncInProgress wrapped in GetHDWalletXPubYPubZPubAssetsE422.
XpubSyncInProgressAsGetHDWalletXPubYPubZPubDetailsE422 is a convenience function that returns XpubSyncInProgress wrapped in GetHDWalletXPubYPubZPubDetailsE422.
XpubSyncInProgressAsListHDWalletXPubYPubZPubTransactionsE422 is a convenience function that returns XpubSyncInProgress wrapped in ListHDWalletXPubYPubZPubTransactionsE422.
XpubSyncInProgressAsListHDWalletXPubYPubZPubUTXOsE422 is a convenience function that returns XpubSyncInProgress wrapped in ListHDWalletXPubYPubZPubUTXOsE422.
XpubSyncInProgressAsSyncHDWalletXPubYPubZPubE422 is a convenience function that returns XpubSyncInProgress wrapped in SyncHDWalletXPubYPubZPubE422.
XpubSyncInProgressAsSyncNewHDWalletXPubYPubZPubE422 is a convenience function that returns XpubSyncInProgress wrapped in SyncNewHDWalletXPubYPubZPubE422.

# Variables

ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

ActivateBlockchainEventSubscription400Response struct for ActivateBlockchainEventSubscription400Response.
ActivateBlockchainEventSubscription401Response struct for ActivateBlockchainEventSubscription401Response.
ActivateBlockchainEventSubscription403Response struct for ActivateBlockchainEventSubscription403Response.
ActivateBlockchainEventSubscriptionE400 - struct for ActivateBlockchainEventSubscriptionE400.
ActivateBlockchainEventSubscriptionE401 - struct for ActivateBlockchainEventSubscriptionE401.
ActivateBlockchainEventSubscriptionE403 - struct for ActivateBlockchainEventSubscriptionE403.
ActivateBlockchainEventSubscriptionR struct for ActivateBlockchainEventSubscriptionR.
ActivateBlockchainEventSubscriptionRB struct for ActivateBlockchainEventSubscriptionRB.
ActivateBlockchainEventSubscriptionRBData struct for ActivateBlockchainEventSubscriptionRBData.
ActivateBlockchainEventSubscriptionRData struct for ActivateBlockchainEventSubscriptionRData.
ActivateBlockchainEventSubscriptionRI struct for ActivateBlockchainEventSubscriptionRI.
AddressCoinsTransactionConfirmed struct for AddressCoinsTransactionConfirmed.
AddressCoinsTransactionConfirmedData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
AddressCoinsTransactionConfirmedDataItem Defines an `item` as one result.
AddressCoinsTransactionConfirmedDataItemMinedInBlock Defines the block height in which this transaction was mined and confirmed in.
AddressCoinsTransactionConfirmedEachConfirmation struct for AddressCoinsTransactionConfirmedEachConfirmation.
AddressCoinsTransactionConfirmedEachConfirmationData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
AddressCoinsTransactionConfirmedEachConfirmationDataItem Defines an `item` as one result.
AddressCoinsTransactionConfirmedEachConfirmationDataItemMinedInBlock Refers to the specific block the transaction was mined in.
AddressCoinsTransactionUnconfirmed struct for AddressCoinsTransactionUnconfirmed.
AddressCoinsTransactionUnconfirmedData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
AddressCoinsTransactionUnconfirmedDataItem Defines an `item` as one result.
AddressInternalTransactionConfirmed struct for AddressInternalTransactionConfirmed.
AddressInternalTransactionConfirmedData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
AddressInternalTransactionConfirmedDataItem Defines an `item` as one result.
AddressInternalTransactionConfirmedDataItemMinedInBlock Refers to the specific block the transaction was mined in.
AddressInternalTransactionConfirmedEachConfirmation struct for AddressInternalTransactionConfirmedEachConfirmation.
AddressInternalTransactionConfirmedEachConfirmationData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
AddressInternalTransactionConfirmedEachConfirmationDataItem Defines an `item` as one result.
AddressInternalTransactionConfirmedEachConfirmationDataItemMinedInBlock Refers to the specific block the transaction was mined in.
AddressTokensTransactionConfirmed struct for AddressTokensTransactionConfirmed.
AddressTokensTransactionConfirmedBep20 BEP-20.
AddressTokensTransactionConfirmedData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
AddressTokensTransactionConfirmedDataItem Defines an `item` as one result.
AddressTokensTransactionConfirmedDataItemMinedInBlock Refers to the specific block the transaction was mined in.
AddressTokensTransactionConfirmedEachConfirmation struct for AddressTokensTransactionConfirmedEachConfirmation.
AddressTokensTransactionConfirmedEachConfirmationBep20 BEP-20.
AddressTokensTransactionConfirmedEachConfirmationData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
AddressTokensTransactionConfirmedEachConfirmationDataItem Defines an `item` as one result.
AddressTokensTransactionConfirmedEachConfirmationErc20 ERC-20.
AddressTokensTransactionConfirmedEachConfirmationErc721 ERC-721.
AddressTokensTransactionConfirmedEachConfirmationOmni OMNI.
AddressTokensTransactionConfirmedEachConfirmationToken - struct for AddressTokensTransactionConfirmedEachConfirmationToken.
AddressTokensTransactionConfirmedErc20 ERC-20.
AddressTokensTransactionConfirmedErc721 ERC-721.
AddressTokensTransactionConfirmedOmni OMNI.
AddressTokensTransactionConfirmedToken - struct for AddressTokensTransactionConfirmedToken.
AddressTokensTransactionUnconfirmed struct for AddressTokensTransactionUnconfirmed.
AddressTokensTransactionUnconfirmedData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
AddressTokensTransactionUnconfirmedDataItem Defines an `item` as one result.
AddressTokensTransactionUnconfirmedErc20 ERC-20.
AddressTokensTransactionUnconfirmedErc721 ERC-721.
AddressTokensTransactionUnconfirmedOmni OMNI.
AddressTokensTransactionUnconfirmedToken - struct for AddressTokensTransactionUnconfirmedToken.
AddTokensToExistingFromAddress400Response struct for AddTokensToExistingFromAddress400Response.
AddTokensToExistingFromAddress401Response struct for AddTokensToExistingFromAddress401Response.
AddTokensToExistingFromAddress403Response struct for AddTokensToExistingFromAddress403Response.
AddTokensToExistingFromAddressE400 - struct for AddTokensToExistingFromAddressE400.
AddTokensToExistingFromAddressE401 - struct for AddTokensToExistingFromAddressE401.
AddTokensToExistingFromAddressE403 - struct for AddTokensToExistingFromAddressE403.
AddTokensToExistingFromAddressR struct for AddTokensToExistingFromAddressR.
AddTokensToExistingFromAddressRB struct for AddTokensToExistingFromAddressRB.
AddTokensToExistingFromAddressRBData struct for AddTokensToExistingFromAddressRBData.
AddTokensToExistingFromAddressRBDataItem struct for AddTokensToExistingFromAddressRBDataItem.
AddTokensToExistingFromAddressRBTokenData - struct for AddTokensToExistingFromAddressRBTokenData.
AddTokensToExistingFromAddressRBTokenDataBitcoinOmniToken Bitcoin Omni Token.
AddTokensToExistingFromAddressRBTokenDataEthereumToken Ethereum Token.
AddTokensToExistingFromAddressRData struct for AddTokensToExistingFromAddressRData.
AddTokensToExistingFromAddressRI struct for AddTokensToExistingFromAddressRI.
AddTokensToExistingFromAddressRITS - struct for AddTokensToExistingFromAddressRITS.
AddTokensToExistingFromAddressRITSBOT Bitcoin Omni Token.
AddTokensToExistingFromAddressRITSET Ethereum Token.
AlreadyExists already_exists.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the CryptoAPIs API v2021-03-20 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
BannedIpAddress banned_ip_address.
BannedIpAddressDetailsInner struct for BannedIpAddressDetailsInner.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
BlockchainDataAddressEventSubscriptionNotFound blockchain_data_address_event_subscription_not_found.
BlockchainDataBlockNotFound blockchain_data_block_not_found.
BlockchainDataInternalTransactionNotFound blockchain_data_internal_transaction_not_found.
BlockchainDataTransactionNotFound blockchain_data_transaction_not_found.
BlockchainEventsCallbacksLimitReached blockchain_events_callbacks_limit_reached.
BlockHeightReached struct for BlockHeightReached.
BlockHeightReached400Response struct for BlockHeightReached400Response.
BlockHeightReached401Response struct for BlockHeightReached401Response.
BlockHeightReached403Response struct for BlockHeightReached403Response.
BlockHeightReached409Response struct for BlockHeightReached409Response.
BlockHeightReachedData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
BlockHeightReachedDataItem Defines an `item` as one result.
BlockHeightReachedE400 - struct for BlockHeightReachedE400.
BlockHeightReachedE401 - struct for BlockHeightReachedE401.
BlockHeightReachedE403 - struct for BlockHeightReachedE403.
BlockHeightReachedE409 - struct for BlockHeightReachedE409.
BlockHeightReachedR struct for BlockHeightReachedR.
BlockHeightReachedRB struct for BlockHeightReachedRB.
BlockHeightReachedRBData struct for BlockHeightReachedRBData.
BlockHeightReachedRBDataItem struct for BlockHeightReachedRBDataItem.
BlockHeightReachedRData struct for BlockHeightReachedRData.
BlockHeightReachedRI struct for BlockHeightReachedRI.
BlockMined struct for BlockMined.
BlockMinedData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
BlockMinedDataItem Defines an `item` as one result.
BroadcastLocallySignedTransaction400Response struct for BroadcastLocallySignedTransaction400Response.
BroadcastLocallySignedTransaction401Response struct for BroadcastLocallySignedTransaction401Response.
BroadcastLocallySignedTransaction403Response struct for BroadcastLocallySignedTransaction403Response.
BroadcastLocallySignedTransaction409Response struct for BroadcastLocallySignedTransaction409Response.
BroadcastLocallySignedTransactionE400 - struct for BroadcastLocallySignedTransactionE400.
BroadcastLocallySignedTransactionE401 - struct for BroadcastLocallySignedTransactionE401.
BroadcastLocallySignedTransactionE403 - struct for BroadcastLocallySignedTransactionE403.
BroadcastLocallySignedTransactionE409 - struct for BroadcastLocallySignedTransactionE409.
BroadcastLocallySignedTransactionR struct for BroadcastLocallySignedTransactionR.
BroadcastLocallySignedTransactionRB struct for BroadcastLocallySignedTransactionRB.
BroadcastLocallySignedTransactionRBData struct for BroadcastLocallySignedTransactionRBData.
BroadcastLocallySignedTransactionRBDataItem struct for BroadcastLocallySignedTransactionRBDataItem.
BroadcastLocallySignedTransactionRData struct for BroadcastLocallySignedTransactionRData.
BroadcastLocallySignedTransactionRI struct for BroadcastLocallySignedTransactionRI.
BroadcastTransactionFail struct for BroadcastTransactionFail.
BroadcastTransactionFailData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
BroadcastTransactionFailDataItem Defines an `item` as one result.
BroadcastTransactionSuccess struct for BroadcastTransactionSuccess.
BroadcastTransactionSuccessData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
BroadcastTransactionSuccessDataItem Defines an `item` as one result.
CoinsForwardingAutomationsLimitReached coins_forwarding_automations_limit_reached.
CoinsForwardingFail struct for CoinsForwardingFail.
CoinsForwardingFailData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
CoinsForwardingFailDataItem Defines an `item` as one result.
CoinsForwardingSuccess struct for CoinsForwardingSuccess.
CoinsForwardingSuccessData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
CoinsForwardingSuccessDataItem Defines an `item` as one result.
Configuration stores the configuration of the API client.
ConfirmedCoinsTransactionForCertainAmountOrHigher struct for ConfirmedCoinsTransactionForCertainAmountOrHigher.
ConfirmedCoinsTransactionForCertainAmountOrHigherData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
ConfirmedCoinsTransactionForCertainAmountOrHigherDataItem Defines an `item` as one result.
ConfirmedInternalTransactionForCertainAmountOrHigher struct for ConfirmedInternalTransactionForCertainAmountOrHigher.
ConfirmedInternalTransactionForCertainAmountOrHigherData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
ConfirmedInternalTransactionForCertainAmountOrHigherDataItem Defines an `item` as one result.
ConfirmedTokensTransactionForCertainAmountOrHigher struct for ConfirmedTokensTransactionForCertainAmountOrHigher.
ConfirmedTokensTransactionForCertainAmountOrHigherBep20 BEP-20.
ConfirmedTokensTransactionForCertainAmountOrHigherData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
ConfirmedTokensTransactionForCertainAmountOrHigherDataItem Defines an `item` as one result.
ConfirmedTokensTransactionForCertainAmountOrHigherErc20 ERC-20.
ConfirmedTokensTransactionForCertainAmountOrHigherErc721 ERC-721.
ConfirmedTokensTransactionForCertainAmountOrHigherToken - struct for ConfirmedTokensTransactionForCertainAmountOrHigherToken.
ConvertBitcoinCashAddress400Response struct for ConvertBitcoinCashAddress400Response.
ConvertBitcoinCashAddress401Response struct for ConvertBitcoinCashAddress401Response.
ConvertBitcoinCashAddress402Response struct for ConvertBitcoinCashAddress402Response.
ConvertBitcoinCashAddress403Response struct for ConvertBitcoinCashAddress403Response.
ConvertBitcoinCashAddress409Response struct for ConvertBitcoinCashAddress409Response.
ConvertBitcoinCashAddress415Response struct for ConvertBitcoinCashAddress415Response.
ConvertBitcoinCashAddress422Response struct for ConvertBitcoinCashAddress422Response.
ConvertBitcoinCashAddress429Response struct for ConvertBitcoinCashAddress429Response.
ConvertBitcoinCashAddress500Response struct for ConvertBitcoinCashAddress500Response.
ConvertBitcoinCashAddressE400 - struct for ConvertBitcoinCashAddressE400.
ConvertBitcoinCashAddressE401 - struct for ConvertBitcoinCashAddressE401.
ConvertBitcoinCashAddressE403 - struct for ConvertBitcoinCashAddressE403.
ConvertBitcoinCashAddressR struct for ConvertBitcoinCashAddressR.
ConvertBitcoinCashAddressRB struct for ConvertBitcoinCashAddressRB.
ConvertBitcoinCashAddressRBData struct for ConvertBitcoinCashAddressRBData.
ConvertBitcoinCashAddressRBDataItem struct for ConvertBitcoinCashAddressRBDataItem.
ConvertBitcoinCashAddressRData struct for ConvertBitcoinCashAddressRData.
ConvertBitcoinCashAddressRI struct for ConvertBitcoinCashAddressRI.
CouldNotCalculateRateForPair could_not_calculate_rate_for_pair.
CreateAutomaticCoinsForwarding400Response struct for CreateAutomaticCoinsForwarding400Response.
CreateAutomaticCoinsForwarding401Response struct for CreateAutomaticCoinsForwarding401Response.
CreateAutomaticCoinsForwarding403Response struct for CreateAutomaticCoinsForwarding403Response.
CreateAutomaticCoinsForwarding409Response struct for CreateAutomaticCoinsForwarding409Response.
CreateAutomaticCoinsForwardingE400 - struct for CreateAutomaticCoinsForwardingE400.
CreateAutomaticCoinsForwardingE401 - struct for CreateAutomaticCoinsForwardingE401.
CreateAutomaticCoinsForwardingE403 - struct for CreateAutomaticCoinsForwardingE403.
CreateAutomaticCoinsForwardingE409 - struct for CreateAutomaticCoinsForwardingE409.
CreateAutomaticCoinsForwardingR struct for CreateAutomaticCoinsForwardingR.
CreateAutomaticCoinsForwardingRB struct for CreateAutomaticCoinsForwardingRB.
CreateAutomaticCoinsForwardingRBData struct for CreateAutomaticCoinsForwardingRBData.
CreateAutomaticCoinsForwardingRBDataItem struct for CreateAutomaticCoinsForwardingRBDataItem.
CreateAutomaticCoinsForwardingRData struct for CreateAutomaticCoinsForwardingRData.
CreateAutomaticCoinsForwardingRI struct for CreateAutomaticCoinsForwardingRI.
CreateAutomaticTokensForwarding400Response struct for CreateAutomaticTokensForwarding400Response.
CreateAutomaticTokensForwarding401Response struct for CreateAutomaticTokensForwarding401Response.
CreateAutomaticTokensForwarding403Response struct for CreateAutomaticTokensForwarding403Response.
CreateAutomaticTokensForwardingE400 - struct for CreateAutomaticTokensForwardingE400.
CreateAutomaticTokensForwardingE401 - struct for CreateAutomaticTokensForwardingE401.
CreateAutomaticTokensForwardingE403 - struct for CreateAutomaticTokensForwardingE403.
CreateAutomaticTokensForwardingR struct for CreateAutomaticTokensForwardingR.
CreateAutomaticTokensForwardingRB struct for CreateAutomaticTokensForwardingRB.
CreateAutomaticTokensForwardingRBData struct for CreateAutomaticTokensForwardingRBData.
CreateAutomaticTokensForwardingRBDataItem struct for CreateAutomaticTokensForwardingRBDataItem.
CreateAutomaticTokensForwardingRBTokenData - struct for CreateAutomaticTokensForwardingRBTokenData.
CreateAutomaticTokensForwardingRBTokenDataBitcoinOmniToken Bitcoin Omni Token.
CreateAutomaticTokensForwardingRBTokenDataEthereumToken Ethereum Token.
CreateAutomaticTokensForwardingRData struct for CreateAutomaticTokensForwardingRData.
CreateAutomaticTokensForwardingRI struct for CreateAutomaticTokensForwardingRI.
CreateAutomaticTokensForwardingRITS - struct for CreateAutomaticTokensForwardingRITS.
CreateAutomaticTokensForwardingRITSBOT Bitcoin Omni Token.
CreateAutomaticTokensForwardingRITSET Ethereum Token.
CreateCoinsTransactionFromAddressForWholeAmount400Response struct for CreateCoinsTransactionFromAddressForWholeAmount400Response.
CreateCoinsTransactionFromAddressForWholeAmount401Response struct for CreateCoinsTransactionFromAddressForWholeAmount401Response.
CreateCoinsTransactionFromAddressForWholeAmount403Response struct for CreateCoinsTransactionFromAddressForWholeAmount403Response.
CreateCoinsTransactionFromAddressForWholeAmount409Response struct for CreateCoinsTransactionFromAddressForWholeAmount409Response.
CreateCoinsTransactionFromAddressForWholeAmountE400 - struct for CreateCoinsTransactionFromAddressForWholeAmountE400.
CreateCoinsTransactionFromAddressForWholeAmountE401 - struct for CreateCoinsTransactionFromAddressForWholeAmountE401.
CreateCoinsTransactionFromAddressForWholeAmountE403 - struct for CreateCoinsTransactionFromAddressForWholeAmountE403.
CreateCoinsTransactionFromAddressForWholeAmountE409 - struct for CreateCoinsTransactionFromAddressForWholeAmountE409.
CreateCoinsTransactionFromAddressForWholeAmountR struct for CreateCoinsTransactionFromAddressForWholeAmountR.
CreateCoinsTransactionFromAddressForWholeAmountRB struct for CreateCoinsTransactionFromAddressForWholeAmountRB.
CreateCoinsTransactionFromAddressForWholeAmountRBData struct for CreateCoinsTransactionFromAddressForWholeAmountRBData.
CreateCoinsTransactionFromAddressForWholeAmountRBDataItem struct for CreateCoinsTransactionFromAddressForWholeAmountRBDataItem.
CreateCoinsTransactionFromAddressForWholeAmountRData struct for CreateCoinsTransactionFromAddressForWholeAmountRData.
CreateCoinsTransactionFromAddressForWholeAmountRI struct for CreateCoinsTransactionFromAddressForWholeAmountRI.
CreateCoinsTransactionFromAddressForWholeAmountRIRecipientsInner struct for CreateCoinsTransactionFromAddressForWholeAmountRIRecipientsInner.
CreateCoinsTransactionFromAddressForWholeAmountRISenders Details about the sender.
CreateCoinsTransactionRequestFromAddress400Response struct for CreateCoinsTransactionRequestFromAddress400Response.
CreateCoinsTransactionRequestFromAddress401Response struct for CreateCoinsTransactionRequestFromAddress401Response.
CreateCoinsTransactionRequestFromAddress403Response struct for CreateCoinsTransactionRequestFromAddress403Response.
CreateCoinsTransactionRequestFromAddress409Response struct for CreateCoinsTransactionRequestFromAddress409Response.
CreateCoinsTransactionRequestFromAddressE400 - struct for CreateCoinsTransactionRequestFromAddressE400.
CreateCoinsTransactionRequestFromAddressE401 - struct for CreateCoinsTransactionRequestFromAddressE401.
CreateCoinsTransactionRequestFromAddressE403 - struct for CreateCoinsTransactionRequestFromAddressE403.
CreateCoinsTransactionRequestFromAddressE409 - struct for CreateCoinsTransactionRequestFromAddressE409.
CreateCoinsTransactionRequestFromAddressR struct for CreateCoinsTransactionRequestFromAddressR.
CreateCoinsTransactionRequestFromAddressRB struct for CreateCoinsTransactionRequestFromAddressRB.
CreateCoinsTransactionRequestFromAddressRBData struct for CreateCoinsTransactionRequestFromAddressRBData.
CreateCoinsTransactionRequestFromAddressRBDataItem struct for CreateCoinsTransactionRequestFromAddressRBDataItem.
CreateCoinsTransactionRequestFromAddressRData struct for CreateCoinsTransactionRequestFromAddressRData.
CreateCoinsTransactionRequestFromAddressRI struct for CreateCoinsTransactionRequestFromAddressRI.
CreateCoinsTransactionRequestFromAddressRIRecipientsInner struct for CreateCoinsTransactionRequestFromAddressRIRecipientsInner.
CreateCoinsTransactionRequestFromAddressRISenders Defines details about the source, i.e.
CreateCoinsTransactionRequestFromWallet400Response struct for CreateCoinsTransactionRequestFromWallet400Response.
CreateCoinsTransactionRequestFromWallet401Response struct for CreateCoinsTransactionRequestFromWallet401Response.
CreateCoinsTransactionRequestFromWallet403Response struct for CreateCoinsTransactionRequestFromWallet403Response.
CreateCoinsTransactionRequestFromWallet409Response struct for CreateCoinsTransactionRequestFromWallet409Response.
CreateCoinsTransactionRequestFromWalletE400 - struct for CreateCoinsTransactionRequestFromWalletE400.
CreateCoinsTransactionRequestFromWalletE401 - struct for CreateCoinsTransactionRequestFromWalletE401.
CreateCoinsTransactionRequestFromWalletE403 - struct for CreateCoinsTransactionRequestFromWalletE403.
CreateCoinsTransactionRequestFromWalletE409 - struct for CreateCoinsTransactionRequestFromWalletE409.
CreateCoinsTransactionRequestFromWalletR struct for CreateCoinsTransactionRequestFromWalletR.
CreateCoinsTransactionRequestFromWalletRB struct for CreateCoinsTransactionRequestFromWalletRB.
CreateCoinsTransactionRequestFromWalletRBData struct for CreateCoinsTransactionRequestFromWalletRBData.
CreateCoinsTransactionRequestFromWalletRBDataItem struct for CreateCoinsTransactionRequestFromWalletRBDataItem.
CreateCoinsTransactionRequestFromWalletRBDataItemRecipientsInner struct for CreateCoinsTransactionRequestFromWalletRBDataItemRecipientsInner.
CreateCoinsTransactionRequestFromWalletRData struct for CreateCoinsTransactionRequestFromWalletRData.
CreateCoinsTransactionRequestFromWalletRI struct for CreateCoinsTransactionRequestFromWalletRI.
CreateCoinsTransactionRequestFromWalletRIRecipientsInner struct for CreateCoinsTransactionRequestFromWalletRIRecipientsInner.
CreateFungibleTokensTransactionRequestFromAddress400Response struct for CreateFungibleTokensTransactionRequestFromAddress400Response.
CreateFungibleTokensTransactionRequestFromAddress401Response struct for CreateFungibleTokensTransactionRequestFromAddress401Response.
CreateFungibleTokensTransactionRequestFromAddress403Response struct for CreateFungibleTokensTransactionRequestFromAddress403Response.
CreateFungibleTokensTransactionRequestFromAddress409Response struct for CreateFungibleTokensTransactionRequestFromAddress409Response.
CreateFungibleTokensTransactionRequestFromAddressE400 - struct for CreateFungibleTokensTransactionRequestFromAddressE400.
CreateFungibleTokensTransactionRequestFromAddressE401 - struct for CreateFungibleTokensTransactionRequestFromAddressE401.
CreateFungibleTokensTransactionRequestFromAddressE403 - struct for CreateFungibleTokensTransactionRequestFromAddressE403.
CreateFungibleTokensTransactionRequestFromAddressE409 - struct for CreateFungibleTokensTransactionRequestFromAddressE409.
CreateFungibleTokensTransactionRequestFromAddressR struct for CreateFungibleTokensTransactionRequestFromAddressR.
CreateFungibleTokensTransactionRequestFromAddressRB struct for CreateFungibleTokensTransactionRequestFromAddressRB.
CreateFungibleTokensTransactionRequestFromAddressRBData struct for CreateFungibleTokensTransactionRequestFromAddressRBData.
CreateFungibleTokensTransactionRequestFromAddressRBDataItem struct for CreateFungibleTokensTransactionRequestFromAddressRBDataItem.
CreateFungibleTokensTransactionRequestFromAddressRData struct for CreateFungibleTokensTransactionRequestFromAddressRData.
CreateFungibleTokensTransactionRequestFromAddressRI struct for CreateFungibleTokensTransactionRequestFromAddressRI.
CreateFungibleTokensTransactionRequestFromAddressRIRecipientsInner struct for CreateFungibleTokensTransactionRequestFromAddressRIRecipientsInner.
CreateFungibleTokensTransactionRequestFromAddressRIS - Represents the specific token data which depends on its type - if it is a Coin or Token.
CreateFungibleTokensTransactionRequestFromAddressRISE Ethereum Erc20 Token.
CreateFungibleTokensTransactionRequestFromAddressRISenders Defines details about the source, i.e.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority400Response struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority400Response.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority401Response struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority401Response.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority403Response struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority403Response.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority409Response struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriority409Response.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE400 - struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE400.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE401 - struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE401.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE403 - struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE403.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE409 - struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityE409.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityR struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityR.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRB struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRB.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRBData struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRBData.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRBDataItem struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRBDataItem.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRData struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRData.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRI struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRI.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIRecipientInner struct for CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIRecipientInner.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIS - Represents the specific token data which depends on its type - if it is a Coin or Token.
CreateFungibleTokenTransactionRequestFromAddressWithoutFeePriorityRIST Tron Trc20 Token.
CreateSingleTransactionRequestFromAddressWithoutFeePriority400Response struct for CreateSingleTransactionRequestFromAddressWithoutFeePriority400Response.
CreateSingleTransactionRequestFromAddressWithoutFeePriority401Response struct for CreateSingleTransactionRequestFromAddressWithoutFeePriority401Response.
CreateSingleTransactionRequestFromAddressWithoutFeePriority403Response struct for CreateSingleTransactionRequestFromAddressWithoutFeePriority403Response.
CreateSingleTransactionRequestFromAddressWithoutFeePriority409Response struct for CreateSingleTransactionRequestFromAddressWithoutFeePriority409Response.
CreateSingleTransactionRequestFromAddressWithoutFeePriorityE400 - struct for CreateSingleTransactionRequestFromAddressWithoutFeePriorityE400.
CreateSingleTransactionRequestFromAddressWithoutFeePriorityE401 - struct for CreateSingleTransactionRequestFromAddressWithoutFeePriorityE401.
CreateSingleTransactionRequestFromAddressWithoutFeePriorityE403 - struct for CreateSingleTransactionRequestFromAddressWithoutFeePriorityE403.
CreateSingleTransactionRequestFromAddressWithoutFeePriorityE409 - struct for CreateSingleTransactionRequestFromAddressWithoutFeePriorityE409.
CreateSingleTransactionRequestFromAddressWithoutFeePriorityR struct for CreateSingleTransactionRequestFromAddressWithoutFeePriorityR.
CreateSingleTransactionRequestFromAddressWithoutFeePriorityRB struct for CreateSingleTransactionRequestFromAddressWithoutFeePriorityRB.
CreateSingleTransactionRequestFromAddressWithoutFeePriorityRBData struct for CreateSingleTransactionRequestFromAddressWithoutFeePriorityRBData.
CreateSingleTransactionRequestFromAddressWithoutFeePriorityRBDataItem struct for CreateSingleTransactionRequestFromAddressWithoutFeePriorityRBDataItem.
CreateSingleTransactionRequestFromAddressWithoutFeePriorityRData struct for CreateSingleTransactionRequestFromAddressWithoutFeePriorityRData.
CreateSingleTransactionRequestFromAddressWithoutFeePriorityRI struct for CreateSingleTransactionRequestFromAddressWithoutFeePriorityRI.
CreateSingleTransactionRequestFromAddressWithoutFeePriorityRIRecipientInner struct for CreateSingleTransactionRequestFromAddressWithoutFeePriorityRIRecipientInner.
CreateSingleTransactionRequestFromAddressWithoutFeePriorityRISender Defines details about the source, i.e.
CreateSingleTransactionRequestFromAddressWithoutFeePriorityRITotalAmount struct for CreateSingleTransactionRequestFromAddressWithoutFeePriorityRITotalAmount.
DecodeRawTransactionHex400Response struct for DecodeRawTransactionHex400Response.
DecodeRawTransactionHex401Response struct for DecodeRawTransactionHex401Response.
DecodeRawTransactionHex403Response struct for DecodeRawTransactionHex403Response.
DecodeRawTransactionHexE400 - struct for DecodeRawTransactionHexE400.
DecodeRawTransactionHexE401 - struct for DecodeRawTransactionHexE401.
DecodeRawTransactionHexE403 - struct for DecodeRawTransactionHexE403.
DecodeRawTransactionHexR struct for DecodeRawTransactionHexR.
DecodeRawTransactionHexRB struct for DecodeRawTransactionHexRB.
DecodeRawTransactionHexRBData struct for DecodeRawTransactionHexRBData.
DecodeRawTransactionHexRBDataItem struct for DecodeRawTransactionHexRBDataItem.
DecodeRawTransactionHexRData struct for DecodeRawTransactionHexRData.
DecodeRawTransactionHexRI struct for DecodeRawTransactionHexRI.
DecodeRawTransactionHexRIS - Represents the specific transaction data according to the blockchain.
DecodeRawTransactionHexRISB Bitcoin.
DecodeRawTransactionHexRISB2 Bitcoin Cash.
DecodeRawTransactionHexRISB22 Binance Smart Chain.
DecodeRawTransactionHexRISB2VinInner struct for DecodeRawTransactionHexRISB2VinInner.
DecodeRawTransactionHexRISB2VoutInner struct for DecodeRawTransactionHexRISB2VoutInner.
DecodeRawTransactionHexRISB2VoutInnerScriptPubKey Represents the script public key.
DecodeRawTransactionHexRISBVinInner struct for DecodeRawTransactionHexRISBVinInner.
DecodeRawTransactionHexRISBVinInnerScriptSig Specifies the required signatures.
DecodeRawTransactionHexRISBVoutInner struct for DecodeRawTransactionHexRISBVoutInner.
DecodeRawTransactionHexRISBVoutInnerScriptPubKey Script pub key of the transaction.
DecodeRawTransactionHexRISD Dash.
DecodeRawTransactionHexRISD2 Dogecoin.
DecodeRawTransactionHexRISD2VinInner struct for DecodeRawTransactionHexRISD2VinInner.
DecodeRawTransactionHexRISD2VinInnerScriptSig Specifies the required signatures.
DecodeRawTransactionHexRISD2VoutInner struct for DecodeRawTransactionHexRISD2VoutInner.
DecodeRawTransactionHexRISD2VoutInnerScriptPubKey Represents the script public key.
DecodeRawTransactionHexRISDVinInner struct for DecodeRawTransactionHexRISDVinInner.
DecodeRawTransactionHexRISDVinInnerScriptSig Specifies the required signatures.
DecodeRawTransactionHexRISDVoutInner struct for DecodeRawTransactionHexRISDVoutInner.
DecodeRawTransactionHexRISDVoutInnerScriptPubKey Represents the script public key.
DecodeRawTransactionHexRISE Ethereum.
DecodeRawTransactionHexRISE2 Ethereum Classic.
DecodeRawTransactionHexRISL Litecoin.
DecodeRawTransactionHexRISLVinInner struct for DecodeRawTransactionHexRISLVinInner.
DecodeRawTransactionHexRISLVinInnerScriptSig Specifies the required signatures.
DecodeRawTransactionHexRISLVoutInner struct for DecodeRawTransactionHexRISLVoutInner.
DecodeRawTransactionHexRISLVoutInnerScriptPubKey Represents the script public key.
DecodeRawTransactionHexRISZ Zcash.
DecodeRawTransactionHexRISZVinInner struct for DecodeRawTransactionHexRISZVinInner.
DecodeRawTransactionHexRISZVinInnerScriptSig Specifies the required signatures.
DecodeRawTransactionHexRISZVoutInner struct for DecodeRawTransactionHexRISZVoutInner.
DecodeRawTransactionHexRISZVoutInnerScriptPubKey Represents the script public key.
DecodeXAddress400Response struct for DecodeXAddress400Response.
DecodeXAddress401Response struct for DecodeXAddress401Response.
DecodeXAddress403Response struct for DecodeXAddress403Response.
DecodeXAddressE400 - struct for DecodeXAddressE400.
DecodeXAddressE401 - struct for DecodeXAddressE401.
DecodeXAddressE403 - struct for DecodeXAddressE403.
DecodeXAddressR struct for DecodeXAddressR.
DecodeXAddressRData struct for DecodeXAddressRData.
DecodeXAddressRI struct for DecodeXAddressRI.
DeleteAutomaticCoinsForwarding400Response struct for DeleteAutomaticCoinsForwarding400Response.
DeleteAutomaticCoinsForwarding401Response struct for DeleteAutomaticCoinsForwarding401Response.
DeleteAutomaticCoinsForwarding403Response struct for DeleteAutomaticCoinsForwarding403Response.
DeleteAutomaticCoinsForwardingE400 - struct for DeleteAutomaticCoinsForwardingE400.
DeleteAutomaticCoinsForwardingE401 - struct for DeleteAutomaticCoinsForwardingE401.
DeleteAutomaticCoinsForwardingE403 - struct for DeleteAutomaticCoinsForwardingE403.
DeleteAutomaticCoinsForwardingR struct for DeleteAutomaticCoinsForwardingR.
DeleteAutomaticCoinsForwardingRData struct for DeleteAutomaticCoinsForwardingRData.
DeleteAutomaticCoinsForwardingRI struct for DeleteAutomaticCoinsForwardingRI.
DeleteAutomaticTokensForwarding400Response struct for DeleteAutomaticTokensForwarding400Response.
DeleteAutomaticTokensForwarding401Response struct for DeleteAutomaticTokensForwarding401Response.
DeleteAutomaticTokensForwarding403Response struct for DeleteAutomaticTokensForwarding403Response.
DeleteAutomaticTokensForwardingE400 - struct for DeleteAutomaticTokensForwardingE400.
DeleteAutomaticTokensForwardingE401 - struct for DeleteAutomaticTokensForwardingE401.
DeleteAutomaticTokensForwardingE403 - struct for DeleteAutomaticTokensForwardingE403.
DeleteAutomaticTokensForwardingR struct for DeleteAutomaticTokensForwardingR.
DeleteAutomaticTokensForwardingRData struct for DeleteAutomaticTokensForwardingRData.
DeleteAutomaticTokensForwardingRI struct for DeleteAutomaticTokensForwardingRI.
DeleteAutomaticTokensForwardingRITS - struct for DeleteAutomaticTokensForwardingRITS.
DeleteAutomaticTokensForwardingRITSBOT Bitcoin Omni Token.
DeleteAutomaticTokensForwardingRITSET Ethereum Token.
DeleteBlockchainEventSubscription400Response struct for DeleteBlockchainEventSubscription400Response.
DeleteBlockchainEventSubscription401Response struct for DeleteBlockchainEventSubscription401Response.
DeleteBlockchainEventSubscription403Response struct for DeleteBlockchainEventSubscription403Response.
DeleteBlockchainEventSubscriptionE400 - struct for DeleteBlockchainEventSubscriptionE400.
DeleteBlockchainEventSubscriptionE401 - struct for DeleteBlockchainEventSubscriptionE401.
DeleteBlockchainEventSubscriptionE403 - struct for DeleteBlockchainEventSubscriptionE403.
DeleteBlockchainEventSubscriptionR struct for DeleteBlockchainEventSubscriptionR.
DeleteBlockchainEventSubscriptionRData struct for DeleteBlockchainEventSubscriptionRData.
DeleteBlockchainEventSubscriptionRI struct for DeleteBlockchainEventSubscriptionRI.
DeriveAndSyncNewChangeAddresses400Response struct for DeriveAndSyncNewChangeAddresses400Response.
DeriveAndSyncNewChangeAddresses401Response struct for DeriveAndSyncNewChangeAddresses401Response.
DeriveAndSyncNewChangeAddresses403Response struct for DeriveAndSyncNewChangeAddresses403Response.
DeriveAndSyncNewChangeAddressesE400 - struct for DeriveAndSyncNewChangeAddressesE400.
DeriveAndSyncNewChangeAddressesE401 - struct for DeriveAndSyncNewChangeAddressesE401.
DeriveAndSyncNewChangeAddressesE403 - struct for DeriveAndSyncNewChangeAddressesE403.
DeriveAndSyncNewChangeAddressesR struct for DeriveAndSyncNewChangeAddressesR.
DeriveAndSyncNewChangeAddressesRB struct for DeriveAndSyncNewChangeAddressesRB.
DeriveAndSyncNewChangeAddressesRBData struct for DeriveAndSyncNewChangeAddressesRBData.
DeriveAndSyncNewChangeAddressesRBDataItem struct for DeriveAndSyncNewChangeAddressesRBDataItem.
DeriveAndSyncNewChangeAddressesRData struct for DeriveAndSyncNewChangeAddressesRData.
DeriveAndSyncNewChangeAddressesRI struct for DeriveAndSyncNewChangeAddressesRI.
DeriveAndSyncNewReceivingAddresses400Response struct for DeriveAndSyncNewReceivingAddresses400Response.
DeriveAndSyncNewReceivingAddresses401Response struct for DeriveAndSyncNewReceivingAddresses401Response.
DeriveAndSyncNewReceivingAddresses403Response struct for DeriveAndSyncNewReceivingAddresses403Response.
DeriveAndSyncNewReceivingAddressesE400 - struct for DeriveAndSyncNewReceivingAddressesE400.
DeriveAndSyncNewReceivingAddressesE401 - struct for DeriveAndSyncNewReceivingAddressesE401.
DeriveAndSyncNewReceivingAddressesE403 - struct for DeriveAndSyncNewReceivingAddressesE403.
DeriveAndSyncNewReceivingAddressesR struct for DeriveAndSyncNewReceivingAddressesR.
DeriveAndSyncNewReceivingAddressesRB struct for DeriveAndSyncNewReceivingAddressesRB.
DeriveAndSyncNewReceivingAddressesRBData struct for DeriveAndSyncNewReceivingAddressesRBData.
DeriveAndSyncNewReceivingAddressesRBDataItem struct for DeriveAndSyncNewReceivingAddressesRBDataItem.
DeriveAndSyncNewReceivingAddressesRData struct for DeriveAndSyncNewReceivingAddressesRData.
DeriveAndSyncNewReceivingAddressesRI struct for DeriveAndSyncNewReceivingAddressesRI.
DeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses400Response struct for DeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses400Response.
DeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses401Response struct for DeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses401Response.
DeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses403Response struct for DeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses403Response.
DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE400 - struct for DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE400.
DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE401 - struct for DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE401.
DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE403 - struct for DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesE403.
DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesR struct for DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesR.
DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRData struct for DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRData.
DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRI struct for DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRI.
DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRIAddressesInner struct for DeriveHDWalletXPubYPubZPubChangeOrReceivingAddressesRIAddressesInner.
EncodeXAddress400Response struct for EncodeXAddress400Response.
EncodeXAddress401Response struct for EncodeXAddress401Response.
EncodeXAddress403Response struct for EncodeXAddress403Response.
EncodeXAddressE400 - struct for EncodeXAddressE400.
EncodeXAddressE401 - struct for EncodeXAddressE401.
EncodeXAddressE403 - struct for EncodeXAddressE403.
EncodeXAddressR struct for EncodeXAddressR.
EncodeXAddressRData struct for EncodeXAddressRData.
EncodeXAddressRI struct for EncodeXAddressRI.
EndpointNotAllowedForApiKey endpoint_not_allowed_for_api_key.
EndpointNotAllowedForPlan endpoint_not_allowed_for_plan.
EstimateGasLimit400Response struct for EstimateGasLimit400Response.
EstimateGasLimit401Response struct for EstimateGasLimit401Response.
EstimateGasLimit403Response struct for EstimateGasLimit403Response.
EstimateGasLimitE400 - struct for EstimateGasLimitE400.
EstimateGasLimitE401 - struct for EstimateGasLimitE401.
EstimateGasLimitE403 - struct for EstimateGasLimitE403.
EstimateGasLimitR struct for EstimateGasLimitR.
EstimateGasLimitRB struct for EstimateGasLimitRB.
EstimateGasLimitRBData struct for EstimateGasLimitRBData.
EstimateGasLimitRBDataItem struct for EstimateGasLimitRBDataItem.
EstimateGasLimitRData struct for EstimateGasLimitRData.
EstimateGasLimitRI struct for EstimateGasLimitRI.
EstimateTokenGasLimit400Response struct for EstimateTokenGasLimit400Response.
EstimateTokenGasLimit401Response struct for EstimateTokenGasLimit401Response.
EstimateTokenGasLimit403Response struct for EstimateTokenGasLimit403Response.
EstimateTokenGasLimitE400 - struct for EstimateTokenGasLimitE400.
EstimateTokenGasLimitE401 - struct for EstimateTokenGasLimitE401.
EstimateTokenGasLimitE403 - struct for EstimateTokenGasLimitE403.
EstimateTokenGasLimitR struct for EstimateTokenGasLimitR.
EstimateTokenGasLimitRB struct for EstimateTokenGasLimitRB.
EstimateTokenGasLimitRBData struct for EstimateTokenGasLimitRBData.
EstimateTokenGasLimitRBDataItem struct for EstimateTokenGasLimitRBDataItem.
EstimateTokenGasLimitRData struct for EstimateTokenGasLimitRData.
EstimateTokenGasLimitRI struct for EstimateTokenGasLimitRI.
EstimateTransactionSmartFee400Response struct for EstimateTransactionSmartFee400Response.
EstimateTransactionSmartFee401Response struct for EstimateTransactionSmartFee401Response.
EstimateTransactionSmartFee403Response struct for EstimateTransactionSmartFee403Response.
EstimateTransactionSmartFee501Response struct for EstimateTransactionSmartFee501Response.
EstimateTransactionSmartFeeE400 - struct for EstimateTransactionSmartFeeE400.
EstimateTransactionSmartFeeE401 - struct for EstimateTransactionSmartFeeE401.
EstimateTransactionSmartFeeE403 - struct for EstimateTransactionSmartFeeE403.
EstimateTransactionSmartFeeR struct for EstimateTransactionSmartFeeR.
EstimateTransactionSmartFeeRData struct for EstimateTransactionSmartFeeRData.
EstimateTransactionSmartFeeRI struct for EstimateTransactionSmartFeeRI.
FeatureMainnetsNotAllowedForPlan feature_mainnets_not_allowed_for_plan.
GenerateDepositAddress400Response struct for GenerateDepositAddress400Response.
GenerateDepositAddress401Response struct for GenerateDepositAddress401Response.
GenerateDepositAddress403Response struct for GenerateDepositAddress403Response.
GenerateDepositAddressE400 - struct for GenerateDepositAddressE400.
GenerateDepositAddressE401 - struct for GenerateDepositAddressE401.
GenerateDepositAddressE403 - struct for GenerateDepositAddressE403.
GenerateDepositAddressR struct for GenerateDepositAddressR.
GenerateDepositAddressRB struct for GenerateDepositAddressRB.
GenerateDepositAddressRBData struct for GenerateDepositAddressRBData.
GenerateDepositAddressRBDataItem struct for GenerateDepositAddressRBDataItem.
GenerateDepositAddressRData struct for GenerateDepositAddressRData.
GenerateDepositAddressRI struct for GenerateDepositAddressRI.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GetAddressBalance400Response struct for GetAddressBalance400Response.
GetAddressBalance401Response struct for GetAddressBalance401Response.
GetAddressBalance403Response struct for GetAddressBalance403Response.
GetAddressBalanceE400 - struct for GetAddressBalanceE400.
GetAddressBalanceE401 - struct for GetAddressBalanceE401.
GetAddressBalanceE403 - struct for GetAddressBalanceE403.
GetAddressBalanceR struct for GetAddressBalanceR.
GetAddressBalanceRData struct for GetAddressBalanceRData.
GetAddressBalanceRI struct for GetAddressBalanceRI.
GetAddressBalanceRIConfirmedBalance struct for GetAddressBalanceRIConfirmedBalance.
GetAddressDetails400Response struct for GetAddressDetails400Response.
GetAddressDetails401Response struct for GetAddressDetails401Response.
GetAddressDetails403Response struct for GetAddressDetails403Response.
GetAddressDetailsE400 - struct for GetAddressDetailsE400.
GetAddressDetailsE401 - struct for GetAddressDetailsE401.
GetAddressDetailsE403 - struct for GetAddressDetailsE403.
GetAddressDetailsFromCallback400Response struct for GetAddressDetailsFromCallback400Response.
GetAddressDetailsFromCallback401Response struct for GetAddressDetailsFromCallback401Response.
GetAddressDetailsFromCallback403Response struct for GetAddressDetailsFromCallback403Response.
GetAddressDetailsFromCallback404Response struct for GetAddressDetailsFromCallback404Response.
GetAddressDetailsFromCallbackE400 - struct for GetAddressDetailsFromCallbackE400.
GetAddressDetailsFromCallbackE401 - struct for GetAddressDetailsFromCallbackE401.
GetAddressDetailsFromCallbackE403 - struct for GetAddressDetailsFromCallbackE403.
GetAddressDetailsFromCallbackR struct for GetAddressDetailsFromCallbackR.
GetAddressDetailsFromCallbackRData struct for GetAddressDetailsFromCallbackRData.
GetAddressDetailsFromCallbackRI struct for GetAddressDetailsFromCallbackRI.
GetAddressDetailsFromCallbackRIConfirmedBalance struct for GetAddressDetailsFromCallbackRIConfirmedBalance.
GetAddressDetailsFromCallbackRITotalReceived struct for GetAddressDetailsFromCallbackRITotalReceived.
GetAddressDetailsFromCallbackRITotalSpent struct for GetAddressDetailsFromCallbackRITotalSpent.
GetAddressDetailsR struct for GetAddressDetailsR.
GetAddressDetailsRData struct for GetAddressDetailsRData.
GetAddressDetailsRI struct for GetAddressDetailsRI.
GetAddressDetailsRIConfirmedBalance struct for GetAddressDetailsRIConfirmedBalance.
GetAddressDetailsRITotalReceived struct for GetAddressDetailsRITotalReceived.
GetAddressDetailsRITotalSpent struct for GetAddressDetailsRITotalSpent.
GetAssetDetailsByAssetID400Response struct for GetAssetDetailsByAssetID400Response.
GetAssetDetailsByAssetID401Response struct for GetAssetDetailsByAssetID401Response.
GetAssetDetailsByAssetID403Response struct for GetAssetDetailsByAssetID403Response.
GetAssetDetailsByAssetIDE400 - struct for GetAssetDetailsByAssetIDE400.
GetAssetDetailsByAssetIDE401 - struct for GetAssetDetailsByAssetIDE401.
GetAssetDetailsByAssetIDE403 - struct for GetAssetDetailsByAssetIDE403.
GetAssetDetailsByAssetIDR struct for GetAssetDetailsByAssetIDR.
GetAssetDetailsByAssetIDRData struct for GetAssetDetailsByAssetIDRData.
GetAssetDetailsByAssetIDRI struct for GetAssetDetailsByAssetIDRI.
GetAssetDetailsByAssetIDRIAssetLogo struct for GetAssetDetailsByAssetIDRIAssetLogo.
GetAssetDetailsByAssetIDRILatestRate Specifies the latest price of the asset.
GetAssetDetailsByAssetIDRIS - Represents a specific asset's data depending on its type (whether it is \"crypto\" or \"fiat\").
GetAssetDetailsByAssetIDRISC Crypto Type Data.
GetAssetDetailsByAssetSymbol400Response struct for GetAssetDetailsByAssetSymbol400Response.
GetAssetDetailsByAssetSymbol401Response struct for GetAssetDetailsByAssetSymbol401Response.
GetAssetDetailsByAssetSymbol403Response struct for GetAssetDetailsByAssetSymbol403Response.
GetAssetDetailsByAssetSymbolE400 - struct for GetAssetDetailsByAssetSymbolE400.
GetAssetDetailsByAssetSymbolE401 - struct for GetAssetDetailsByAssetSymbolE401.
GetAssetDetailsByAssetSymbolE403 - struct for GetAssetDetailsByAssetSymbolE403.
GetAssetDetailsByAssetSymbolR struct for GetAssetDetailsByAssetSymbolR.
GetAssetDetailsByAssetSymbolRData struct for GetAssetDetailsByAssetSymbolRData.
GetAssetDetailsByAssetSymbolRI struct for GetAssetDetailsByAssetSymbolRI.
GetAssetDetailsByAssetSymbolRIS - Represents a specific asset's data depending on its type (whether it is \"crypto\" or \"fiat\").
GetAssetDetailsByAssetSymbolRISC Crypto Type Data.
GetBlockchainEventSubscriptionDetailsByReferenceID400Response struct for GetBlockchainEventSubscriptionDetailsByReferenceID400Response.
GetBlockchainEventSubscriptionDetailsByReferenceID401Response struct for GetBlockchainEventSubscriptionDetailsByReferenceID401Response.
GetBlockchainEventSubscriptionDetailsByReferenceID403Response struct for GetBlockchainEventSubscriptionDetailsByReferenceID403Response.
GetBlockchainEventSubscriptionDetailsByReferenceIDE400 - struct for GetBlockchainEventSubscriptionDetailsByReferenceIDE400.
GetBlockchainEventSubscriptionDetailsByReferenceIDE401 - struct for GetBlockchainEventSubscriptionDetailsByReferenceIDE401.
GetBlockchainEventSubscriptionDetailsByReferenceIDE403 - struct for GetBlockchainEventSubscriptionDetailsByReferenceIDE403.
GetBlockchainEventSubscriptionDetailsByReferenceIDR struct for GetBlockchainEventSubscriptionDetailsByReferenceIDR.
GetBlockchainEventSubscriptionDetailsByReferenceIDRData struct for GetBlockchainEventSubscriptionDetailsByReferenceIDRData.
GetBlockchainEventSubscriptionDetailsByReferenceIDRI struct for GetBlockchainEventSubscriptionDetailsByReferenceIDRI.
GetBlockDetailsByBlockHash400Response struct for GetBlockDetailsByBlockHash400Response.
GetBlockDetailsByBlockHash401Response struct for GetBlockDetailsByBlockHash401Response.
GetBlockDetailsByBlockHash403Response struct for GetBlockDetailsByBlockHash403Response.
GetBlockDetailsByBlockHashE400 - struct for GetBlockDetailsByBlockHashE400.
GetBlockDetailsByBlockHashE401 - struct for GetBlockDetailsByBlockHashE401.
GetBlockDetailsByBlockHashE403 - struct for GetBlockDetailsByBlockHashE403.
GetBlockDetailsByBlockHashFromCallback400Response struct for GetBlockDetailsByBlockHashFromCallback400Response.
GetBlockDetailsByBlockHashFromCallback401Response struct for GetBlockDetailsByBlockHashFromCallback401Response.
GetBlockDetailsByBlockHashFromCallback403Response struct for GetBlockDetailsByBlockHashFromCallback403Response.
GetBlockDetailsByBlockHashFromCallbackE400 - struct for GetBlockDetailsByBlockHashFromCallbackE400.
GetBlockDetailsByBlockHashFromCallbackE401 - struct for GetBlockDetailsByBlockHashFromCallbackE401.
GetBlockDetailsByBlockHashFromCallbackE403 - struct for GetBlockDetailsByBlockHashFromCallbackE403.
GetBlockDetailsByBlockHashFromCallbackR struct for GetBlockDetailsByBlockHashFromCallbackR.
GetBlockDetailsByBlockHashFromCallbackRData struct for GetBlockDetailsByBlockHashFromCallbackRData.
GetBlockDetailsByBlockHashFromCallbackRI struct for GetBlockDetailsByBlockHashFromCallbackRI.
GetBlockDetailsByBlockHashFromCallbackRIBS - struct for GetBlockDetailsByBlockHashFromCallbackRIBS.
GetBlockDetailsByBlockHashFromCallbackRIBSB Bitcoin.
GetBlockDetailsByBlockHashFromCallbackRIBSBC Bitcoin Cash.
GetBlockDetailsByBlockHashFromCallbackRIBSBSC Binance Smart Chain.
GetBlockDetailsByBlockHashFromCallbackRIBSD Dash.
GetBlockDetailsByBlockHashFromCallbackRIBSD2 Dogecoin.
GetBlockDetailsByBlockHashFromCallbackRIBSE Ethereum.
GetBlockDetailsByBlockHashFromCallbackRIBSEC Ethereum Classic.
GetBlockDetailsByBlockHashFromCallbackRIBSL Litecoin.
GetBlockDetailsByBlockHashFromCallbackRIBST Tron.
GetBlockDetailsByBlockHashFromCallbackRIBSX XRP.
GetBlockDetailsByBlockHashFromCallbackRIBSZ Zilliqa.
GetBlockDetailsByBlockHashFromCallbackRIBSZ2 Zcash.
GetBlockDetailsByBlockHashR struct for GetBlockDetailsByBlockHashR.
GetBlockDetailsByBlockHashRData struct for GetBlockDetailsByBlockHashRData.
GetBlockDetailsByBlockHashRI struct for GetBlockDetailsByBlockHashRI.
GetBlockDetailsByBlockHashRIBS - struct for GetBlockDetailsByBlockHashRIBS.
GetBlockDetailsByBlockHashRIBSB Bitcoin.
GetBlockDetailsByBlockHashRIBSBC Bitcoin Cash.
GetBlockDetailsByBlockHashRIBSBSC Binance Smart Chain.
GetBlockDetailsByBlockHashRIBSD Dogecoin.
GetBlockDetailsByBlockHashRIBSD2 Dash.
GetBlockDetailsByBlockHashRIBSE Ethereum.
GetBlockDetailsByBlockHashRIBSEC Ethereum Classic.
GetBlockDetailsByBlockHashRIBSL Litecoin.
GetBlockDetailsByBlockHashRIBSZ Zcash.
GetBlockDetailsByBlockHashRIBSZ2 Zilliqa.
GetBlockDetailsByBlockHeight400Response struct for GetBlockDetailsByBlockHeight400Response.
GetBlockDetailsByBlockHeight401Response struct for GetBlockDetailsByBlockHeight401Response.
GetBlockDetailsByBlockHeight403Response struct for GetBlockDetailsByBlockHeight403Response.
GetBlockDetailsByBlockHeightE400 - struct for GetBlockDetailsByBlockHeightE400.
GetBlockDetailsByBlockHeightE401 - struct for GetBlockDetailsByBlockHeightE401.
GetBlockDetailsByBlockHeightE403 - struct for GetBlockDetailsByBlockHeightE403.
GetBlockDetailsByBlockHeightFromCallback400Response struct for GetBlockDetailsByBlockHeightFromCallback400Response.
GetBlockDetailsByBlockHeightFromCallback401Response struct for GetBlockDetailsByBlockHeightFromCallback401Response.
GetBlockDetailsByBlockHeightFromCallback403Response struct for GetBlockDetailsByBlockHeightFromCallback403Response.
GetBlockDetailsByBlockHeightFromCallbackE400 - struct for GetBlockDetailsByBlockHeightFromCallbackE400.
GetBlockDetailsByBlockHeightFromCallbackE401 - struct for GetBlockDetailsByBlockHeightFromCallbackE401.
GetBlockDetailsByBlockHeightFromCallbackE403 - struct for GetBlockDetailsByBlockHeightFromCallbackE403.
GetBlockDetailsByBlockHeightFromCallbackR struct for GetBlockDetailsByBlockHeightFromCallbackR.
GetBlockDetailsByBlockHeightFromCallbackRData struct for GetBlockDetailsByBlockHeightFromCallbackRData.
GetBlockDetailsByBlockHeightFromCallbackRI struct for GetBlockDetailsByBlockHeightFromCallbackRI.
GetBlockDetailsByBlockHeightFromCallbackRIBS - struct for GetBlockDetailsByBlockHeightFromCallbackRIBS.
GetBlockDetailsByBlockHeightFromCallbackRIBSB Bitcoin.
GetBlockDetailsByBlockHeightFromCallbackRIBSBC Bitcoin Cash.
GetBlockDetailsByBlockHeightFromCallbackRIBSBSC Binance Smart Chain.
GetBlockDetailsByBlockHeightFromCallbackRIBSD Dash.
GetBlockDetailsByBlockHeightFromCallbackRIBSD2 Dogecoin.
GetBlockDetailsByBlockHeightFromCallbackRIBSE Ethereum.
GetBlockDetailsByBlockHeightFromCallbackRIBSEC Ethereum Classic.
GetBlockDetailsByBlockHeightFromCallbackRIBSL Litecoin.
GetBlockDetailsByBlockHeightFromCallbackRIBSP Polygon.
GetBlockDetailsByBlockHeightFromCallbackRIBST Tron.
GetBlockDetailsByBlockHeightFromCallbackRIBSX XRP.
GetBlockDetailsByBlockHeightFromCallbackRIBSZ Zilliqa.
GetBlockDetailsByBlockHeightFromCallbackRIBSZ2 Zcash.
GetBlockDetailsByBlockHeightR struct for GetBlockDetailsByBlockHeightR.
GetBlockDetailsByBlockHeightRData struct for GetBlockDetailsByBlockHeightRData.
GetBlockDetailsByBlockHeightRI struct for GetBlockDetailsByBlockHeightRI.
GetBlockDetailsByBlockHeightRIBS - struct for GetBlockDetailsByBlockHeightRIBS.
GetBlockDetailsByBlockHeightRIBSB Bitcoin.
GetBlockDetailsByBlockHeightRIBSBC Bitcoin Cash.
GetBlockDetailsByBlockHeightRIBSBSC Binance Smart Chain.
GetBlockDetailsByBlockHeightRIBSD Dogecoin.
GetBlockDetailsByBlockHeightRIBSD2 Dash.
GetBlockDetailsByBlockHeightRIBSE Ethereum.
GetBlockDetailsByBlockHeightRIBSEC Ethereum Classic.
GetBlockDetailsByBlockHeightRIBSL Litecoin.
GetBlockDetailsByBlockHeightRIBSZ Zcash.
GetBlockDetailsByBlockHeightRIBSZ2 Zilliqa.
GetEIP1559FeeRecommendations400Response struct for GetEIP1559FeeRecommendations400Response.
GetEIP1559FeeRecommendations401Response struct for GetEIP1559FeeRecommendations401Response.
GetEIP1559FeeRecommendations403Response struct for GetEIP1559FeeRecommendations403Response.
GetEIP1559FeeRecommendationsE400 - struct for GetEIP1559FeeRecommendationsE400.
GetEIP1559FeeRecommendationsE401 - struct for GetEIP1559FeeRecommendationsE401.
GetEIP1559FeeRecommendationsE403 - struct for GetEIP1559FeeRecommendationsE403.
GetEIP1559FeeRecommendationsR struct for GetEIP1559FeeRecommendationsR.
GetEIP1559FeeRecommendationsRData struct for GetEIP1559FeeRecommendationsRData.
GetEIP1559FeeRecommendationsRI struct for GetEIP1559FeeRecommendationsRI.
GetEIP1559FeeRecommendationsRIBaseFeePerGas struct for GetEIP1559FeeRecommendationsRIBaseFeePerGas.
GetEIP1559FeeRecommendationsRIMaxFeePerGas struct for GetEIP1559FeeRecommendationsRIMaxFeePerGas.
GetEIP1559FeeRecommendationsRIMaxPriorityFeePerGas struct for GetEIP1559FeeRecommendationsRIMaxPriorityFeePerGas.
GetExchangeRateByAssetsIDs400Response struct for GetExchangeRateByAssetsIDs400Response.
GetExchangeRateByAssetsIDs401Response struct for GetExchangeRateByAssetsIDs401Response.
GetExchangeRateByAssetsIDs403Response struct for GetExchangeRateByAssetsIDs403Response.
GetExchangeRateByAssetsIDs422Response struct for GetExchangeRateByAssetsIDs422Response.
GetExchangeRateByAssetsIDsE400 - struct for GetExchangeRateByAssetsIDsE400.
GetExchangeRateByAssetsIDsE401 - struct for GetExchangeRateByAssetsIDsE401.
GetExchangeRateByAssetsIDsE403 - struct for GetExchangeRateByAssetsIDsE403.
GetExchangeRateByAssetsIDsE422 - struct for GetExchangeRateByAssetsIDsE422.
GetExchangeRateByAssetsIDsR struct for GetExchangeRateByAssetsIDsR.
GetExchangeRateByAssetsIDsRData struct for GetExchangeRateByAssetsIDsRData.
GetExchangeRateByAssetsIDsRI struct for GetExchangeRateByAssetsIDsRI.
GetExchangeRateByAssetSymbols400Response struct for GetExchangeRateByAssetSymbols400Response.
GetExchangeRateByAssetSymbols401Response struct for GetExchangeRateByAssetSymbols401Response.
GetExchangeRateByAssetSymbols403Response struct for GetExchangeRateByAssetSymbols403Response.
GetExchangeRateByAssetSymbols422Response struct for GetExchangeRateByAssetSymbols422Response.
GetExchangeRateByAssetSymbolsE400 - struct for GetExchangeRateByAssetSymbolsE400.
GetExchangeRateByAssetSymbolsE401 - struct for GetExchangeRateByAssetSymbolsE401.
GetExchangeRateByAssetSymbolsE403 - struct for GetExchangeRateByAssetSymbolsE403.
GetExchangeRateByAssetSymbolsE422 - struct for GetExchangeRateByAssetSymbolsE422.
GetExchangeRateByAssetSymbolsR struct for GetExchangeRateByAssetSymbolsR.
GetExchangeRateByAssetSymbolsRData struct for GetExchangeRateByAssetSymbolsRData.
GetExchangeRateByAssetSymbolsRI struct for GetExchangeRateByAssetSymbolsRI.
GetFeeAddressDetails400Response struct for GetFeeAddressDetails400Response.
GetFeeAddressDetails401Response struct for GetFeeAddressDetails401Response.
GetFeeAddressDetails403Response struct for GetFeeAddressDetails403Response.
GetFeeAddressDetailsE400 - struct for GetFeeAddressDetailsE400.
GetFeeAddressDetailsE401 - struct for GetFeeAddressDetailsE401.
GetFeeAddressDetailsE403 - struct for GetFeeAddressDetailsE403.
GetFeeAddressDetailsR struct for GetFeeAddressDetailsR.
GetFeeAddressDetailsRData struct for GetFeeAddressDetailsRData.
GetFeeAddressDetailsRI struct for GetFeeAddressDetailsRI.
GetFeeAddressDetailsRIBalance Specifies the balance of the fee address.
GetFeeRecommendations400Response struct for GetFeeRecommendations400Response.
GetFeeRecommendations401Response struct for GetFeeRecommendations401Response.
GetFeeRecommendations403Response struct for GetFeeRecommendations403Response.
GetFeeRecommendationsE400 - struct for GetFeeRecommendationsE400.
GetFeeRecommendationsE401 - struct for GetFeeRecommendationsE401.
GetFeeRecommendationsE403 - struct for GetFeeRecommendationsE403.
GetFeeRecommendationsR struct for GetFeeRecommendationsR.
GetFeeRecommendationsRData struct for GetFeeRecommendationsRData.
GetFeeRecommendationsRI struct for GetFeeRecommendationsRI.
GetHDWalletXPubYPubZPubAssets400Response struct for GetHDWalletXPubYPubZPubAssets400Response.
GetHDWalletXPubYPubZPubAssets401Response struct for GetHDWalletXPubYPubZPubAssets401Response.
GetHDWalletXPubYPubZPubAssets403Response struct for GetHDWalletXPubYPubZPubAssets403Response.
GetHDWalletXPubYPubZPubAssets422Response struct for GetHDWalletXPubYPubZPubAssets422Response.
GetHDWalletXPubYPubZPubAssetsE400 - struct for GetHDWalletXPubYPubZPubAssetsE400.
GetHDWalletXPubYPubZPubAssetsE401 - struct for GetHDWalletXPubYPubZPubAssetsE401.
GetHDWalletXPubYPubZPubAssetsE403 - struct for GetHDWalletXPubYPubZPubAssetsE403.
GetHDWalletXPubYPubZPubAssetsE422 - struct for GetHDWalletXPubYPubZPubAssetsE422.
GetHDWalletXPubYPubZPubAssetsR struct for GetHDWalletXPubYPubZPubAssetsR.
GetHDWalletXPubYPubZPubAssetsRData struct for GetHDWalletXPubYPubZPubAssetsRData.
GetHDWalletXPubYPubZPubAssetsRI struct for GetHDWalletXPubYPubZPubAssetsRI.
GetHDWalletXPubYPubZPubAssetsRIConfirmedBalance struct for GetHDWalletXPubYPubZPubAssetsRIConfirmedBalance.
GetHDWalletXPubYPubZPubAssetsRIFungibleTokensInner struct for GetHDWalletXPubYPubZPubAssetsRIFungibleTokensInner.
GetHDWalletXPubYPubZPubAssetsRINonFungibleTokensInner struct for GetHDWalletXPubYPubZPubAssetsRINonFungibleTokensInner.
GetHDWalletXPubYPubZPubDetails400Response struct for GetHDWalletXPubYPubZPubDetails400Response.
GetHDWalletXPubYPubZPubDetails401Response struct for GetHDWalletXPubYPubZPubDetails401Response.
GetHDWalletXPubYPubZPubDetails403Response struct for GetHDWalletXPubYPubZPubDetails403Response.
GetHDWalletXPubYPubZPubDetails422Response struct for GetHDWalletXPubYPubZPubDetails422Response.
GetHDWalletXPubYPubZPubDetailsE400 - struct for GetHDWalletXPubYPubZPubDetailsE400.
GetHDWalletXPubYPubZPubDetailsE401 - struct for GetHDWalletXPubYPubZPubDetailsE401.
GetHDWalletXPubYPubZPubDetailsE403 - struct for GetHDWalletXPubYPubZPubDetailsE403.
GetHDWalletXPubYPubZPubDetailsE422 - struct for GetHDWalletXPubYPubZPubDetailsE422.
GetHDWalletXPubYPubZPubDetailsR struct for GetHDWalletXPubYPubZPubDetailsR.
GetHDWalletXPubYPubZPubDetailsRData struct for GetHDWalletXPubYPubZPubDetailsRData.
GetHDWalletXPubYPubZPubDetailsRI struct for GetHDWalletXPubYPubZPubDetailsRI.
GetInternalTransactionByTransactionHashAndOperationId400Response struct for GetInternalTransactionByTransactionHashAndOperationId400Response.
GetInternalTransactionByTransactionHashAndOperationId401Response struct for GetInternalTransactionByTransactionHashAndOperationId401Response.
GetInternalTransactionByTransactionHashAndOperationId403Response struct for GetInternalTransactionByTransactionHashAndOperationId403Response.
GetInternalTransactionByTransactionHashAndOperationId404Response struct for GetInternalTransactionByTransactionHashAndOperationId404Response.
GetInternalTransactionByTransactionHashAndOperationIdE400 - struct for GetInternalTransactionByTransactionHashAndOperationIdE400.
GetInternalTransactionByTransactionHashAndOperationIdE401 - struct for GetInternalTransactionByTransactionHashAndOperationIdE401.
GetInternalTransactionByTransactionHashAndOperationIdE403 - struct for GetInternalTransactionByTransactionHashAndOperationIdE403.
GetInternalTransactionByTransactionHashAndOperationIdR struct for GetInternalTransactionByTransactionHashAndOperationIdR.
GetInternalTransactionByTransactionHashAndOperationIdRData struct for GetInternalTransactionByTransactionHashAndOperationIdRData.
GetInternalTransactionByTransactionHashAndOperationIdRI struct for GetInternalTransactionByTransactionHashAndOperationIdRI.
GetLastMinedBlock400Response struct for GetLastMinedBlock400Response.
GetLastMinedBlock401Response struct for GetLastMinedBlock401Response.
GetLastMinedBlock403Response struct for GetLastMinedBlock403Response.
GetLastMinedBlockE400 - struct for GetLastMinedBlockE400.
GetLastMinedBlockE401 - struct for GetLastMinedBlockE401.
GetLastMinedBlockE403 - struct for GetLastMinedBlockE403.
GetLastMinedBlockR struct for GetLastMinedBlockR.
GetLastMinedBlockRData struct for GetLastMinedBlockRData.
GetLastMinedBlockRI struct for GetLastMinedBlockRI.
GetLastMinedBlockRIBS - struct for GetLastMinedBlockRIBS.
GetLastMinedBlockRIBSB Bitcoin.
GetLastMinedBlockRIBSBC Bitcoin Cash.
GetLastMinedBlockRIBSBSC Binance Smart Chain.
GetLastMinedBlockRIBSD Dogecoin.
GetLastMinedBlockRIBSD2 Dash.
GetLastMinedBlockRIBSE Ethereum.
GetLastMinedBlockRIBSEC Ethereum Classic.
GetLastMinedBlockRIBSL Litecoin.
GetLastMinedBlockRIBSZ Zcash.
GetLastMinedBlockRIBSZ2 Zilliqa.
GetLatestMinedXRPRippleBlock400Response struct for GetLatestMinedXRPRippleBlock400Response.
GetLatestMinedXRPRippleBlock401Response struct for GetLatestMinedXRPRippleBlock401Response.
GetLatestMinedXRPRippleBlock403Response struct for GetLatestMinedXRPRippleBlock403Response.
GetLatestMinedXRPRippleBlockE400 - struct for GetLatestMinedXRPRippleBlockE400.
GetLatestMinedXRPRippleBlockE401 - struct for GetLatestMinedXRPRippleBlockE401.
GetLatestMinedXRPRippleBlockE403 - struct for GetLatestMinedXRPRippleBlockE403.
GetLatestMinedXRPRippleBlockR struct for GetLatestMinedXRPRippleBlockR.
GetLatestMinedXRPRippleBlockRData struct for GetLatestMinedXRPRippleBlockRData.
GetLatestMinedXRPRippleBlockRI struct for GetLatestMinedXRPRippleBlockRI.
GetLatestMinedXRPRippleBlockRITotalCoins struct for GetLatestMinedXRPRippleBlockRITotalCoins.
GetLatestMinedXRPRippleBlockRITotalFees struct for GetLatestMinedXRPRippleBlockRITotalFees.
GetLatestMinedZilliqaBlock400Response struct for GetLatestMinedZilliqaBlock400Response.
GetLatestMinedZilliqaBlock401Response struct for GetLatestMinedZilliqaBlock401Response.
GetLatestMinedZilliqaBlock403Response struct for GetLatestMinedZilliqaBlock403Response.
GetLatestMinedZilliqaBlockE400 - struct for GetLatestMinedZilliqaBlockE400.
GetLatestMinedZilliqaBlockE401 - struct for GetLatestMinedZilliqaBlockE401.
GetLatestMinedZilliqaBlockE403 - struct for GetLatestMinedZilliqaBlockE403.
GetLatestMinedZilliqaBlockR struct for GetLatestMinedZilliqaBlockR.
GetLatestMinedZilliqaBlockRData struct for GetLatestMinedZilliqaBlockRData.
GetLatestMinedZilliqaBlockRI struct for GetLatestMinedZilliqaBlockRI.
GetNextAvailableNonce400Response struct for GetNextAvailableNonce400Response.
GetNextAvailableNonce401Response struct for GetNextAvailableNonce401Response.
GetNextAvailableNonce403Response struct for GetNextAvailableNonce403Response.
GetNextAvailableNonceE400 - struct for GetNextAvailableNonceE400.
GetNextAvailableNonceE401 - struct for GetNextAvailableNonceE401.
GetNextAvailableNonceE403 - struct for GetNextAvailableNonceE403.
GetNextAvailableNonceR struct for GetNextAvailableNonceR.
GetNextAvailableNonceRData struct for GetNextAvailableNonceRData.
GetNextAvailableNonceRI struct for GetNextAvailableNonceRI.
GetRawTransactionData400Response struct for GetRawTransactionData400Response.
GetRawTransactionData401Response struct for GetRawTransactionData401Response.
GetRawTransactionData403Response struct for GetRawTransactionData403Response.
GetRawTransactionDataE400 - struct for GetRawTransactionDataE400.
GetRawTransactionDataE401 - struct for GetRawTransactionDataE401.
GetRawTransactionDataE403 - struct for GetRawTransactionDataE403.
GetRawTransactionDataR struct for GetRawTransactionDataR.
GetRawTransactionDataRData struct for GetRawTransactionDataRData.
GetRawTransactionDataRI struct for GetRawTransactionDataRI.
GetTokenDetailsByContractAddress400Response struct for GetTokenDetailsByContractAddress400Response.
GetTokenDetailsByContractAddress401Response struct for GetTokenDetailsByContractAddress401Response.
GetTokenDetailsByContractAddress403Response struct for GetTokenDetailsByContractAddress403Response.
GetTokenDetailsByContractAddressE400 - struct for GetTokenDetailsByContractAddressE400.
GetTokenDetailsByContractAddressE401 - struct for GetTokenDetailsByContractAddressE401.
GetTokenDetailsByContractAddressE403 - struct for GetTokenDetailsByContractAddressE403.
GetTokenDetailsByContractAddressR struct for GetTokenDetailsByContractAddressR.
GetTokenDetailsByContractAddressRData struct for GetTokenDetailsByContractAddressRData.
GetTokenDetailsByContractAddressRI struct for GetTokenDetailsByContractAddressRI.
GetTransactionDetailsByTransactionID400Response struct for GetTransactionDetailsByTransactionID400Response.
GetTransactionDetailsByTransactionID401Response struct for GetTransactionDetailsByTransactionID401Response.
GetTransactionDetailsByTransactionID403Response struct for GetTransactionDetailsByTransactionID403Response.
GetTransactionDetailsByTransactionID404Response struct for GetTransactionDetailsByTransactionID404Response.
GetTransactionDetailsByTransactionIDE400 - struct for GetTransactionDetailsByTransactionIDE400.
GetTransactionDetailsByTransactionIDE401 - struct for GetTransactionDetailsByTransactionIDE401.
GetTransactionDetailsByTransactionIDE403 - struct for GetTransactionDetailsByTransactionIDE403.
GetTransactionDetailsByTransactionIDFromCallback400Response struct for GetTransactionDetailsByTransactionIDFromCallback400Response.
GetTransactionDetailsByTransactionIDFromCallback401Response struct for GetTransactionDetailsByTransactionIDFromCallback401Response.
GetTransactionDetailsByTransactionIDFromCallback403Response struct for GetTransactionDetailsByTransactionIDFromCallback403Response.
GetTransactionDetailsByTransactionIDFromCallbackE400 - struct for GetTransactionDetailsByTransactionIDFromCallbackE400.
GetTransactionDetailsByTransactionIDFromCallbackE401 - struct for GetTransactionDetailsByTransactionIDFromCallbackE401.
GetTransactionDetailsByTransactionIDFromCallbackE403 - struct for GetTransactionDetailsByTransactionIDFromCallbackE403.
GetTransactionDetailsByTransactionIDFromCallbackR struct for GetTransactionDetailsByTransactionIDFromCallbackR.
GetTransactionDetailsByTransactionIDFromCallbackRData struct for GetTransactionDetailsByTransactionIDFromCallbackRData.
GetTransactionDetailsByTransactionIDFromCallbackRI struct for GetTransactionDetailsByTransactionIDFromCallbackRI.
GetTransactionDetailsByTransactionIDFromCallbackRIBS - struct for GetTransactionDetailsByTransactionIDFromCallbackRIBS.
GetTransactionDetailsByTransactionIDFromCallbackRIBSB Bitcoin.
GetTransactionDetailsByTransactionIDFromCallbackRIBSBC Bitcoin Cash.
GetTransactionDetailsByTransactionIDFromCallbackRIBSBCVoutInner struct for GetTransactionDetailsByTransactionIDFromCallbackRIBSBCVoutInner.
GetTransactionDetailsByTransactionIDFromCallbackRIBSBCVoutInnerScriptPubKey Represents the script public key.
GetTransactionDetailsByTransactionIDFromCallbackRIBSBSC Binance Smart Chain.
GetTransactionDetailsByTransactionIDFromCallbackRIBSBVinInner struct for GetTransactionDetailsByTransactionIDFromCallbackRIBSBVinInner.
GetTransactionDetailsByTransactionIDFromCallbackRIBSBVinInnerScriptSig Specifies the required signatures.
GetTransactionDetailsByTransactionIDFromCallbackRIBSBVoutInner struct for GetTransactionDetailsByTransactionIDFromCallbackRIBSBVoutInner.
GetTransactionDetailsByTransactionIDFromCallbackRIBSBVoutInnerScriptPubKey Represents the script public key.
GetTransactionDetailsByTransactionIDFromCallbackRIBSD Dash.
GetTransactionDetailsByTransactionIDFromCallbackRIBSD2 Dogecoin.
GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VinInner struct for GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VinInner.
GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInner struct for GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInner.
GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInnerScriptPubKey Represents the script public key.
GetTransactionDetailsByTransactionIDFromCallbackRIBSDVinInner struct for GetTransactionDetailsByTransactionIDFromCallbackRIBSDVinInner.
GetTransactionDetailsByTransactionIDFromCallbackRIBSDVoutInner struct for GetTransactionDetailsByTransactionIDFromCallbackRIBSDVoutInner.
GetTransactionDetailsByTransactionIDFromCallbackRIBSDVoutInnerScriptPubKey Represents the script public key.
GetTransactionDetailsByTransactionIDFromCallbackRIBSE Ethereum.
GetTransactionDetailsByTransactionIDFromCallbackRIBSEC Ethereum Classic.
GetTransactionDetailsByTransactionIDFromCallbackRIBSL Litecoin.
GetTransactionDetailsByTransactionIDFromCallbackRIBSLVoutInner struct for GetTransactionDetailsByTransactionIDFromCallbackRIBSLVoutInner.
GetTransactionDetailsByTransactionIDFromCallbackRIBSLVoutInnerScriptPubKey Represents the script public key.
GetTransactionDetailsByTransactionIDFromCallbackRIBSP Polygon.
GetTransactionDetailsByTransactionIDFromCallbackRIBST Tron.
GetTransactionDetailsByTransactionIDFromCallbackRIBSTBandwidthUsed struct for GetTransactionDetailsByTransactionIDFromCallbackRIBSTBandwidthUsed.
GetTransactionDetailsByTransactionIDFromCallbackRIBSTEnergyUsed struct for GetTransactionDetailsByTransactionIDFromCallbackRIBSTEnergyUsed.
GetTransactionDetailsByTransactionIDFromCallbackRIBSX XRP.
GetTransactionDetailsByTransactionIDFromCallbackRIBSXValue struct for GetTransactionDetailsByTransactionIDFromCallbackRIBSXValue.
GetTransactionDetailsByTransactionIDFromCallbackRIBSZ Zcash.
GetTransactionDetailsByTransactionIDFromCallbackRIBSZ2 Zilliqa.
GetTransactionDetailsByTransactionIDFromCallbackRIBSZ2GasPrice struct for GetTransactionDetailsByTransactionIDFromCallbackRIBSZ2GasPrice.
GetTransactionDetailsByTransactionIDFromCallbackRIBSZVoutInner struct for GetTransactionDetailsByTransactionIDFromCallbackRIBSZVoutInner.
GetTransactionDetailsByTransactionIDFromCallbackRIBSZVoutInnerScriptPubKey Represents the script public key.
GetTransactionDetailsByTransactionIDFromCallbackRIFee struct for GetTransactionDetailsByTransactionIDFromCallbackRIFee.
GetTransactionDetailsByTransactionIDFromCallbackRIRecipientsInner struct for GetTransactionDetailsByTransactionIDFromCallbackRIRecipientsInner.
GetTransactionDetailsByTransactionIDFromCallbackRISendersInner struct for GetTransactionDetailsByTransactionIDFromCallbackRISendersInner.
GetTransactionDetailsByTransactionIDR struct for GetTransactionDetailsByTransactionIDR.
GetTransactionDetailsByTransactionIDRData struct for GetTransactionDetailsByTransactionIDRData.
GetTransactionDetailsByTransactionIDRI struct for GetTransactionDetailsByTransactionIDRI.
GetTransactionDetailsByTransactionIDRIBS - struct for GetTransactionDetailsByTransactionIDRIBS.
GetTransactionDetailsByTransactionIDRIBSB Bitcoin.
GetTransactionDetailsByTransactionIDRIBSBC Bitcoin Cash.
GetTransactionDetailsByTransactionIDRIBSBCVinInner struct for GetTransactionDetailsByTransactionIDRIBSBCVinInner.
GetTransactionDetailsByTransactionIDRIBSBCVoutInner struct for GetTransactionDetailsByTransactionIDRIBSBCVoutInner.
GetTransactionDetailsByTransactionIDRIBSBCVoutInnerScriptPubKey Represents the script public key.
GetTransactionDetailsByTransactionIDRIBSBSC Binance Smart Chain.
GetTransactionDetailsByTransactionIDRIBSBSCGasPrice struct for GetTransactionDetailsByTransactionIDRIBSBSCGasPrice.
GetTransactionDetailsByTransactionIDRIBSBVinInner struct for GetTransactionDetailsByTransactionIDRIBSBVinInner.
GetTransactionDetailsByTransactionIDRIBSBVinInnerScriptSig Specifies the required signatures.
GetTransactionDetailsByTransactionIDRIBSBVoutInner struct for GetTransactionDetailsByTransactionIDRIBSBVoutInner.
GetTransactionDetailsByTransactionIDRIBSBVoutInnerScriptPubKey Represents the script public key.
GetTransactionDetailsByTransactionIDRIBSD Dogecoin.
GetTransactionDetailsByTransactionIDRIBSD2 Dash.
GetTransactionDetailsByTransactionIDRIBSD2VinInner struct for GetTransactionDetailsByTransactionIDRIBSD2VinInner.
GetTransactionDetailsByTransactionIDRIBSD2VinInnerScriptSig Specifies the required signatures.
GetTransactionDetailsByTransactionIDRIBSD2VoutInner struct for GetTransactionDetailsByTransactionIDRIBSD2VoutInner.
GetTransactionDetailsByTransactionIDRIBSD2VoutInnerScriptPubKey Represents the script public key.
GetTransactionDetailsByTransactionIDRIBSDVinInner struct for GetTransactionDetailsByTransactionIDRIBSDVinInner.
GetTransactionDetailsByTransactionIDRIBSDVinInnerScriptSig Specifies the required signatures.
GetTransactionDetailsByTransactionIDRIBSDVoutInner struct for GetTransactionDetailsByTransactionIDRIBSDVoutInner.
GetTransactionDetailsByTransactionIDRIBSDVoutInnerScriptPubKey Represents the script public key.
GetTransactionDetailsByTransactionIDRIBSE Ethereum.
GetTransactionDetailsByTransactionIDRIBSEC Ethereum Classic.
GetTransactionDetailsByTransactionIDRIBSECGasPrice struct for GetTransactionDetailsByTransactionIDRIBSECGasPrice.
GetTransactionDetailsByTransactionIDRIBSEGasPrice struct for GetTransactionDetailsByTransactionIDRIBSEGasPrice.
GetTransactionDetailsByTransactionIDRIBSL Litecoin.
GetTransactionDetailsByTransactionIDRIBSLVinInner struct for GetTransactionDetailsByTransactionIDRIBSLVinInner.
GetTransactionDetailsByTransactionIDRIBSLVinInnerScriptSig Specifies the required signatures.
GetTransactionDetailsByTransactionIDRIBSLVoutInner struct for GetTransactionDetailsByTransactionIDRIBSLVoutInner.
GetTransactionDetailsByTransactionIDRIBSLVoutInnerScriptPubKey Represents the script public key.
GetTransactionDetailsByTransactionIDRIBSZ Zcash.
GetTransactionDetailsByTransactionIDRIBSZVinInner struct for GetTransactionDetailsByTransactionIDRIBSZVinInner.
GetTransactionDetailsByTransactionIDRIBSZVinInnerScriptSig Specifies the required signatures.
GetTransactionDetailsByTransactionIDRIBSZVJoinSplitInner struct for GetTransactionDetailsByTransactionIDRIBSZVJoinSplitInner.
GetTransactionDetailsByTransactionIDRIBSZVoutInner struct for GetTransactionDetailsByTransactionIDRIBSZVoutInner.
GetTransactionDetailsByTransactionIDRIBSZVoutInnerScriptPubKey Represents the script public key.
GetTransactionDetailsByTransactionIDRIBSZVShieldedOutputInner struct for GetTransactionDetailsByTransactionIDRIBSZVShieldedOutputInner.
GetTransactionDetailsByTransactionIDRIBSZVShieldedSpendInner struct for GetTransactionDetailsByTransactionIDRIBSZVShieldedSpendInner.
GetTransactionDetailsByTransactionIDRIFee struct for GetTransactionDetailsByTransactionIDRIFee.
GetTransactionDetailsByTransactionIDRIRecipientsInner struct for GetTransactionDetailsByTransactionIDRIRecipientsInner.
GetTransactionDetailsByTransactionIDRISendersInner struct for GetTransactionDetailsByTransactionIDRISendersInner.
GetTransactionRequestDetails400Response struct for GetTransactionRequestDetails400Response.
GetTransactionRequestDetails401Response struct for GetTransactionRequestDetails401Response.
GetTransactionRequestDetails403Response struct for GetTransactionRequestDetails403Response.
GetTransactionRequestDetailsE400 - struct for GetTransactionRequestDetailsE400.
GetTransactionRequestDetailsE401 - struct for GetTransactionRequestDetailsE401.
GetTransactionRequestDetailsE403 - struct for GetTransactionRequestDetailsE403.
GetTransactionRequestDetailsR struct for GetTransactionRequestDetailsR.
GetTransactionRequestDetailsRData struct for GetTransactionRequestDetailsRData.
GetTransactionRequestDetailsRI struct for GetTransactionRequestDetailsRI.
GetTransactionRequestDetailsRIRecipientsInner struct for GetTransactionRequestDetailsRIRecipientsInner.
GetWalletAssetDetails400Response struct for GetWalletAssetDetails400Response.
GetWalletAssetDetails401Response struct for GetWalletAssetDetails401Response.
GetWalletAssetDetails403Response struct for GetWalletAssetDetails403Response.
GetWalletAssetDetailsE400 - struct for GetWalletAssetDetailsE400.
GetWalletAssetDetailsE401 - struct for GetWalletAssetDetailsE401.
GetWalletAssetDetailsE403 - struct for GetWalletAssetDetailsE403.
GetWalletAssetDetailsR struct for GetWalletAssetDetailsR.
GetWalletAssetDetailsRData struct for GetWalletAssetDetailsRData.
GetWalletAssetDetailsRI struct for GetWalletAssetDetailsRI.
GetWalletAssetDetailsRIConfirmedBalance Specifies the confirmed balance.
GetWalletAssetDetailsRIFungibleTokensInner struct for GetWalletAssetDetailsRIFungibleTokensInner.
GetWalletAssetDetailsRINonFungibleTokensInner struct for GetWalletAssetDetailsRINonFungibleTokensInner.
GetWalletAssetDetailsRIRecievedConfirmedAmount Specifies the confirmed amount that has been received.
GetWalletAssetDetailsRISentConfirmedAmount Specifies the confirmed amount that has been sent.
GetWalletTransactionDetailsByTransactionID400Response struct for GetWalletTransactionDetailsByTransactionID400Response.
GetWalletTransactionDetailsByTransactionID401Response struct for GetWalletTransactionDetailsByTransactionID401Response.
GetWalletTransactionDetailsByTransactionID403Response struct for GetWalletTransactionDetailsByTransactionID403Response.
GetWalletTransactionDetailsByTransactionIDE400 - struct for GetWalletTransactionDetailsByTransactionIDE400.
GetWalletTransactionDetailsByTransactionIDE401 - struct for GetWalletTransactionDetailsByTransactionIDE401.
GetWalletTransactionDetailsByTransactionIDE403 - struct for GetWalletTransactionDetailsByTransactionIDE403.
GetWalletTransactionDetailsByTransactionIDR struct for GetWalletTransactionDetailsByTransactionIDR.
GetWalletTransactionDetailsByTransactionIDRData struct for GetWalletTransactionDetailsByTransactionIDRData.
GetWalletTransactionDetailsByTransactionIDRI struct for GetWalletTransactionDetailsByTransactionIDRI.
GetWalletTransactionDetailsByTransactionIDRIBS - struct for GetWalletTransactionDetailsByTransactionIDRIBS.
GetWalletTransactionDetailsByTransactionIDRIBSB Bitcoin.
GetWalletTransactionDetailsByTransactionIDRIBSBC Bitcoin Cash.
GetWalletTransactionDetailsByTransactionIDRIBSBCVinInner struct for GetWalletTransactionDetailsByTransactionIDRIBSBCVinInner.
GetWalletTransactionDetailsByTransactionIDRIBSBCVinInnerScriptSig Object representation of the script.
GetWalletTransactionDetailsByTransactionIDRIBSBCVoutInner struct for GetWalletTransactionDetailsByTransactionIDRIBSBCVoutInner.
GetWalletTransactionDetailsByTransactionIDRIBSBCVoutInnerScriptPubKey Represents the script public key.
GetWalletTransactionDetailsByTransactionIDRIBSBSC Binance Smart Chain.
GetWalletTransactionDetailsByTransactionIDRIBSBVinInner struct for GetWalletTransactionDetailsByTransactionIDRIBSBVinInner.
GetWalletTransactionDetailsByTransactionIDRIBSBVinInnerScriptSig Object representation of the script.
GetWalletTransactionDetailsByTransactionIDRIBSBVoutInner struct for GetWalletTransactionDetailsByTransactionIDRIBSBVoutInner.
GetWalletTransactionDetailsByTransactionIDRIBSBVoutInnerScriptPubKey Object representation of the script.
GetWalletTransactionDetailsByTransactionIDRIBSD Dogecoin.
GetWalletTransactionDetailsByTransactionIDRIBSD2 Dash.
GetWalletTransactionDetailsByTransactionIDRIBSD2VinInner struct for GetWalletTransactionDetailsByTransactionIDRIBSD2VinInner.
GetWalletTransactionDetailsByTransactionIDRIBSDVinInner struct for GetWalletTransactionDetailsByTransactionIDRIBSDVinInner.
GetWalletTransactionDetailsByTransactionIDRIBSDVinInnerScriptSig Object representation of the script.
GetWalletTransactionDetailsByTransactionIDRIBSE Ethereum.
GetWalletTransactionDetailsByTransactionIDRIBSEC Ethereum Classic.
GetWalletTransactionDetailsByTransactionIDRIBSEGasPrice struct for GetWalletTransactionDetailsByTransactionIDRIBSEGasPrice.
GetWalletTransactionDetailsByTransactionIDRIBSL Litecoin.
GetWalletTransactionDetailsByTransactionIDRIBSLVinInner struct for GetWalletTransactionDetailsByTransactionIDRIBSLVinInner.
GetWalletTransactionDetailsByTransactionIDRIBSLVinInnerScriptSig Object representation of the script.
GetWalletTransactionDetailsByTransactionIDRIBSP Polygon.
GetWalletTransactionDetailsByTransactionIDRIBSPGasPrice struct for GetWalletTransactionDetailsByTransactionIDRIBSPGasPrice.
GetWalletTransactionDetailsByTransactionIDRIBST Tron.
GetWalletTransactionDetailsByTransactionIDRIBSZ Zcash.
GetWalletTransactionDetailsByTransactionIDRIBSZVinInner struct for GetWalletTransactionDetailsByTransactionIDRIBSZVinInner.
GetWalletTransactionDetailsByTransactionIDRIFee struct for GetWalletTransactionDetailsByTransactionIDRIFee.
GetXRPRippleAddressDetails400Response struct for GetXRPRippleAddressDetails400Response.
GetXRPRippleAddressDetails401Response struct for GetXRPRippleAddressDetails401Response.
GetXRPRippleAddressDetails403Response struct for GetXRPRippleAddressDetails403Response.
GetXRPRippleAddressDetailsE400 - struct for GetXRPRippleAddressDetailsE400.
GetXRPRippleAddressDetailsE401 - struct for GetXRPRippleAddressDetailsE401.
GetXRPRippleAddressDetailsE403 - struct for GetXRPRippleAddressDetailsE403.
GetXRPRippleAddressDetailsR struct for GetXRPRippleAddressDetailsR.
GetXRPRippleAddressDetailsRData struct for GetXRPRippleAddressDetailsRData.
GetXRPRippleAddressDetailsRI struct for GetXRPRippleAddressDetailsRI.
GetXRPRippleAddressDetailsRIBalance Defines the balance of the account.
GetXRPRippleBlockDetailsByBlockHash400Response struct for GetXRPRippleBlockDetailsByBlockHash400Response.
GetXRPRippleBlockDetailsByBlockHash401Response struct for GetXRPRippleBlockDetailsByBlockHash401Response.
GetXRPRippleBlockDetailsByBlockHash403Response struct for GetXRPRippleBlockDetailsByBlockHash403Response.
GetXRPRippleBlockDetailsByBlockHashE400 - struct for GetXRPRippleBlockDetailsByBlockHashE400.
GetXRPRippleBlockDetailsByBlockHashE401 - struct for GetXRPRippleBlockDetailsByBlockHashE401.
GetXRPRippleBlockDetailsByBlockHashE403 - struct for GetXRPRippleBlockDetailsByBlockHashE403.
GetXRPRippleBlockDetailsByBlockHashR struct for GetXRPRippleBlockDetailsByBlockHashR.
GetXRPRippleBlockDetailsByBlockHashRData struct for GetXRPRippleBlockDetailsByBlockHashRData.
GetXRPRippleBlockDetailsByBlockHashRI struct for GetXRPRippleBlockDetailsByBlockHashRI.
GetXRPRippleBlockDetailsByBlockHashRITotalCoins Defines the total coins.
GetXRPRippleBlockDetailsByBlockHeight400Response struct for GetXRPRippleBlockDetailsByBlockHeight400Response.
GetXRPRippleBlockDetailsByBlockHeight401Response struct for GetXRPRippleBlockDetailsByBlockHeight401Response.
GetXRPRippleBlockDetailsByBlockHeight403Response struct for GetXRPRippleBlockDetailsByBlockHeight403Response.
GetXRPRippleBlockDetailsByBlockHeightE400 - struct for GetXRPRippleBlockDetailsByBlockHeightE400.
GetXRPRippleBlockDetailsByBlockHeightE401 - struct for GetXRPRippleBlockDetailsByBlockHeightE401.
GetXRPRippleBlockDetailsByBlockHeightE403 - struct for GetXRPRippleBlockDetailsByBlockHeightE403.
GetXRPRippleBlockDetailsByBlockHeightR struct for GetXRPRippleBlockDetailsByBlockHeightR.
GetXRPRippleBlockDetailsByBlockHeightRData struct for GetXRPRippleBlockDetailsByBlockHeightRData.
GetXRPRippleBlockDetailsByBlockHeightRI struct for GetXRPRippleBlockDetailsByBlockHeightRI.
GetXRPRippleBlockDetailsByBlockHeightRITotalCoins Represents the total Coins of the block as a string.
GetXRPRippleBlockDetailsByBlockHeightRITotalFees Defines the total fees included in the specific block.
GetXRPRippleTransactionDetailsByTransactionID400Response struct for GetXRPRippleTransactionDetailsByTransactionID400Response.
GetXRPRippleTransactionDetailsByTransactionID401Response struct for GetXRPRippleTransactionDetailsByTransactionID401Response.
GetXRPRippleTransactionDetailsByTransactionID403Response struct for GetXRPRippleTransactionDetailsByTransactionID403Response.
GetXRPRippleTransactionDetailsByTransactionID404Response struct for GetXRPRippleTransactionDetailsByTransactionID404Response.
GetXRPRippleTransactionDetailsByTransactionIDE400 - struct for GetXRPRippleTransactionDetailsByTransactionIDE400.
GetXRPRippleTransactionDetailsByTransactionIDE401 - struct for GetXRPRippleTransactionDetailsByTransactionIDE401.
GetXRPRippleTransactionDetailsByTransactionIDE403 - struct for GetXRPRippleTransactionDetailsByTransactionIDE403.
GetXRPRippleTransactionDetailsByTransactionIDR struct for GetXRPRippleTransactionDetailsByTransactionIDR.
GetXRPRippleTransactionDetailsByTransactionIDRData struct for GetXRPRippleTransactionDetailsByTransactionIDRData.
GetXRPRippleTransactionDetailsByTransactionIDRI struct for GetXRPRippleTransactionDetailsByTransactionIDRI.
GetXRPRippleTransactionDetailsByTransactionIDRIFee struct for GetXRPRippleTransactionDetailsByTransactionIDRIFee.
GetXRPRippleTransactionDetailsByTransactionIDRIOffer Defines the specific offer.
GetXRPRippleTransactionDetailsByTransactionIDRIReceive Defines on object array of the funds for which an offer is made.
GetXRPRippleTransactionDetailsByTransactionIDRIRecipientsInner struct for GetXRPRippleTransactionDetailsByTransactionIDRIRecipientsInner.
GetXRPRippleTransactionDetailsByTransactionIDRISendersInner struct for GetXRPRippleTransactionDetailsByTransactionIDRISendersInner.
GetXRPRippleTransactionDetailsByTransactionIDRIValue struct for GetXRPRippleTransactionDetailsByTransactionIDRIValue.
GetZilliqaAddressDetails400Response struct for GetZilliqaAddressDetails400Response.
GetZilliqaAddressDetails401Response struct for GetZilliqaAddressDetails401Response.
GetZilliqaAddressDetails403Response struct for GetZilliqaAddressDetails403Response.
GetZilliqaAddressDetailsE400 - struct for GetZilliqaAddressDetailsE400.
GetZilliqaAddressDetailsE401 - struct for GetZilliqaAddressDetailsE401.
GetZilliqaAddressDetailsE403 - struct for GetZilliqaAddressDetailsE403.
GetZilliqaAddressDetailsR struct for GetZilliqaAddressDetailsR.
GetZilliqaAddressDetailsRData struct for GetZilliqaAddressDetailsRData.
GetZilliqaAddressDetailsRI struct for GetZilliqaAddressDetailsRI.
GetZilliqaAddressDetailsRIBalance Represents the total balance of the address as an object.
GetZilliqaBlockDetailsByBlockHash400Response struct for GetZilliqaBlockDetailsByBlockHash400Response.
GetZilliqaBlockDetailsByBlockHash401Response struct for GetZilliqaBlockDetailsByBlockHash401Response.
GetZilliqaBlockDetailsByBlockHash403Response struct for GetZilliqaBlockDetailsByBlockHash403Response.
GetZilliqaBlockDetailsByBlockHashE400 - struct for GetZilliqaBlockDetailsByBlockHashE400.
GetZilliqaBlockDetailsByBlockHashE401 - struct for GetZilliqaBlockDetailsByBlockHashE401.
GetZilliqaBlockDetailsByBlockHashE403 - struct for GetZilliqaBlockDetailsByBlockHashE403.
GetZilliqaBlockDetailsByBlockHashR struct for GetZilliqaBlockDetailsByBlockHashR.
GetZilliqaBlockDetailsByBlockHashRData struct for GetZilliqaBlockDetailsByBlockHashRData.
GetZilliqaBlockDetailsByBlockHashRI struct for GetZilliqaBlockDetailsByBlockHashRI.
GetZilliqaBlockDetailsByBlockHeight400Response struct for GetZilliqaBlockDetailsByBlockHeight400Response.
GetZilliqaBlockDetailsByBlockHeight401Response struct for GetZilliqaBlockDetailsByBlockHeight401Response.
GetZilliqaBlockDetailsByBlockHeight403Response struct for GetZilliqaBlockDetailsByBlockHeight403Response.
GetZilliqaBlockDetailsByBlockHeightE400 - struct for GetZilliqaBlockDetailsByBlockHeightE400.
GetZilliqaBlockDetailsByBlockHeightE401 - struct for GetZilliqaBlockDetailsByBlockHeightE401.
GetZilliqaBlockDetailsByBlockHeightE403 - struct for GetZilliqaBlockDetailsByBlockHeightE403.
GetZilliqaBlockDetailsByBlockHeightR struct for GetZilliqaBlockDetailsByBlockHeightR.
GetZilliqaBlockDetailsByBlockHeightRData struct for GetZilliqaBlockDetailsByBlockHeightRData.
GetZilliqaBlockDetailsByBlockHeightRI struct for GetZilliqaBlockDetailsByBlockHeightRI.
GetZilliqaTransactionDetailsByTransactionID400Response struct for GetZilliqaTransactionDetailsByTransactionID400Response.
GetZilliqaTransactionDetailsByTransactionID401Response struct for GetZilliqaTransactionDetailsByTransactionID401Response.
GetZilliqaTransactionDetailsByTransactionID403Response struct for GetZilliqaTransactionDetailsByTransactionID403Response.
GetZilliqaTransactionDetailsByTransactionIDE400 - struct for GetZilliqaTransactionDetailsByTransactionIDE400.
GetZilliqaTransactionDetailsByTransactionIDE401 - struct for GetZilliqaTransactionDetailsByTransactionIDE401.
GetZilliqaTransactionDetailsByTransactionIDE403 - struct for GetZilliqaTransactionDetailsByTransactionIDE403.
GetZilliqaTransactionDetailsByTransactionIDR struct for GetZilliqaTransactionDetailsByTransactionIDR.
GetZilliqaTransactionDetailsByTransactionIDRData struct for GetZilliqaTransactionDetailsByTransactionIDRData.
GetZilliqaTransactionDetailsByTransactionIDRI struct for GetZilliqaTransactionDetailsByTransactionIDRI.
GetZilliqaTransactionDetailsByTransactionIDRIFee Represents the transaction fee.
GetZilliqaTransactionDetailsByTransactionIDRIRecipientsInner struct for GetZilliqaTransactionDetailsByTransactionIDRIRecipientsInner.
GetZilliqaTransactionDetailsByTransactionIDRISendersInner struct for GetZilliqaTransactionDetailsByTransactionIDRISendersInner.
InsufficientCredits insufficient_credits.
InvalidApiKey invalid_api_key.
InvalidBlockchain invalid_blockchain.
InvalidData invalid_data.
InvalidNetwork invalid_network.
InvalidPagination invalid_pagination.
InvalidRequestBodyStructure invalid_request_body_structure.
InvalidTransactionHex invalid_transaction_hex.
InvalidXpub invalid_xpub.
LimitGreaterThanAllowed limit_greater_than_allowed.
ListAllAssetsByWalletID400Response struct for ListAllAssetsByWalletID400Response.
ListAllAssetsByWalletID401Response struct for ListAllAssetsByWalletID401Response.
ListAllAssetsByWalletID403Response struct for ListAllAssetsByWalletID403Response.
ListAllAssetsByWalletIDE400 - struct for ListAllAssetsByWalletIDE400.
ListAllAssetsByWalletIDE401 - struct for ListAllAssetsByWalletIDE401.
ListAllAssetsByWalletIDE403 - struct for ListAllAssetsByWalletIDE403.
ListAllAssetsByWalletIDR struct for ListAllAssetsByWalletIDR.
ListAllAssetsByWalletIDRData struct for ListAllAssetsByWalletIDRData.
ListAllAssetsByWalletIDRI struct for ListAllAssetsByWalletIDRI.
ListAllAssetsFromAllWallets400Response struct for ListAllAssetsFromAllWallets400Response.
ListAllAssetsFromAllWallets401Response struct for ListAllAssetsFromAllWallets401Response.
ListAllAssetsFromAllWallets403Response struct for ListAllAssetsFromAllWallets403Response.
ListAllAssetsFromAllWalletsE400 - struct for ListAllAssetsFromAllWalletsE400.
ListAllAssetsFromAllWalletsE401 - struct for ListAllAssetsFromAllWalletsE401.
ListAllAssetsFromAllWalletsE403 - struct for ListAllAssetsFromAllWalletsE403.
ListAllAssetsFromAllWalletsR struct for ListAllAssetsFromAllWalletsR.
ListAllAssetsFromAllWalletsRData struct for ListAllAssetsFromAllWalletsRData.
ListAllAssetsFromAllWalletsRI struct for ListAllAssetsFromAllWalletsRI.
ListAllAssetsFromAllWalletsRICoinsInner struct for ListAllAssetsFromAllWalletsRICoinsInner.
ListAllAssetsFromAllWalletsRIFungibleTokensInner struct for ListAllAssetsFromAllWalletsRIFungibleTokensInner.
ListAllAssetsFromAllWalletsRINonFungibleTokensInner struct for ListAllAssetsFromAllWalletsRINonFungibleTokensInner.
ListBlockchainEventsSubscriptions400Response struct for ListBlockchainEventsSubscriptions400Response.
ListBlockchainEventsSubscriptions401Response struct for ListBlockchainEventsSubscriptions401Response.
ListBlockchainEventsSubscriptions403Response struct for ListBlockchainEventsSubscriptions403Response.
ListBlockchainEventsSubscriptionsE400 - struct for ListBlockchainEventsSubscriptionsE400.
ListBlockchainEventsSubscriptionsE401 - struct for ListBlockchainEventsSubscriptionsE401.
ListBlockchainEventsSubscriptionsE403 - struct for ListBlockchainEventsSubscriptionsE403.
ListBlockchainEventsSubscriptionsR struct for ListBlockchainEventsSubscriptionsR.
ListBlockchainEventsSubscriptionsRData struct for ListBlockchainEventsSubscriptionsRData.
ListBlockchainEventsSubscriptionsRI struct for ListBlockchainEventsSubscriptionsRI.
ListBlockchainEventsSubscriptionsRIDeactivationReasonsInner struct for ListBlockchainEventsSubscriptionsRIDeactivationReasonsInner.
ListCoinsForwardingAutomations400Response struct for ListCoinsForwardingAutomations400Response.
ListCoinsForwardingAutomations401Response struct for ListCoinsForwardingAutomations401Response.
ListCoinsForwardingAutomations403Response struct for ListCoinsForwardingAutomations403Response.
ListCoinsForwardingAutomationsE400 - struct for ListCoinsForwardingAutomationsE400.
ListCoinsForwardingAutomationsE401 - struct for ListCoinsForwardingAutomationsE401.
ListCoinsForwardingAutomationsE403 - struct for ListCoinsForwardingAutomationsE403.
ListCoinsForwardingAutomationsR struct for ListCoinsForwardingAutomationsR.
ListCoinsForwardingAutomationsRData struct for ListCoinsForwardingAutomationsRData.
ListCoinsForwardingAutomationsRI struct for ListCoinsForwardingAutomationsRI.
ListConfirmedTokensTransfersByAddress400Response struct for ListConfirmedTokensTransfersByAddress400Response.
ListConfirmedTokensTransfersByAddress401Response struct for ListConfirmedTokensTransfersByAddress401Response.
ListConfirmedTokensTransfersByAddress403Response struct for ListConfirmedTokensTransfersByAddress403Response.
ListConfirmedTokensTransfersByAddressAndTimeRange400Response struct for ListConfirmedTokensTransfersByAddressAndTimeRange400Response.
ListConfirmedTokensTransfersByAddressAndTimeRange401Response struct for ListConfirmedTokensTransfersByAddressAndTimeRange401Response.
ListConfirmedTokensTransfersByAddressAndTimeRange403Response struct for ListConfirmedTokensTransfersByAddressAndTimeRange403Response.
ListConfirmedTokensTransfersByAddressAndTimeRangeE400 - struct for ListConfirmedTokensTransfersByAddressAndTimeRangeE400.
ListConfirmedTokensTransfersByAddressAndTimeRangeE401 - struct for ListConfirmedTokensTransfersByAddressAndTimeRangeE401.
ListConfirmedTokensTransfersByAddressAndTimeRangeE403 - struct for ListConfirmedTokensTransfersByAddressAndTimeRangeE403.
ListConfirmedTokensTransfersByAddressAndTimeRangeR struct for ListConfirmedTokensTransfersByAddressAndTimeRangeR.
ListConfirmedTokensTransfersByAddressAndTimeRangeRData struct for ListConfirmedTokensTransfersByAddressAndTimeRangeRData.
ListConfirmedTokensTransfersByAddressAndTimeRangeRI struct for ListConfirmedTokensTransfersByAddressAndTimeRangeRI.
ListConfirmedTokensTransfersByAddressE400 - struct for ListConfirmedTokensTransfersByAddressE400.
ListConfirmedTokensTransfersByAddressE401 - struct for ListConfirmedTokensTransfersByAddressE401.
ListConfirmedTokensTransfersByAddressE403 - struct for ListConfirmedTokensTransfersByAddressE403.
ListConfirmedTokensTransfersByAddressR struct for ListConfirmedTokensTransfersByAddressR.
ListConfirmedTokensTransfersByAddressRData struct for ListConfirmedTokensTransfersByAddressRData.
ListConfirmedTokensTransfersByAddressRI struct for ListConfirmedTokensTransfersByAddressRI.
ListConfirmedTransactionsByAddress400Response struct for ListConfirmedTransactionsByAddress400Response.
ListConfirmedTransactionsByAddress401Response struct for ListConfirmedTransactionsByAddress401Response.
ListConfirmedTransactionsByAddress403Response struct for ListConfirmedTransactionsByAddress403Response.
ListConfirmedTransactionsByAddressAndTimeRange400Response struct for ListConfirmedTransactionsByAddressAndTimeRange400Response.
ListConfirmedTransactionsByAddressAndTimeRange401Response struct for ListConfirmedTransactionsByAddressAndTimeRange401Response.
ListConfirmedTransactionsByAddressAndTimeRange403Response struct for ListConfirmedTransactionsByAddressAndTimeRange403Response.
ListConfirmedTransactionsByAddressAndTimeRangeE400 - struct for ListConfirmedTransactionsByAddressAndTimeRangeE400.
ListConfirmedTransactionsByAddressAndTimeRangeE401 - struct for ListConfirmedTransactionsByAddressAndTimeRangeE401.
ListConfirmedTransactionsByAddressAndTimeRangeE403 - struct for ListConfirmedTransactionsByAddressAndTimeRangeE403.
ListConfirmedTransactionsByAddressAndTimeRangeR struct for ListConfirmedTransactionsByAddressAndTimeRangeR.
ListConfirmedTransactionsByAddressAndTimeRangeRData struct for ListConfirmedTransactionsByAddressAndTimeRangeRData.
ListConfirmedTransactionsByAddressAndTimeRangeRI struct for ListConfirmedTransactionsByAddressAndTimeRangeRI.
ListConfirmedTransactionsByAddressAndTimeRangeRIBS - struct for ListConfirmedTransactionsByAddressAndTimeRangeRIBS.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSB Bitcoin.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSBC Bitcoin Cash.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSBSC Binance Smart Chain.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSD Dogecoin.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSD2 Dash.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSE Ethereum.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSEC Ethereum Classic.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSL Litecoin.
ListConfirmedTransactionsByAddressAndTimeRangeRIBSZ Zcash.
ListConfirmedTransactionsByAddressE400 - struct for ListConfirmedTransactionsByAddressE400.
ListConfirmedTransactionsByAddressE401 - struct for ListConfirmedTransactionsByAddressE401.
ListConfirmedTransactionsByAddressE403 - struct for ListConfirmedTransactionsByAddressE403.
ListConfirmedTransactionsByAddressR struct for ListConfirmedTransactionsByAddressR.
ListConfirmedTransactionsByAddressRData struct for ListConfirmedTransactionsByAddressRData.
ListConfirmedTransactionsByAddressRI struct for ListConfirmedTransactionsByAddressRI.
ListConfirmedTransactionsByAddressRIBS - struct for ListConfirmedTransactionsByAddressRIBS.
ListConfirmedTransactionsByAddressRIBSB Bitcoin.
ListConfirmedTransactionsByAddressRIBSBC Bitcoin Cash.
ListConfirmedTransactionsByAddressRIBSBCVinInner struct for ListConfirmedTransactionsByAddressRIBSBCVinInner.
ListConfirmedTransactionsByAddressRIBSBSC Binance Smart Chain.
ListConfirmedTransactionsByAddressRIBSBSCGasPrice struct for ListConfirmedTransactionsByAddressRIBSBSCGasPrice.
ListConfirmedTransactionsByAddressRIBSBVinInner struct for ListConfirmedTransactionsByAddressRIBSBVinInner.
ListConfirmedTransactionsByAddressRIBSBVoutInner struct for ListConfirmedTransactionsByAddressRIBSBVoutInner.
ListConfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKey Represents the script public key.
ListConfirmedTransactionsByAddressRIBSD Dogecoin.
ListConfirmedTransactionsByAddressRIBSD2 Dash.
ListConfirmedTransactionsByAddressRIBSD2VinInner struct for ListConfirmedTransactionsByAddressRIBSD2VinInner.
ListConfirmedTransactionsByAddressRIBSD2VinInnerScriptSig Specifies the required signatures.
ListConfirmedTransactionsByAddressRIBSD2VoutInner struct for ListConfirmedTransactionsByAddressRIBSD2VoutInner.
ListConfirmedTransactionsByAddressRIBSD2VoutInnerScriptPubKey Represents the script public key.
ListConfirmedTransactionsByAddressRIBSDVinInner struct for ListConfirmedTransactionsByAddressRIBSDVinInner.
ListConfirmedTransactionsByAddressRIBSDVinInnerScriptSig Specifies the required signatures.
ListConfirmedTransactionsByAddressRIBSE Ethereum.
ListConfirmedTransactionsByAddressRIBSEC Ethereum Classic.
ListConfirmedTransactionsByAddressRIBSECGasPrice struct for ListConfirmedTransactionsByAddressRIBSECGasPrice.
ListConfirmedTransactionsByAddressRIBSEGasPrice struct for ListConfirmedTransactionsByAddressRIBSEGasPrice.
ListConfirmedTransactionsByAddressRIBSL Litecoin.
ListConfirmedTransactionsByAddressRIBSLVinInner struct for ListConfirmedTransactionsByAddressRIBSLVinInner.
ListConfirmedTransactionsByAddressRIBSLVinInnerScriptSig Specifies the required signatures.
ListConfirmedTransactionsByAddressRIBSZ Zcash.
ListConfirmedTransactionsByAddressRIBSZVinInner struct for ListConfirmedTransactionsByAddressRIBSZVinInner.
ListConfirmedTransactionsByAddressRIBSZVJoinSplitInner struct for ListConfirmedTransactionsByAddressRIBSZVJoinSplitInner.
ListConfirmedTransactionsByAddressRIFee struct for ListConfirmedTransactionsByAddressRIFee.
ListDepositAddresses400Response struct for ListDepositAddresses400Response.
ListDepositAddresses401Response struct for ListDepositAddresses401Response.
ListDepositAddresses403Response struct for ListDepositAddresses403Response.
ListDepositAddressesE400 - struct for ListDepositAddressesE400.
ListDepositAddressesE401 - struct for ListDepositAddressesE401.
ListDepositAddressesE403 - struct for ListDepositAddressesE403.
ListDepositAddressesR struct for ListDepositAddressesR.
ListDepositAddressesRData struct for ListDepositAddressesRData.
ListDepositAddressesRI struct for ListDepositAddressesRI.
ListDepositAddressesRIConfirmedBalance struct for ListDepositAddressesRIConfirmedBalance.
ListDepositAddressesRIFungibleTokensInner struct for ListDepositAddressesRIFungibleTokensInner.
ListDepositAddressesRINonFungibleTokensInner struct for ListDepositAddressesRINonFungibleTokensInner.
ListHDWalletXPubYPubZPubTransactions400Response struct for ListHDWalletXPubYPubZPubTransactions400Response.
ListHDWalletXPubYPubZPubTransactions401Response struct for ListHDWalletXPubYPubZPubTransactions401Response.
ListHDWalletXPubYPubZPubTransactions403Response struct for ListHDWalletXPubYPubZPubTransactions403Response.
ListHDWalletXPubYPubZPubTransactions422Response struct for ListHDWalletXPubYPubZPubTransactions422Response.
ListHDWalletXPubYPubZPubTransactionsE400 - struct for ListHDWalletXPubYPubZPubTransactionsE400.
ListHDWalletXPubYPubZPubTransactionsE401 - struct for ListHDWalletXPubYPubZPubTransactionsE401.
ListHDWalletXPubYPubZPubTransactionsE403 - struct for ListHDWalletXPubYPubZPubTransactionsE403.
ListHDWalletXPubYPubZPubTransactionsE422 - struct for ListHDWalletXPubYPubZPubTransactionsE422.
ListHDWalletXPubYPubZPubTransactionsR struct for ListHDWalletXPubYPubZPubTransactionsR.
ListHDWalletXPubYPubZPubTransactionsRData struct for ListHDWalletXPubYPubZPubTransactionsRData.
ListHDWalletXPubYPubZPubTransactionsRI struct for ListHDWalletXPubYPubZPubTransactionsRI.
ListHDWalletXPubYPubZPubTransactionsRIFee struct for ListHDWalletXPubYPubZPubTransactionsRIFee.
ListHDWalletXPubYPubZPubTransactionsRIRecipientsInner struct for ListHDWalletXPubYPubZPubTransactionsRIRecipientsInner.
ListHDWalletXPubYPubZPubTransactionsRISendersInner struct for ListHDWalletXPubYPubZPubTransactionsRISendersInner.
ListHDWalletXPubYPubZPubUTXOs400Response struct for ListHDWalletXPubYPubZPubUTXOs400Response.
ListHDWalletXPubYPubZPubUTXOs401Response struct for ListHDWalletXPubYPubZPubUTXOs401Response.
ListHDWalletXPubYPubZPubUTXOs403Response struct for ListHDWalletXPubYPubZPubUTXOs403Response.
ListHDWalletXPubYPubZPubUTXOs422Response struct for ListHDWalletXPubYPubZPubUTXOs422Response.
ListHDWalletXPubYPubZPubUTXOsE400 - struct for ListHDWalletXPubYPubZPubUTXOsE400.
ListHDWalletXPubYPubZPubUTXOsE401 - struct for ListHDWalletXPubYPubZPubUTXOsE401.
ListHDWalletXPubYPubZPubUTXOsE403 - struct for ListHDWalletXPubYPubZPubUTXOsE403.
ListHDWalletXPubYPubZPubUTXOsE422 - struct for ListHDWalletXPubYPubZPubUTXOsE422.
ListHDWalletXPubYPubZPubUTXOsR struct for ListHDWalletXPubYPubZPubUTXOsR.
ListHDWalletXPubYPubZPubUTXOsRData struct for ListHDWalletXPubYPubZPubUTXOsRData.
ListHDWalletXPubYPubZPubUTXOsRI struct for ListHDWalletXPubYPubZPubUTXOsRI.
ListInternalTransactionDetailsByTransactionHash400Response struct for ListInternalTransactionDetailsByTransactionHash400Response.
ListInternalTransactionDetailsByTransactionHash401Response struct for ListInternalTransactionDetailsByTransactionHash401Response.
ListInternalTransactionDetailsByTransactionHash403Response struct for ListInternalTransactionDetailsByTransactionHash403Response.
ListInternalTransactionDetailsByTransactionHashE400 - struct for ListInternalTransactionDetailsByTransactionHashE400.
ListInternalTransactionDetailsByTransactionHashE401 - struct for ListInternalTransactionDetailsByTransactionHashE401.
ListInternalTransactionDetailsByTransactionHashE403 - struct for ListInternalTransactionDetailsByTransactionHashE403.
ListInternalTransactionDetailsByTransactionHashR struct for ListInternalTransactionDetailsByTransactionHashR.
ListInternalTransactionDetailsByTransactionHashRData struct for ListInternalTransactionDetailsByTransactionHashRData.
ListInternalTransactionDetailsByTransactionHashRI struct for ListInternalTransactionDetailsByTransactionHashRI.
ListInternalTransactionsByAddress400Response struct for ListInternalTransactionsByAddress400Response.
ListInternalTransactionsByAddress401Response struct for ListInternalTransactionsByAddress401Response.
ListInternalTransactionsByAddress403Response struct for ListInternalTransactionsByAddress403Response.
ListInternalTransactionsByAddressAndTimeRange400Response struct for ListInternalTransactionsByAddressAndTimeRange400Response.
ListInternalTransactionsByAddressAndTimeRange401Response struct for ListInternalTransactionsByAddressAndTimeRange401Response.
ListInternalTransactionsByAddressAndTimeRange403Response struct for ListInternalTransactionsByAddressAndTimeRange403Response.
ListInternalTransactionsByAddressAndTimeRangeE400 - struct for ListInternalTransactionsByAddressAndTimeRangeE400.
ListInternalTransactionsByAddressAndTimeRangeE401 - struct for ListInternalTransactionsByAddressAndTimeRangeE401.
ListInternalTransactionsByAddressAndTimeRangeE403 - struct for ListInternalTransactionsByAddressAndTimeRangeE403.
ListInternalTransactionsByAddressAndTimeRangeR struct for ListInternalTransactionsByAddressAndTimeRangeR.
ListInternalTransactionsByAddressAndTimeRangeRData struct for ListInternalTransactionsByAddressAndTimeRangeRData.
ListInternalTransactionsByAddressAndTimeRangeRI struct for ListInternalTransactionsByAddressAndTimeRangeRI.
ListInternalTransactionsByAddressE400 - struct for ListInternalTransactionsByAddressE400.
ListInternalTransactionsByAddressE401 - struct for ListInternalTransactionsByAddressE401.
ListInternalTransactionsByAddressE403 - struct for ListInternalTransactionsByAddressE403.
ListInternalTransactionsByAddressR struct for ListInternalTransactionsByAddressR.
ListInternalTransactionsByAddressRData struct for ListInternalTransactionsByAddressRData.
ListInternalTransactionsByAddressRI struct for ListInternalTransactionsByAddressRI.
ListLatestMinedBlocks400Response struct for ListLatestMinedBlocks400Response.
ListLatestMinedBlocks401Response struct for ListLatestMinedBlocks401Response.
ListLatestMinedBlocks403Response struct for ListLatestMinedBlocks403Response.
ListLatestMinedBlocksE400 - struct for ListLatestMinedBlocksE400.
ListLatestMinedBlocksE401 - struct for ListLatestMinedBlocksE401.
ListLatestMinedBlocksE403 - struct for ListLatestMinedBlocksE403.
ListLatestMinedBlocksR struct for ListLatestMinedBlocksR.
ListLatestMinedBlocksRData struct for ListLatestMinedBlocksRData.
ListLatestMinedBlocksRI struct for ListLatestMinedBlocksRI.
ListLatestMinedBlocksRIBS - struct for ListLatestMinedBlocksRIBS.
ListLatestMinedBlocksRIBSB Bitcoin.
ListLatestMinedBlocksRIBSBC Bitcoin Cash.
ListLatestMinedBlocksRIBSBSC Binance Smart Chain.
ListLatestMinedBlocksRIBSD Dash.
ListLatestMinedBlocksRIBSD2 Dogecoin.
ListLatestMinedBlocksRIBSEC Ethereum Classic.
ListLatestMinedBlocksRIBSL Litecoin.
ListLatestMinedBlocksRIBSX XRP.
ListLatestMinedBlocksRIBSXTotalCoins struct for ListLatestMinedBlocksRIBSXTotalCoins.
ListLatestMinedBlocksRIBSXTotalFees struct for ListLatestMinedBlocksRIBSXTotalFees.
ListLatestMinedBlocksRIBSZ Zilliqa.
ListLatestMinedBlocksRIBSZ2 Zcash.
ListSupportedAssets400Response struct for ListSupportedAssets400Response.
ListSupportedAssets401Response struct for ListSupportedAssets401Response.
ListSupportedAssets403Response struct for ListSupportedAssets403Response.
ListSupportedAssetsE400 - struct for ListSupportedAssetsE400.
ListSupportedAssetsE401 - struct for ListSupportedAssetsE401.
ListSupportedAssetsE403 - struct for ListSupportedAssetsE403.
ListSupportedAssetsR struct for ListSupportedAssetsR.
ListSupportedAssetsRData struct for ListSupportedAssetsRData.
ListSupportedAssetsRI struct for ListSupportedAssetsRI.
ListSupportedTokens400Response struct for ListSupportedTokens400Response.
ListSupportedTokens401Response struct for ListSupportedTokens401Response.
ListSupportedTokens403Response struct for ListSupportedTokens403Response.
ListSupportedTokensE400 - struct for ListSupportedTokensE400.
ListSupportedTokensE401 - struct for ListSupportedTokensE401.
ListSupportedTokensE403 - struct for ListSupportedTokensE403.
ListSupportedTokensR struct for ListSupportedTokensR.
ListSupportedTokensRData struct for ListSupportedTokensRData.
ListSupportedTokensRI struct for ListSupportedTokensRI.
ListSyncedAddresses400Response struct for ListSyncedAddresses400Response.
ListSyncedAddresses401Response struct for ListSyncedAddresses401Response.
ListSyncedAddresses403Response struct for ListSyncedAddresses403Response.
ListSyncedAddressesE400 - struct for ListSyncedAddressesE400.
ListSyncedAddressesE401 - struct for ListSyncedAddressesE401.
ListSyncedAddressesE403 - struct for ListSyncedAddressesE403.
ListSyncedAddressesR struct for ListSyncedAddressesR.
ListSyncedAddressesRData struct for ListSyncedAddressesRData.
ListSyncedAddressesRI struct for ListSyncedAddressesRI.
ListTokensByAddress400Response struct for ListTokensByAddress400Response.
ListTokensByAddress401Response struct for ListTokensByAddress401Response.
ListTokensByAddress403Response struct for ListTokensByAddress403Response.
ListTokensByAddressE400 - struct for ListTokensByAddressE400.
ListTokensByAddressE401 - struct for ListTokensByAddressE401.
ListTokensByAddressE403 - struct for ListTokensByAddressE403.
ListTokensByAddressR struct for ListTokensByAddressR.
ListTokensByAddressRData struct for ListTokensByAddressRData.
ListTokensByAddressRI struct for ListTokensByAddressRI.
ListTokensForwardingAutomations400Response struct for ListTokensForwardingAutomations400Response.
ListTokensForwardingAutomations401Response struct for ListTokensForwardingAutomations401Response.
ListTokensForwardingAutomations403Response struct for ListTokensForwardingAutomations403Response.
ListTokensForwardingAutomationsE400 - struct for ListTokensForwardingAutomationsE400.
ListTokensForwardingAutomationsE401 - struct for ListTokensForwardingAutomationsE401.
ListTokensForwardingAutomationsE403 - struct for ListTokensForwardingAutomationsE403.
ListTokensForwardingAutomationsR struct for ListTokensForwardingAutomationsR.
ListTokensForwardingAutomationsRData struct for ListTokensForwardingAutomationsRData.
ListTokensForwardingAutomationsRI struct for ListTokensForwardingAutomationsRI.
ListTokensForwardingAutomationsRITS - struct for ListTokensForwardingAutomationsRITS.
ListTokensForwardingAutomationsRITSBOT Bitcoin Omni Token.
ListTokensForwardingAutomationsRITSET Ethereum Token.
ListTokensTransfersByTransactionHash400Response struct for ListTokensTransfersByTransactionHash400Response.
ListTokensTransfersByTransactionHash401Response struct for ListTokensTransfersByTransactionHash401Response.
ListTokensTransfersByTransactionHash403Response struct for ListTokensTransfersByTransactionHash403Response.
ListTokensTransfersByTransactionHashE400 - struct for ListTokensTransfersByTransactionHashE400.
ListTokensTransfersByTransactionHashE401 - struct for ListTokensTransfersByTransactionHashE401.
ListTokensTransfersByTransactionHashE403 - struct for ListTokensTransfersByTransactionHashE403.
ListTokensTransfersByTransactionHashR struct for ListTokensTransfersByTransactionHashR.
ListTokensTransfersByTransactionHashRData struct for ListTokensTransfersByTransactionHashRData.
ListTokensTransfersByTransactionHashRI struct for ListTokensTransfersByTransactionHashRI.
ListTokensTransfersByTransactionHashRITransactionFee struct for ListTokensTransfersByTransactionHashRITransactionFee.
ListTransactionsByBlockHash400Response struct for ListTransactionsByBlockHash400Response.
ListTransactionsByBlockHash401Response struct for ListTransactionsByBlockHash401Response.
ListTransactionsByBlockHash403Response struct for ListTransactionsByBlockHash403Response.
ListTransactionsByBlockHashE400 - struct for ListTransactionsByBlockHashE400.
ListTransactionsByBlockHashE401 - struct for ListTransactionsByBlockHashE401.
ListTransactionsByBlockHashE403 - struct for ListTransactionsByBlockHashE403.
ListTransactionsByBlockHashR struct for ListTransactionsByBlockHashR.
ListTransactionsByBlockHashRData struct for ListTransactionsByBlockHashRData.
ListTransactionsByBlockHashRI struct for ListTransactionsByBlockHashRI.
ListTransactionsByBlockHashRIBS - struct for ListTransactionsByBlockHashRIBS.
ListTransactionsByBlockHashRIBSB Bitcoin.
ListTransactionsByBlockHashRIBSBC Bitcoin Cash.
ListTransactionsByBlockHashRIBSBCVinInner struct for ListTransactionsByBlockHashRIBSBCVinInner.
ListTransactionsByBlockHashRIBSBCVoutInner struct for ListTransactionsByBlockHashRIBSBCVoutInner.
ListTransactionsByBlockHashRIBSBCVoutInnerScriptPubKey Represents the script public key.
ListTransactionsByBlockHashRIBSBSC Binance Smart Chain.
ListTransactionsByBlockHashRIBSBSCGasPrice struct for ListTransactionsByBlockHashRIBSBSCGasPrice.
ListTransactionsByBlockHashRIBSBVinInner struct for ListTransactionsByBlockHashRIBSBVinInner.
ListTransactionsByBlockHashRIBSBVoutInner struct for ListTransactionsByBlockHashRIBSBVoutInner.
ListTransactionsByBlockHashRIBSBVoutInnerScriptPubKey Represents the script public key.
ListTransactionsByBlockHashRIBSD Dogecoin.
ListTransactionsByBlockHashRIBSD2 Dash.
ListTransactionsByBlockHashRIBSD2VinInner struct for ListTransactionsByBlockHashRIBSD2VinInner.
ListTransactionsByBlockHashRIBSD2VinInnerScriptSig Specifies the required signatures.
ListTransactionsByBlockHashRIBSD2VoutInner struct for ListTransactionsByBlockHashRIBSD2VoutInner.
ListTransactionsByBlockHashRIBSD2VoutInnerScriptPubKey Represents the script public key.
ListTransactionsByBlockHashRIBSDVinInner struct for ListTransactionsByBlockHashRIBSDVinInner.
ListTransactionsByBlockHashRIBSDVoutInner struct for ListTransactionsByBlockHashRIBSDVoutInner.
ListTransactionsByBlockHashRIBSDVoutInnerScriptPubKey Represents the script public key.
ListTransactionsByBlockHashRIBSE Ethereum.
ListTransactionsByBlockHashRIBSEC Ethereum Classic.
ListTransactionsByBlockHashRIBSEGasPrice struct for ListTransactionsByBlockHashRIBSEGasPrice.
ListTransactionsByBlockHashRIBSL Litecoin.
ListTransactionsByBlockHashRIBSLVinInner struct for ListTransactionsByBlockHashRIBSLVinInner.
ListTransactionsByBlockHashRIBSLVinInnerScriptSig Specifies the required signatures.
ListTransactionsByBlockHashRIBSLVoutInner struct for ListTransactionsByBlockHashRIBSLVoutInner.
ListTransactionsByBlockHashRIBSLVoutInnerScriptPubKey Object representation of the script.
ListTransactionsByBlockHashRIBSZ Zcash.
ListTransactionsByBlockHashRIBSZVinInner struct for ListTransactionsByBlockHashRIBSZVinInner.
ListTransactionsByBlockHashRIBSZVinInnerScriptSig Specifies the required signatures.
ListTransactionsByBlockHashRIBSZVJoinSplitInner struct for ListTransactionsByBlockHashRIBSZVJoinSplitInner.
ListTransactionsByBlockHashRIFee struct for ListTransactionsByBlockHashRIFee.
ListTransactionsByBlockHashRIRecipientsInner struct for ListTransactionsByBlockHashRIRecipientsInner.
ListTransactionsByBlockHashRISendersInner struct for ListTransactionsByBlockHashRISendersInner.
ListTransactionsByBlockHeight400Response struct for ListTransactionsByBlockHeight400Response.
ListTransactionsByBlockHeight401Response struct for ListTransactionsByBlockHeight401Response.
ListTransactionsByBlockHeight403Response struct for ListTransactionsByBlockHeight403Response.
ListTransactionsByBlockHeight404Response struct for ListTransactionsByBlockHeight404Response.
ListTransactionsByBlockHeightE400 - struct for ListTransactionsByBlockHeightE400.
ListTransactionsByBlockHeightE401 - struct for ListTransactionsByBlockHeightE401.
ListTransactionsByBlockHeightE403 - struct for ListTransactionsByBlockHeightE403.
ListTransactionsByBlockHeightR struct for ListTransactionsByBlockHeightR.
ListTransactionsByBlockHeightRData struct for ListTransactionsByBlockHeightRData.
ListTransactionsByBlockHeightRI struct for ListTransactionsByBlockHeightRI.
ListTransactionsByBlockHeightRIBS - struct for ListTransactionsByBlockHeightRIBS.
ListTransactionsByBlockHeightRIBSB Bitcoin.
ListTransactionsByBlockHeightRIBSBC Bitcoin Cash.
ListTransactionsByBlockHeightRIBSBSC Binance Smart Chain.
ListTransactionsByBlockHeightRIBSBSCGasPrice struct for ListTransactionsByBlockHeightRIBSBSCGasPrice.
ListTransactionsByBlockHeightRIBSBVoutInner struct for ListTransactionsByBlockHeightRIBSBVoutInner.
ListTransactionsByBlockHeightRIBSBVoutInnerScriptPubKey Represents the script public key.
ListTransactionsByBlockHeightRIBSD Dash.
ListTransactionsByBlockHeightRIBSD2 Dogecoin.
ListTransactionsByBlockHeightRIBSD2VinInner struct for ListTransactionsByBlockHeightRIBSD2VinInner.
ListTransactionsByBlockHeightRIBSDVinInner struct for ListTransactionsByBlockHeightRIBSDVinInner.
ListTransactionsByBlockHeightRIBSDVinInnerScriptSig Specifies the required signatures.
ListTransactionsByBlockHeightRIBSDVoutInner struct for ListTransactionsByBlockHeightRIBSDVoutInner.
ListTransactionsByBlockHeightRIBSDVoutInnerScriptPubKey Represents the script public key.
ListTransactionsByBlockHeightRIBSE Ethereum.
ListTransactionsByBlockHeightRIBSEC Ethereum Classic.
ListTransactionsByBlockHeightRIBSECGasPrice struct for ListTransactionsByBlockHeightRIBSECGasPrice.
ListTransactionsByBlockHeightRIBSL Litecoin.
ListTransactionsByBlockHeightRIBSLVinInner struct for ListTransactionsByBlockHeightRIBSLVinInner.
ListTransactionsByBlockHeightRIBSLVinInnerScriptSig Specifies the required signatures.
ListTransactionsByBlockHeightRIBSLVoutInner struct for ListTransactionsByBlockHeightRIBSLVoutInner.
ListTransactionsByBlockHeightRIBSLVoutInnerScriptPubKey Represents the script public key.
ListTransactionsByBlockHeightRIBSZ Zcash.
ListTransactionsByBlockHeightRIBSZVinInner struct for ListTransactionsByBlockHeightRIBSZVinInner.
ListTransactionsByBlockHeightRIBSZVinInnerScriptSig Object representation of the script.
ListTransactionsByBlockHeightRIBSZVJoinSplitInner struct for ListTransactionsByBlockHeightRIBSZVJoinSplitInner.
ListTransactionsByBlockHeightRIBSZVoutInner struct for ListTransactionsByBlockHeightRIBSZVoutInner.
ListTransactionsByBlockHeightRIBSZVoutInnerScriptPubKey Object representation of the script.
ListTransactionsByBlockHeightRIBSZVShieldedOutputInner struct for ListTransactionsByBlockHeightRIBSZVShieldedOutputInner.
ListTransactionsByBlockHeightRIFee struct for ListTransactionsByBlockHeightRIFee.
ListUnconfirmedTokensTransfersByAddress400Response struct for ListUnconfirmedTokensTransfersByAddress400Response.
ListUnconfirmedTokensTransfersByAddress401Response struct for ListUnconfirmedTokensTransfersByAddress401Response.
ListUnconfirmedTokensTransfersByAddress403Response struct for ListUnconfirmedTokensTransfersByAddress403Response.
ListUnconfirmedTokensTransfersByAddressE400 - struct for ListUnconfirmedTokensTransfersByAddressE400.
ListUnconfirmedTokensTransfersByAddressE401 - struct for ListUnconfirmedTokensTransfersByAddressE401.
ListUnconfirmedTokensTransfersByAddressE403 - struct for ListUnconfirmedTokensTransfersByAddressE403.
ListUnconfirmedTokensTransfersByAddressR struct for ListUnconfirmedTokensTransfersByAddressR.
ListUnconfirmedTokensTransfersByAddressRData struct for ListUnconfirmedTokensTransfersByAddressRData.
ListUnconfirmedTokensTransfersByAddressRI struct for ListUnconfirmedTokensTransfersByAddressRI.
ListUnconfirmedTransactionsByAddress400Response struct for ListUnconfirmedTransactionsByAddress400Response.
ListUnconfirmedTransactionsByAddress401Response struct for ListUnconfirmedTransactionsByAddress401Response.
ListUnconfirmedTransactionsByAddress403Response struct for ListUnconfirmedTransactionsByAddress403Response.
ListUnconfirmedTransactionsByAddressE400 - struct for ListUnconfirmedTransactionsByAddressE400.
ListUnconfirmedTransactionsByAddressE401 - struct for ListUnconfirmedTransactionsByAddressE401.
ListUnconfirmedTransactionsByAddressE403 - struct for ListUnconfirmedTransactionsByAddressE403.
ListUnconfirmedTransactionsByAddressR struct for ListUnconfirmedTransactionsByAddressR.
ListUnconfirmedTransactionsByAddressRData struct for ListUnconfirmedTransactionsByAddressRData.
ListUnconfirmedTransactionsByAddressRI struct for ListUnconfirmedTransactionsByAddressRI.
ListUnconfirmedTransactionsByAddressRIBS - struct for ListUnconfirmedTransactionsByAddressRIBS.
ListUnconfirmedTransactionsByAddressRIBSB Bitcoin.
ListUnconfirmedTransactionsByAddressRIBSBC Bitcoin Cash.
ListUnconfirmedTransactionsByAddressRIBSBCVinInner struct for ListUnconfirmedTransactionsByAddressRIBSBCVinInner.
ListUnconfirmedTransactionsByAddressRIBSBCVoutInner struct for ListUnconfirmedTransactionsByAddressRIBSBCVoutInner.
ListUnconfirmedTransactionsByAddressRIBSBCVoutInnerScriptPubKey Represents the script public key.
ListUnconfirmedTransactionsByAddressRIBSBSC Binance Smart Chain.
ListUnconfirmedTransactionsByAddressRIBSBVinInner struct for ListUnconfirmedTransactionsByAddressRIBSBVinInner.
ListUnconfirmedTransactionsByAddressRIBSBVinInnerScriptSig Specifies the required signatures.
ListUnconfirmedTransactionsByAddressRIBSBVoutInner struct for ListUnconfirmedTransactionsByAddressRIBSBVoutInner.
ListUnconfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKey Object representation of the script.
ListUnconfirmedTransactionsByAddressRIBSD Dogecoin.
ListUnconfirmedTransactionsByAddressRIBSD2 Dash.
ListUnconfirmedTransactionsByAddressRIBSD2VinInner struct for ListUnconfirmedTransactionsByAddressRIBSD2VinInner.
ListUnconfirmedTransactionsByAddressRIBSD2VoutInner struct for ListUnconfirmedTransactionsByAddressRIBSD2VoutInner.
ListUnconfirmedTransactionsByAddressRIBSDVinInner struct for ListUnconfirmedTransactionsByAddressRIBSDVinInner.
ListUnconfirmedTransactionsByAddressRIBSE Ethereum.
ListUnconfirmedTransactionsByAddressRIBSEC Ethereum Classic.
ListUnconfirmedTransactionsByAddressRIBSECFee Object representation of the transaction fee.
ListUnconfirmedTransactionsByAddressRIBSECGasPrice struct for ListUnconfirmedTransactionsByAddressRIBSECGasPrice.
ListUnconfirmedTransactionsByAddressRIBSEFee Object representation of the transaction fee.
ListUnconfirmedTransactionsByAddressRIBSL Litecoin.
ListUnconfirmedTransactionsByAddressRIBSLVinInner struct for ListUnconfirmedTransactionsByAddressRIBSLVinInner.
ListUnconfirmedTransactionsByAddressRIBSLVinInnerScriptSig Specifies the required signatures.
ListUnconfirmedTransactionsByAddressRIBSLVoutInner struct for ListUnconfirmedTransactionsByAddressRIBSLVoutInner.
ListUnconfirmedTransactionsByAddressRIBSZ Zcash.
ListUnconfirmedTransactionsByAddressRIRecipientsInner struct for ListUnconfirmedTransactionsByAddressRIRecipientsInner.
ListUnconfirmedTransactionsByAddressRISendersInner struct for ListUnconfirmedTransactionsByAddressRISendersInner.
ListUnspentTransactionOutputsByAddress400Response struct for ListUnspentTransactionOutputsByAddress400Response.
ListUnspentTransactionOutputsByAddress401Response struct for ListUnspentTransactionOutputsByAddress401Response.
ListUnspentTransactionOutputsByAddress403Response struct for ListUnspentTransactionOutputsByAddress403Response.
ListUnspentTransactionOutputsByAddressE400 - struct for ListUnspentTransactionOutputsByAddressE400.
ListUnspentTransactionOutputsByAddressE401 - struct for ListUnspentTransactionOutputsByAddressE401.
ListUnspentTransactionOutputsByAddressE403 - struct for ListUnspentTransactionOutputsByAddressE403.
ListUnspentTransactionOutputsByAddressR struct for ListUnspentTransactionOutputsByAddressR.
ListUnspentTransactionOutputsByAddressRData struct for ListUnspentTransactionOutputsByAddressRData.
ListUnspentTransactionOutputsByAddressRI struct for ListUnspentTransactionOutputsByAddressRI.
ListWalletTransactions400Response struct for ListWalletTransactions400Response.
ListWalletTransactions401Response struct for ListWalletTransactions401Response.
ListWalletTransactions403Response struct for ListWalletTransactions403Response.
ListWalletTransactionsE400 - struct for ListWalletTransactionsE400.
ListWalletTransactionsE401 - struct for ListWalletTransactionsE401.
ListWalletTransactionsE403 - struct for ListWalletTransactionsE403.
ListWalletTransactionsR struct for ListWalletTransactionsR.
ListWalletTransactionsRData struct for ListWalletTransactionsRData.
ListWalletTransactionsRI struct for ListWalletTransactionsRI.
ListWalletTransactionsRIFee struct for ListWalletTransactionsRIFee.
ListWalletTransactionsRIFungibleTokensInner struct for ListWalletTransactionsRIFungibleTokensInner.
ListWalletTransactionsRIInternalTransactionsInner struct for ListWalletTransactionsRIInternalTransactionsInner.
ListWalletTransactionsRINonFungibleTokensInner struct for ListWalletTransactionsRINonFungibleTokensInner.
ListWalletTransactionsRIRecipientsInner struct for ListWalletTransactionsRIRecipientsInner.
ListWalletTransactionsRISendersInner struct for ListWalletTransactionsRISendersInner.
ListWalletTransactionsRIValue struct for ListWalletTransactionsRIValue.
ListXRPRippleTransactionsByAddress400Response struct for ListXRPRippleTransactionsByAddress400Response.
ListXRPRippleTransactionsByAddress401Response struct for ListXRPRippleTransactionsByAddress401Response.
ListXRPRippleTransactionsByAddress403Response struct for ListXRPRippleTransactionsByAddress403Response.
ListXRPRippleTransactionsByAddressAndTimeRange400Response struct for ListXRPRippleTransactionsByAddressAndTimeRange400Response.
ListXRPRippleTransactionsByAddressAndTimeRange401Response struct for ListXRPRippleTransactionsByAddressAndTimeRange401Response.
ListXRPRippleTransactionsByAddressAndTimeRange403Response struct for ListXRPRippleTransactionsByAddressAndTimeRange403Response.
ListXRPRippleTransactionsByAddressAndTimeRangeE400 - struct for ListXRPRippleTransactionsByAddressAndTimeRangeE400.
ListXRPRippleTransactionsByAddressAndTimeRangeE401 - struct for ListXRPRippleTransactionsByAddressAndTimeRangeE401.
ListXRPRippleTransactionsByAddressAndTimeRangeE403 - struct for ListXRPRippleTransactionsByAddressAndTimeRangeE403.
ListXRPRippleTransactionsByAddressAndTimeRangeR struct for ListXRPRippleTransactionsByAddressAndTimeRangeR.
ListXRPRippleTransactionsByAddressAndTimeRangeRData struct for ListXRPRippleTransactionsByAddressAndTimeRangeRData.
ListXRPRippleTransactionsByAddressAndTimeRangeRI struct for ListXRPRippleTransactionsByAddressAndTimeRangeRI.
ListXRPRippleTransactionsByAddressE400 - struct for ListXRPRippleTransactionsByAddressE400.
ListXRPRippleTransactionsByAddressE401 - struct for ListXRPRippleTransactionsByAddressE401.
ListXRPRippleTransactionsByAddressE403 - struct for ListXRPRippleTransactionsByAddressE403.
ListXRPRippleTransactionsByAddressR struct for ListXRPRippleTransactionsByAddressR.
ListXRPRippleTransactionsByAddressRData struct for ListXRPRippleTransactionsByAddressRData.
ListXRPRippleTransactionsByAddressRI struct for ListXRPRippleTransactionsByAddressRI.
ListXRPRippleTransactionsByAddressRIFee struct for ListXRPRippleTransactionsByAddressRIFee.
ListXRPRippleTransactionsByAddressRIOffer struct for ListXRPRippleTransactionsByAddressRIOffer.
ListXRPRippleTransactionsByAddressRIReceive struct for ListXRPRippleTransactionsByAddressRIReceive.
ListXRPRippleTransactionsByAddressRIValue struct for ListXRPRippleTransactionsByAddressRIValue.
ListXRPRippleTransactionsByBlockHash400Response struct for ListXRPRippleTransactionsByBlockHash400Response.
ListXRPRippleTransactionsByBlockHash401Response struct for ListXRPRippleTransactionsByBlockHash401Response.
ListXRPRippleTransactionsByBlockHash403Response struct for ListXRPRippleTransactionsByBlockHash403Response.
ListXRPRippleTransactionsByBlockHashE400 - struct for ListXRPRippleTransactionsByBlockHashE400.
ListXRPRippleTransactionsByBlockHashE401 - struct for ListXRPRippleTransactionsByBlockHashE401.
ListXRPRippleTransactionsByBlockHashE403 - struct for ListXRPRippleTransactionsByBlockHashE403.
ListXRPRippleTransactionsByBlockHashR struct for ListXRPRippleTransactionsByBlockHashR.
ListXRPRippleTransactionsByBlockHashRData struct for ListXRPRippleTransactionsByBlockHashRData.
ListXRPRippleTransactionsByBlockHashRI struct for ListXRPRippleTransactionsByBlockHashRI.
ListXRPRippleTransactionsByBlockHashRIFee struct for ListXRPRippleTransactionsByBlockHashRIFee.
ListXRPRippleTransactionsByBlockHashRIOffer struct for ListXRPRippleTransactionsByBlockHashRIOffer.
ListXRPRippleTransactionsByBlockHashRIReceive struct for ListXRPRippleTransactionsByBlockHashRIReceive.
ListXRPRippleTransactionsByBlockHashRIRecipientsInner struct for ListXRPRippleTransactionsByBlockHashRIRecipientsInner.
ListXRPRippleTransactionsByBlockHashRISendersInner struct for ListXRPRippleTransactionsByBlockHashRISendersInner.
ListXRPRippleTransactionsByBlockHashRIValue struct for ListXRPRippleTransactionsByBlockHashRIValue.
ListXRPRippleTransactionsByBlockHeight400Response struct for ListXRPRippleTransactionsByBlockHeight400Response.
ListXRPRippleTransactionsByBlockHeight401Response struct for ListXRPRippleTransactionsByBlockHeight401Response.
ListXRPRippleTransactionsByBlockHeight403Response struct for ListXRPRippleTransactionsByBlockHeight403Response.
ListXRPRippleTransactionsByBlockHeightE400 - struct for ListXRPRippleTransactionsByBlockHeightE400.
ListXRPRippleTransactionsByBlockHeightE401 - struct for ListXRPRippleTransactionsByBlockHeightE401.
ListXRPRippleTransactionsByBlockHeightE403 - struct for ListXRPRippleTransactionsByBlockHeightE403.
ListXRPRippleTransactionsByBlockHeightR struct for ListXRPRippleTransactionsByBlockHeightR.
ListXRPRippleTransactionsByBlockHeightRData struct for ListXRPRippleTransactionsByBlockHeightRData.
ListXRPRippleTransactionsByBlockHeightRI struct for ListXRPRippleTransactionsByBlockHeightRI.
ListXRPRippleTransactionsByBlockHeightRIFee struct for ListXRPRippleTransactionsByBlockHeightRIFee.
ListXRPRippleTransactionsByBlockHeightRIOffer struct for ListXRPRippleTransactionsByBlockHeightRIOffer.
ListXRPRippleTransactionsByBlockHeightRIReceive struct for ListXRPRippleTransactionsByBlockHeightRIReceive.
ListXRPRippleTransactionsByBlockHeightRIRecipientsInner struct for ListXRPRippleTransactionsByBlockHeightRIRecipientsInner.
ListXRPRippleTransactionsByBlockHeightRISendersInner struct for ListXRPRippleTransactionsByBlockHeightRISendersInner.
ListXRPRippleTransactionsByBlockHeightRIValue struct for ListXRPRippleTransactionsByBlockHeightRIValue.
ListZilliqaTransactionsByAddress400Response struct for ListZilliqaTransactionsByAddress400Response.
ListZilliqaTransactionsByAddress401Response struct for ListZilliqaTransactionsByAddress401Response.
ListZilliqaTransactionsByAddress403Response struct for ListZilliqaTransactionsByAddress403Response.
ListZilliqaTransactionsByAddressE400 - struct for ListZilliqaTransactionsByAddressE400.
ListZilliqaTransactionsByAddressE401 - struct for ListZilliqaTransactionsByAddressE401.
ListZilliqaTransactionsByAddressE403 - struct for ListZilliqaTransactionsByAddressE403.
ListZilliqaTransactionsByAddressR struct for ListZilliqaTransactionsByAddressR.
ListZilliqaTransactionsByAddressRData struct for ListZilliqaTransactionsByAddressRData.
ListZilliqaTransactionsByAddressRI struct for ListZilliqaTransactionsByAddressRI.
ListZilliqaTransactionsByAddressRIRecipientsInner struct for ListZilliqaTransactionsByAddressRIRecipientsInner.
ListZilliqaTransactionsByAddressRISendersInner struct for ListZilliqaTransactionsByAddressRISendersInner.
ListZilliqaTransactionsByBlockHash400Response struct for ListZilliqaTransactionsByBlockHash400Response.
ListZilliqaTransactionsByBlockHash401Response struct for ListZilliqaTransactionsByBlockHash401Response.
ListZilliqaTransactionsByBlockHash403Response struct for ListZilliqaTransactionsByBlockHash403Response.
ListZilliqaTransactionsByBlockHashE400 - struct for ListZilliqaTransactionsByBlockHashE400.
ListZilliqaTransactionsByBlockHashE401 - struct for ListZilliqaTransactionsByBlockHashE401.
ListZilliqaTransactionsByBlockHashE403 - struct for ListZilliqaTransactionsByBlockHashE403.
ListZilliqaTransactionsByBlockHashR struct for ListZilliqaTransactionsByBlockHashR.
ListZilliqaTransactionsByBlockHashRData struct for ListZilliqaTransactionsByBlockHashRData.
ListZilliqaTransactionsByBlockHashRI struct for ListZilliqaTransactionsByBlockHashRI.
ListZilliqaTransactionsByBlockHeight400Response struct for ListZilliqaTransactionsByBlockHeight400Response.
ListZilliqaTransactionsByBlockHeight401Response struct for ListZilliqaTransactionsByBlockHeight401Response.
ListZilliqaTransactionsByBlockHeight403Response struct for ListZilliqaTransactionsByBlockHeight403Response.
ListZilliqaTransactionsByBlockHeightE400 - struct for ListZilliqaTransactionsByBlockHeightE400.
ListZilliqaTransactionsByBlockHeightE401 - struct for ListZilliqaTransactionsByBlockHeightE401.
ListZilliqaTransactionsByBlockHeightE403 - struct for ListZilliqaTransactionsByBlockHeightE403.
ListZilliqaTransactionsByBlockHeightR struct for ListZilliqaTransactionsByBlockHeightR.
ListZilliqaTransactionsByBlockHeightRData struct for ListZilliqaTransactionsByBlockHeightRData.
ListZilliqaTransactionsByBlockHeightRI struct for ListZilliqaTransactionsByBlockHeightRI.
MinedTransaction400Response struct for MinedTransaction400Response.
MinedTransaction401Response struct for MinedTransaction401Response.
MinedTransaction403Response struct for MinedTransaction403Response.
MinedTransaction409Response struct for MinedTransaction409Response.
MinedTransactionE400 - struct for MinedTransactionE400.
MinedTransactionE401 - struct for MinedTransactionE401.
MinedTransactionE403 - struct for MinedTransactionE403.
MinedTransactionE409 - struct for MinedTransactionE409.
MinedTransactionR struct for MinedTransactionR.
MinedTransactionRB struct for MinedTransactionRB.
MinedTransactionRBData struct for MinedTransactionRBData.
MinedTransactionRBDataItem struct for MinedTransactionRBDataItem.
MinedTransactionRData struct for MinedTransactionRData.
MinedTransactionRI struct for MinedTransactionRI.
MissingApiKey missing_api_key.
NewBlock400Response struct for NewBlock400Response.
NewBlock401Response struct for NewBlock401Response.
NewBlock403Response struct for NewBlock403Response.
NewBlock409Response struct for NewBlock409Response.
NewBlockE400 - struct for NewBlockE400.
NewBlockE401 - struct for NewBlockE401.
NewBlockE403 - struct for NewBlockE403.
NewBlockE409 - struct for NewBlockE409.
NewBlockR struct for NewBlockR.
NewBlockRB struct for NewBlockRB.
NewBlockRBData struct for NewBlockRBData.
NewBlockRBDataItem struct for NewBlockRBDataItem.
NewBlockRData struct for NewBlockRData.
NewBlockRI struct for NewBlockRI.
NewConfirmedCoinsTransactions400Response struct for NewConfirmedCoinsTransactions400Response.
NewConfirmedCoinsTransactions401Response struct for NewConfirmedCoinsTransactions401Response.
NewConfirmedCoinsTransactions403Response struct for NewConfirmedCoinsTransactions403Response.
NewConfirmedCoinsTransactions409Response struct for NewConfirmedCoinsTransactions409Response.
NewConfirmedCoinsTransactionsAndEachConfirmation400Response struct for NewConfirmedCoinsTransactionsAndEachConfirmation400Response.
NewConfirmedCoinsTransactionsAndEachConfirmation401Response struct for NewConfirmedCoinsTransactionsAndEachConfirmation401Response.
NewConfirmedCoinsTransactionsAndEachConfirmation403Response struct for NewConfirmedCoinsTransactionsAndEachConfirmation403Response.
NewConfirmedCoinsTransactionsAndEachConfirmation409Response struct for NewConfirmedCoinsTransactionsAndEachConfirmation409Response.
NewConfirmedCoinsTransactionsAndEachConfirmationE400 - struct for NewConfirmedCoinsTransactionsAndEachConfirmationE400.
NewConfirmedCoinsTransactionsAndEachConfirmationE401 - struct for NewConfirmedCoinsTransactionsAndEachConfirmationE401.
NewConfirmedCoinsTransactionsAndEachConfirmationE403 - struct for NewConfirmedCoinsTransactionsAndEachConfirmationE403.
NewConfirmedCoinsTransactionsAndEachConfirmationE409 - struct for NewConfirmedCoinsTransactionsAndEachConfirmationE409.
NewConfirmedCoinsTransactionsAndEachConfirmationR struct for NewConfirmedCoinsTransactionsAndEachConfirmationR.
NewConfirmedCoinsTransactionsAndEachConfirmationRB struct for NewConfirmedCoinsTransactionsAndEachConfirmationRB.
NewConfirmedCoinsTransactionsAndEachConfirmationRBData struct for NewConfirmedCoinsTransactionsAndEachConfirmationRBData.
NewConfirmedCoinsTransactionsAndEachConfirmationRBDataItem struct for NewConfirmedCoinsTransactionsAndEachConfirmationRBDataItem.
NewConfirmedCoinsTransactionsAndEachConfirmationRData struct for NewConfirmedCoinsTransactionsAndEachConfirmationRData.
NewConfirmedCoinsTransactionsAndEachConfirmationRI struct for NewConfirmedCoinsTransactionsAndEachConfirmationRI.
NewConfirmedCoinsTransactionsE400 - struct for NewConfirmedCoinsTransactionsE400.
NewConfirmedCoinsTransactionsE401 - struct for NewConfirmedCoinsTransactionsE401.
NewConfirmedCoinsTransactionsE403 - struct for NewConfirmedCoinsTransactionsE403.
NewConfirmedCoinsTransactionsE409 - struct for NewConfirmedCoinsTransactionsE409.
NewConfirmedCoinsTransactionsForSpecificAmount400Response struct for NewConfirmedCoinsTransactionsForSpecificAmount400Response.
NewConfirmedCoinsTransactionsForSpecificAmount401Response struct for NewConfirmedCoinsTransactionsForSpecificAmount401Response.
NewConfirmedCoinsTransactionsForSpecificAmount403Response struct for NewConfirmedCoinsTransactionsForSpecificAmount403Response.
NewConfirmedCoinsTransactionsForSpecificAmount409Response struct for NewConfirmedCoinsTransactionsForSpecificAmount409Response.
NewConfirmedCoinsTransactionsForSpecificAmountE400 - struct for NewConfirmedCoinsTransactionsForSpecificAmountE400.
NewConfirmedCoinsTransactionsForSpecificAmountE401 - struct for NewConfirmedCoinsTransactionsForSpecificAmountE401.
NewConfirmedCoinsTransactionsForSpecificAmountE403 - struct for NewConfirmedCoinsTransactionsForSpecificAmountE403.
NewConfirmedCoinsTransactionsForSpecificAmountE409 - struct for NewConfirmedCoinsTransactionsForSpecificAmountE409.
NewConfirmedCoinsTransactionsForSpecificAmountR struct for NewConfirmedCoinsTransactionsForSpecificAmountR.
NewConfirmedCoinsTransactionsForSpecificAmountRB struct for NewConfirmedCoinsTransactionsForSpecificAmountRB.
NewConfirmedCoinsTransactionsForSpecificAmountRBData struct for NewConfirmedCoinsTransactionsForSpecificAmountRBData.
NewConfirmedCoinsTransactionsForSpecificAmountRBDataItem struct for NewConfirmedCoinsTransactionsForSpecificAmountRBDataItem.
NewConfirmedCoinsTransactionsForSpecificAmountRData struct for NewConfirmedCoinsTransactionsForSpecificAmountRData.
NewConfirmedCoinsTransactionsForSpecificAmountRI struct for NewConfirmedCoinsTransactionsForSpecificAmountRI.
NewConfirmedCoinsTransactionsR struct for NewConfirmedCoinsTransactionsR.
NewConfirmedCoinsTransactionsRB struct for NewConfirmedCoinsTransactionsRB.
NewConfirmedCoinsTransactionsRBData struct for NewConfirmedCoinsTransactionsRBData.
NewConfirmedCoinsTransactionsRBDataItem struct for NewConfirmedCoinsTransactionsRBDataItem.
NewConfirmedCoinsTransactionsRData struct for NewConfirmedCoinsTransactionsRData.
NewConfirmedCoinsTransactionsRI struct for NewConfirmedCoinsTransactionsRI.
NewConfirmedInternalTransactions400Response struct for NewConfirmedInternalTransactions400Response.
NewConfirmedInternalTransactions401Response struct for NewConfirmedInternalTransactions401Response.
NewConfirmedInternalTransactions403Response struct for NewConfirmedInternalTransactions403Response.
NewConfirmedInternalTransactions409Response struct for NewConfirmedInternalTransactions409Response.
NewConfirmedInternalTransactionsAndEachConfirmation400Response struct for NewConfirmedInternalTransactionsAndEachConfirmation400Response.
NewConfirmedInternalTransactionsAndEachConfirmation401Response struct for NewConfirmedInternalTransactionsAndEachConfirmation401Response.
NewConfirmedInternalTransactionsAndEachConfirmation403Response struct for NewConfirmedInternalTransactionsAndEachConfirmation403Response.
NewConfirmedInternalTransactionsAndEachConfirmation409Response struct for NewConfirmedInternalTransactionsAndEachConfirmation409Response.
NewConfirmedInternalTransactionsAndEachConfirmationE400 - struct for NewConfirmedInternalTransactionsAndEachConfirmationE400.
NewConfirmedInternalTransactionsAndEachConfirmationE401 - struct for NewConfirmedInternalTransactionsAndEachConfirmationE401.
NewConfirmedInternalTransactionsAndEachConfirmationE403 - struct for NewConfirmedInternalTransactionsAndEachConfirmationE403.
NewConfirmedInternalTransactionsAndEachConfirmationE409 - struct for NewConfirmedInternalTransactionsAndEachConfirmationE409.
NewConfirmedInternalTransactionsAndEachConfirmationR struct for NewConfirmedInternalTransactionsAndEachConfirmationR.
NewConfirmedInternalTransactionsAndEachConfirmationRB struct for NewConfirmedInternalTransactionsAndEachConfirmationRB.
NewConfirmedInternalTransactionsAndEachConfirmationRBData struct for NewConfirmedInternalTransactionsAndEachConfirmationRBData.
NewConfirmedInternalTransactionsAndEachConfirmationRBDataItem struct for NewConfirmedInternalTransactionsAndEachConfirmationRBDataItem.
NewConfirmedInternalTransactionsAndEachConfirmationRData struct for NewConfirmedInternalTransactionsAndEachConfirmationRData.
NewConfirmedInternalTransactionsAndEachConfirmationRI struct for NewConfirmedInternalTransactionsAndEachConfirmationRI.
NewConfirmedInternalTransactionsE400 - struct for NewConfirmedInternalTransactionsE400.
NewConfirmedInternalTransactionsE401 - struct for NewConfirmedInternalTransactionsE401.
NewConfirmedInternalTransactionsE403 - struct for NewConfirmedInternalTransactionsE403.
NewConfirmedInternalTransactionsE409 - struct for NewConfirmedInternalTransactionsE409.
NewConfirmedInternalTransactionsForSpecificAmount400Response struct for NewConfirmedInternalTransactionsForSpecificAmount400Response.
NewConfirmedInternalTransactionsForSpecificAmount401Response struct for NewConfirmedInternalTransactionsForSpecificAmount401Response.
NewConfirmedInternalTransactionsForSpecificAmount403Response struct for NewConfirmedInternalTransactionsForSpecificAmount403Response.
NewConfirmedInternalTransactionsForSpecificAmount409Response struct for NewConfirmedInternalTransactionsForSpecificAmount409Response.
NewConfirmedInternalTransactionsForSpecificAmountE400 - struct for NewConfirmedInternalTransactionsForSpecificAmountE400.
NewConfirmedInternalTransactionsForSpecificAmountE401 - struct for NewConfirmedInternalTransactionsForSpecificAmountE401.
NewConfirmedInternalTransactionsForSpecificAmountE403 - struct for NewConfirmedInternalTransactionsForSpecificAmountE403.
NewConfirmedInternalTransactionsForSpecificAmountE409 - struct for NewConfirmedInternalTransactionsForSpecificAmountE409.
NewConfirmedInternalTransactionsForSpecificAmountR struct for NewConfirmedInternalTransactionsForSpecificAmountR.
NewConfirmedInternalTransactionsForSpecificAmountRB struct for NewConfirmedInternalTransactionsForSpecificAmountRB.
NewConfirmedInternalTransactionsForSpecificAmountRBData struct for NewConfirmedInternalTransactionsForSpecificAmountRBData.
NewConfirmedInternalTransactionsForSpecificAmountRBDataItem struct for NewConfirmedInternalTransactionsForSpecificAmountRBDataItem.
NewConfirmedInternalTransactionsForSpecificAmountRData struct for NewConfirmedInternalTransactionsForSpecificAmountRData.
NewConfirmedInternalTransactionsForSpecificAmountRI struct for NewConfirmedInternalTransactionsForSpecificAmountRI.
NewConfirmedInternalTransactionsR struct for NewConfirmedInternalTransactionsR.
NewConfirmedInternalTransactionsRB struct for NewConfirmedInternalTransactionsRB.
NewConfirmedInternalTransactionsRBData struct for NewConfirmedInternalTransactionsRBData.
NewConfirmedInternalTransactionsRBDataItem struct for NewConfirmedInternalTransactionsRBDataItem.
NewConfirmedInternalTransactionsRData struct for NewConfirmedInternalTransactionsRData.
NewConfirmedInternalTransactionsRI struct for NewConfirmedInternalTransactionsRI.
NewConfirmedTokensTransactions400Response struct for NewConfirmedTokensTransactions400Response.
NewConfirmedTokensTransactions401Response struct for NewConfirmedTokensTransactions401Response.
NewConfirmedTokensTransactions403Response struct for NewConfirmedTokensTransactions403Response.
NewConfirmedTokensTransactions409Response struct for NewConfirmedTokensTransactions409Response.
NewConfirmedTokensTransactionsAndEachConfirmation400Response struct for NewConfirmedTokensTransactionsAndEachConfirmation400Response.
NewConfirmedTokensTransactionsAndEachConfirmation401Response struct for NewConfirmedTokensTransactionsAndEachConfirmation401Response.
NewConfirmedTokensTransactionsAndEachConfirmation403Response struct for NewConfirmedTokensTransactionsAndEachConfirmation403Response.
NewConfirmedTokensTransactionsAndEachConfirmation409Response struct for NewConfirmedTokensTransactionsAndEachConfirmation409Response.
NewConfirmedTokensTransactionsAndEachConfirmationE400 - struct for NewConfirmedTokensTransactionsAndEachConfirmationE400.
NewConfirmedTokensTransactionsAndEachConfirmationE401 - struct for NewConfirmedTokensTransactionsAndEachConfirmationE401.
NewConfirmedTokensTransactionsAndEachConfirmationE403 - struct for NewConfirmedTokensTransactionsAndEachConfirmationE403.
NewConfirmedTokensTransactionsAndEachConfirmationE409 - struct for NewConfirmedTokensTransactionsAndEachConfirmationE409.
NewConfirmedTokensTransactionsAndEachConfirmationR struct for NewConfirmedTokensTransactionsAndEachConfirmationR.
NewConfirmedTokensTransactionsAndEachConfirmationRB struct for NewConfirmedTokensTransactionsAndEachConfirmationRB.
NewConfirmedTokensTransactionsAndEachConfirmationRBData struct for NewConfirmedTokensTransactionsAndEachConfirmationRBData.
NewConfirmedTokensTransactionsAndEachConfirmationRBDataItem struct for NewConfirmedTokensTransactionsAndEachConfirmationRBDataItem.
NewConfirmedTokensTransactionsAndEachConfirmationRData struct for NewConfirmedTokensTransactionsAndEachConfirmationRData.
NewConfirmedTokensTransactionsAndEachConfirmationRI struct for NewConfirmedTokensTransactionsAndEachConfirmationRI.
NewConfirmedTokensTransactionsE400 - struct for NewConfirmedTokensTransactionsE400.
NewConfirmedTokensTransactionsE401 - struct for NewConfirmedTokensTransactionsE401.
NewConfirmedTokensTransactionsE403 - struct for NewConfirmedTokensTransactionsE403.
NewConfirmedTokensTransactionsE409 - struct for NewConfirmedTokensTransactionsE409.
NewConfirmedTokensTransactionsR struct for NewConfirmedTokensTransactionsR.
NewConfirmedTokensTransactionsRB struct for NewConfirmedTokensTransactionsRB.
NewConfirmedTokensTransactionsRBData struct for NewConfirmedTokensTransactionsRBData.
NewConfirmedTokensTransactionsRBDataItem struct for NewConfirmedTokensTransactionsRBDataItem.
NewConfirmedTokensTransactionsRData struct for NewConfirmedTokensTransactionsRData.
NewConfirmedTokensTransactionsRI struct for NewConfirmedTokensTransactionsRI.
NewConfirmedTokenTransactionsForSpecificAmount400Response struct for NewConfirmedTokenTransactionsForSpecificAmount400Response.
NewConfirmedTokenTransactionsForSpecificAmount401Response struct for NewConfirmedTokenTransactionsForSpecificAmount401Response.
NewConfirmedTokenTransactionsForSpecificAmount403Response struct for NewConfirmedTokenTransactionsForSpecificAmount403Response.
NewConfirmedTokenTransactionsForSpecificAmount409Response struct for NewConfirmedTokenTransactionsForSpecificAmount409Response.
NewConfirmedTokenTransactionsForSpecificAmountE400 - struct for NewConfirmedTokenTransactionsForSpecificAmountE400.
NewConfirmedTokenTransactionsForSpecificAmountE401 - struct for NewConfirmedTokenTransactionsForSpecificAmountE401.
NewConfirmedTokenTransactionsForSpecificAmountE403 - struct for NewConfirmedTokenTransactionsForSpecificAmountE403.
NewConfirmedTokenTransactionsForSpecificAmountE409 - struct for NewConfirmedTokenTransactionsForSpecificAmountE409.
NewConfirmedTokenTransactionsForSpecificAmountR struct for NewConfirmedTokenTransactionsForSpecificAmountR.
NewConfirmedTokenTransactionsForSpecificAmountRB struct for NewConfirmedTokenTransactionsForSpecificAmountRB.
NewConfirmedTokenTransactionsForSpecificAmountRBData struct for NewConfirmedTokenTransactionsForSpecificAmountRBData.
NewConfirmedTokenTransactionsForSpecificAmountRBDataItem struct for NewConfirmedTokenTransactionsForSpecificAmountRBDataItem.
NewConfirmedTokenTransactionsForSpecificAmountRData struct for NewConfirmedTokenTransactionsForSpecificAmountRData.
NewConfirmedTokenTransactionsForSpecificAmountRI struct for NewConfirmedTokenTransactionsForSpecificAmountRI.
NewUnconfirmedCoinsTransactions400Response struct for NewUnconfirmedCoinsTransactions400Response.
NewUnconfirmedCoinsTransactions401Response struct for NewUnconfirmedCoinsTransactions401Response.
NewUnconfirmedCoinsTransactions403Response struct for NewUnconfirmedCoinsTransactions403Response.
NewUnconfirmedCoinsTransactions409Response struct for NewUnconfirmedCoinsTransactions409Response.
NewUnconfirmedCoinsTransactionsE400 - struct for NewUnconfirmedCoinsTransactionsE400.
NewUnconfirmedCoinsTransactionsE401 - struct for NewUnconfirmedCoinsTransactionsE401.
NewUnconfirmedCoinsTransactionsE403 - struct for NewUnconfirmedCoinsTransactionsE403.
NewUnconfirmedCoinsTransactionsE409 - struct for NewUnconfirmedCoinsTransactionsE409.
NewUnconfirmedCoinsTransactionsR struct for NewUnconfirmedCoinsTransactionsR.
NewUnconfirmedCoinsTransactionsRB struct for NewUnconfirmedCoinsTransactionsRB.
NewUnconfirmedCoinsTransactionsRBData struct for NewUnconfirmedCoinsTransactionsRBData.
NewUnconfirmedCoinsTransactionsRBDataItem struct for NewUnconfirmedCoinsTransactionsRBDataItem.
NewUnconfirmedCoinsTransactionsRData struct for NewUnconfirmedCoinsTransactionsRData.
NewUnconfirmedCoinsTransactionsRI struct for NewUnconfirmedCoinsTransactionsRI.
NewUnconfirmedTokensTransactions400Response struct for NewUnconfirmedTokensTransactions400Response.
NewUnconfirmedTokensTransactions401Response struct for NewUnconfirmedTokensTransactions401Response.
NewUnconfirmedTokensTransactions403Response struct for NewUnconfirmedTokensTransactions403Response.
NewUnconfirmedTokensTransactions409Response struct for NewUnconfirmedTokensTransactions409Response.
NewUnconfirmedTokensTransactionsE400 - struct for NewUnconfirmedTokensTransactionsE400.
NewUnconfirmedTokensTransactionsE401 - struct for NewUnconfirmedTokensTransactionsE401.
NewUnconfirmedTokensTransactionsE403 - struct for NewUnconfirmedTokensTransactionsE403.
NewUnconfirmedTokensTransactionsE409 - struct for NewUnconfirmedTokensTransactionsE409.
NewUnconfirmedTokensTransactionsR struct for NewUnconfirmedTokensTransactionsR.
NewUnconfirmedTokensTransactionsRB struct for NewUnconfirmedTokensTransactionsRB.
NewUnconfirmedTokensTransactionsRBData struct for NewUnconfirmedTokensTransactionsRBData.
NewUnconfirmedTokensTransactionsRBDataItem struct for NewUnconfirmedTokensTransactionsRBDataItem.
NewUnconfirmedTokensTransactionsRData struct for NewUnconfirmedTokensTransactionsRData.
NewUnconfirmedTokensTransactionsRI struct for NewUnconfirmedTokensTransactionsRI.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub400Response struct for PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub400Response.
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub401Response struct for PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub401Response.
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub403Response struct for PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPub403Response.
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE400 - struct for PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE400.
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE401 - struct for PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE401.
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE403 - struct for PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubE403.
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubR struct for PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubR.
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRB struct for PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRB.
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBData struct for PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBData.
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBDataItem struct for PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBDataItem.
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBDataItemFee struct for PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRBDataItemFee.
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRData struct for PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRData.
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRI struct for PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRI.
PrepareAnAccountBasedTransactionFromHDWalletXPubYPubZPubRIFee When isConfirmed is True - Defines the amount of the transaction fee When isConfirmed is False - For ETH-based blockchains this attribute represents the max fee value.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub400Response struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub400Response.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub401Response struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub401Response.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub403Response struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPub403Response.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE400 - struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE400.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE401 - struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE401.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE403 - struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubE403.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubR struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubR.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRB struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRB.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBData struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBData.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItem struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItem.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItemFee struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItemFee.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItemRecipientsInner struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRBDataItemRecipientsInner.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRData struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRData.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRI struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRI.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIVinInner struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIVinInner.
PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIVoutInner struct for PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIVoutInner.
RequestLimitReached request_limit_reached.
ResourceNotFound resource_not_found.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
SyncHDWalletXPubYPubZPub400Response struct for SyncHDWalletXPubYPubZPub400Response.
SyncHDWalletXPubYPubZPub401Response struct for SyncHDWalletXPubYPubZPub401Response.
SyncHDWalletXPubYPubZPub403Response struct for SyncHDWalletXPubYPubZPub403Response.
SyncHDWalletXPubYPubZPub409Response struct for SyncHDWalletXPubYPubZPub409Response.
SyncHDWalletXPubYPubZPub422Response struct for SyncHDWalletXPubYPubZPub422Response.
SyncHDWalletXPubYPubZPubE400 - struct for SyncHDWalletXPubYPubZPubE400.
SyncHDWalletXPubYPubZPubE401 - struct for SyncHDWalletXPubYPubZPubE401.
SyncHDWalletXPubYPubZPubE403 - struct for SyncHDWalletXPubYPubZPubE403.
SyncHDWalletXPubYPubZPubE409 - struct for SyncHDWalletXPubYPubZPubE409.
SyncHDWalletXPubYPubZPubE422 - struct for SyncHDWalletXPubYPubZPubE422.
SyncHDWalletXPubYPubZPubR struct for SyncHDWalletXPubYPubZPubR.
SyncHDWalletXPubYPubZPubRB struct for SyncHDWalletXPubYPubZPubRB.
SyncHDWalletXPubYPubZPubRBData struct for SyncHDWalletXPubYPubZPubRBData.
SyncHDWalletXPubYPubZPubRBDataItem struct for SyncHDWalletXPubYPubZPubRBDataItem.
SyncHDWalletXPubYPubZPubRData struct for SyncHDWalletXPubYPubZPubRData.
SyncHDWalletXPubYPubZPubRI struct for SyncHDWalletXPubYPubZPubRI.
SyncNewHDWalletXPubYPubZPub400Response struct for SyncNewHDWalletXPubYPubZPub400Response.
SyncNewHDWalletXPubYPubZPub401Response struct for SyncNewHDWalletXPubYPubZPub401Response.
SyncNewHDWalletXPubYPubZPub403Response struct for SyncNewHDWalletXPubYPubZPub403Response.
SyncNewHDWalletXPubYPubZPub409Response struct for SyncNewHDWalletXPubYPubZPub409Response.
SyncNewHDWalletXPubYPubZPub422Response struct for SyncNewHDWalletXPubYPubZPub422Response.
SyncNewHDWalletXPubYPubZPubE400 - struct for SyncNewHDWalletXPubYPubZPubE400.
SyncNewHDWalletXPubYPubZPubE401 - struct for SyncNewHDWalletXPubYPubZPubE401.
SyncNewHDWalletXPubYPubZPubE403 - struct for SyncNewHDWalletXPubYPubZPubE403.
SyncNewHDWalletXPubYPubZPubE409 - struct for SyncNewHDWalletXPubYPubZPubE409.
SyncNewHDWalletXPubYPubZPubE422 - struct for SyncNewHDWalletXPubYPubZPubE422.
SyncNewHDWalletXPubYPubZPubR struct for SyncNewHDWalletXPubYPubZPubR.
SyncNewHDWalletXPubYPubZPubRB struct for SyncNewHDWalletXPubYPubZPubRB.
SyncNewHDWalletXPubYPubZPubRData struct for SyncNewHDWalletXPubYPubZPubRData.
SyncNewHDWalletXPubYPubZPubRI struct for SyncNewHDWalletXPubYPubZPubRI.
TokensForwardingAutomationsLimitReached tokens_forwarding_automations_limit_reached.
TokensForwardingFail struct for TokensForwardingFail.
TokensForwardingFailData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
TokensForwardingFailDataItem Defines an `item` as one result.
TokensForwardingSuccess struct for TokensForwardingSuccess.
TokensForwardingSuccessData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
TokensForwardingSuccessDataItem Defines an `item` as one result.
TokensForwardingSuccessErc20 ERC-20.
TokensForwardingSuccessErc721 ERC-721.
TokensForwardingSuccessOmni OMNI.
TokensForwardingSuccessToken - struct for TokensForwardingSuccessToken.
TransactionMined struct for TransactionMined.
TransactionMinedData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
TransactionMinedDataItem Defines an `item` as one result.
TransactionMinedDataItemMinedInBlock Refers to the specific block the transaction was mined in.
TransactionRequestApproval struct for TransactionRequestApproval.
TransactionRequestApprovalData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
TransactionRequestApprovalDataItem Defines an `item` as one result.
TransactionRequestBroadcasted struct for TransactionRequestBroadcasted.
TransactionRequestBroadcastedData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
TransactionRequestBroadcastedDataItem Defines an `item` as one result.
TransactionRequestFail struct for TransactionRequestFail.
TransactionRequestFailData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
TransactionRequestFailDataItem Defines an `item` as one result.
TransactionRequestMined struct for TransactionRequestMined.
TransactionRequestMinedData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
TransactionRequestRejection struct for TransactionRequestRejection.
TransactionRequestRejectionData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
TransactionRequestRejectionDataItem Defines an `item` as one result.
UnexpectedServerError unexpected_server_error.
Unimplemented unimplemented.
UnsupportedMediaType unsupported_media_type.
UriNotFound uri_not_found.
ValidateAddress400Response struct for ValidateAddress400Response.
ValidateAddress401Response struct for ValidateAddress401Response.
ValidateAddress403Response struct for ValidateAddress403Response.
ValidateAddressE400 - struct for ValidateAddressE400.
ValidateAddressE401 - struct for ValidateAddressE401.
ValidateAddressE403 - struct for ValidateAddressE403.
ValidateAddressR struct for ValidateAddressR.
ValidateAddressRB struct for ValidateAddressRB.
ValidateAddressRBData struct for ValidateAddressRBData.
ValidateAddressRBDataItem struct for ValidateAddressRBDataItem.
ValidateAddressRData struct for ValidateAddressRData.
ValidateAddressRI struct for ValidateAddressRI.
WalletAsAServiceAddressBalanceNotEnough wallet_as_a_service_address_balance_not_enough.
WalletAsAServiceDepositAddressesLimitReached wallet_as_a_service_deposit_addresses_limit_reached.
WalletAsAServiceNoDepositAddressesFound wallet_as_a_service_no_deposit_addresses_found.
WalletAsAServiceProvidedNetworkIsNotSuitableForThisWalletType wallet_as_a_service_provided_network_is_not_suitable_for_this_wallet_type.
WalletAsAServiceTokenNotSupported wallet_as_a_service_token_not_supported.
WalletAsAServiceWalletBalanceNotEnough wallet_as_a_service_wallet_balance_not_enough.
XpubNotSynced xpub_not_synced.
XpubSyncInProgress xpub_sync_in_progress.

# Type aliases

AssetsApiService AssetsApi service.
AutomaticCoinsForwardingApiService AutomaticCoinsForwardingApi service.
AutomaticTokensForwardingApiService AutomaticTokensForwardingApi service.
CallbackDataApiService CallbackDataApi service.
CreateSubscriptionsForApiService CreateSubscriptionsForApi service.
ExchangeRatesApiService ExchangeRatesApi service.
FeaturesApiService FeaturesApi service.
GeneratingApiService GeneratingApi service.
HDWalletsApiService HDWalletsApi service.
InformativeApiService InformativeApi service.
InternalApiService InternalApi service.
ManageSubscriptionsApiService ManageSubscriptionsApi service.
MetadataApiService MetadataApi service.
ServerConfigurations stores multiple ServerConfiguration items.
TokensApiService TokensApi service.
TransactionsApiService TransactionsApi service.
UnifiedEndpointsApiService UnifiedEndpointsApi service.
XRPRippleApiService XRPRippleApi service.
ZilliqaApiService ZilliqaApi service.