Categorygithub.com/avianlabs/paxos-go
modulepackage
0.0.5
Repository: https://github.com/avianlabs/paxos-go.git
Documentation: pkg.go.dev

# README

Go API client for paxos

Welcome to Paxos APIs. At Paxos, our mission is to enable the movement of any asset, any time, in a trustworthy way. These APIs serve that mission by making it easier than ever for you to directly integrate our product capabilities into your application, leveraging the speed, stability, and security of the Paxos platform.

The documentation that follows gives you access to our Crypto Brokerage, Trading, and Exchange products. It includes APIs for market data, orders, and the held rate quote flow.

To test in our sandbox environment, sign up for an account. For more information about Paxos and our APIs, visit Paxos.com.

Generation

This SDK is generated from the OpenAPI spec found here.

The CLI command to generate it was:

openapi-generator generate -i paxos-v2.openapi.json -g go --package-name paxos --git-user-id avianlabs --git-repo-id paxos-go -t ./templates

Templates

The default generation will fail with this OpenAPI spec because there are enums with duplicate names. To solve this I've had to alter enum generation to suffix the datatype.

To do this, first we downloaded templates with the following command:

openapi-generator author template -g go -o ./templates

Then I updated the relevant template. In this case it was 'model_enum.mustache'. We instruct the generator to use our template using -t <templates folder>.

Changes post generation

  1. Revert changes to README.md so as not to loose these instructions!
  2. Revert changes to go.mod to keep generated code using specific go version and dependency versions.

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: 2.0
  • Package version: 1.0.0
  • Generator version: 7.6.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

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 paxos "github.com/avianlabs/paxos-go"

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 paxos.ContextServerIndex of type int.

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

Templated Server URL

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

ctx := context.WithValue(context.Background(), paxos.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 paxos.ContextOperationServerIndices and paxos.ContextOperationServerVariables context maps.

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

Documentation for API Endpoints

All URIs are relative to https://api.paxos.com/v2

ClassMethodHTTP requestDescription
AccountMembersAPIAddAccountMembersPost /identity/account-membersAdd Account Members
AccountMembersAPIDeleteAccountMemberDelete /identity/account-members/{id}Remove Account Member
AccountsAPICreateAccountPost /identity/accountsCreate Account
AccountsAPIGetAccountGet /identity/accounts/{id}
AccountsAPIListAccountsGet /identity/accountsList Accounts
AccountsAPIUpdateAccountPut /identity/accountsUpdate Account
CryptoWithdrawalsAPICreateCryptoWithdrawalPost /transfer/crypto-withdrawalsCreate Crypto Withdrawal
DepositAddressesAPICreateDepositAddressPost /transfer/deposit-addressesCreate Deposit Address
DepositAddressesAPIListDepositAddressesGet /transfer/deposit-addressesList Deposit Addresses
ExchangePublicAPIListProfileExecutionsGet /profiles/{profile_id}/executionsList Executions
ExchangePublicAPIListProfileOrdersGet /profiles/{profile_id}/ordersList Orders
FeesAPICreateCryptoWithdrawalFeePost /transfer/fees/crypto-withdrawalCreate Crypto Withdrawal Fee
FiatTransfersAPICreateFiatAccountPost /transfer/fiat-accountsCreate Fiat Account
FiatTransfersAPICreateFiatDepositInstructionsPost /transfer/fiat-deposit-instructionsCreate Fiat Deposit Instructions
FiatTransfersAPICreateFiatWithdrawalPost /transfer/fiat-withdrawalsCreate Fiat Withdrawal
FiatTransfersAPIDeleteFiatAccountDelete /transfer/fiat-accounts/{id}Delete Fiat Account
FiatTransfersAPIGetFiatAccountGet /transfer/fiat-accounts/{id}Get Fiat Account
FiatTransfersAPIGetFiatDepositInstructionsGet /transfer/fiat-deposit-instructions/{id}Get Fiat Deposit Instructions
FiatTransfersAPIListFiatAccountsGet /transfer/fiat-accountsList Fiat Accounts
FiatTransfersAPIListFiatDepositInstructionsGet /transfer/fiat-deposit-instructionsList Fiat Deposit Instructions
FiatTransfersAPIUpdateFiatAccountPut /transfer/fiat-accounts/{id}Update Fiat Account
IdentityAPICreateIdentityPost /identity/identitiesCreate Identity
IdentityAPIGetIdentityGet /identity/identities/{id}Get Identity
IdentityAPIListIdentitiesGet /identity/identitiesList Identities
IdentityAPIUpdateIdentityPut /identity/identities/{id}Update Identity
IdentityCredentialsAPIRetryIdVerificationPost /identity/identities/{id}/retry-id-verificationRetry Id Verification
IdentityCredentialsAPISetVerifierCredentialsPost /identity/verifier-credentialsSet Verifier Credentials
IdentityDocumentsAPIDocumentUploadPut /identity/identities/{identity_id}/documentsDocument Upload
IdentityDocumentsAPIListIdentityDocumentsGet /identity/identities/{identity_id}/documentsList Identity Documents
InstitutionMembersAPIAddInstitutionMembersPost /identity/institution-membersAdd Institution Members
InstitutionMembersAPIDeleteInstitutionMemberDelete /identity/institution-members/{id}Remove Institution Member
InternalTransfersAPICreateInternalTransferPost /transfer/internalCreate Internal Transfer
LimitsAPIListTransferLimitsGet /transfer/limits/utilizationsList Transfer Limits
MarketDataAPIGetOrderBookGet /markets/{market}/order-bookGet Order Book
MarketDataAPIGetTickerGet /markets/{market}/tickerGet Ticker
MarketDataAPIListMarketsGet /marketsList Markets
MarketDataAPIListRecentExecutionsGet /markets/{market}/recent-executionsList Recent Executions
OrdersAPICancelOrderDelete /profiles/{profile_id}/orders/{id}Cancel Order
OrdersAPICreateOrderPost /profiles/{profile_id}/ordersCreate Order
OrdersAPIGetOrderGet /profiles/{profile_id}/orders/{id}Get Order
OrdersAPIListExecutionsGet /executionsList Executions
OrdersAPIListOrdersGet /ordersList Orders
PricingAPIListHistoricalPricesGet /markets/{market}/historical-pricesList Historical Prices
PricingAPIListPricesGet /all-markets/pricesList Prices
PricingAPIListTickersGet /all-markets/tickerList Tickers
ProfilesAPICreateProfilePost /profilesCreate Profile
ProfilesAPIGetProfileGet /profiles/{profile_id}Get Profile
ProfilesAPIGetProfileBalanceGet /profiles/{profile_id}/balances/{asset}Get Profile Balance
ProfilesAPIListProfileBalancesGet /profiles/{profile_id}/balancesList Profile Balances
ProfilesAPIListProfilesGet /profilesList Profiles
QuoteExecutionsAPICreateQuoteExecutionPost /profiles/{profile_id}/quote-executionsCreate Quote Execution
QuoteExecutionsAPIGetQuoteExecutionGet /profiles/{profile_id}/quote-executions/{id}Get Quote Execution
QuoteExecutionsAPIListQuoteExecutionsGet /profiles/{profile_id}/quote-executionsList Quote Executions
QuotesAPIListQuotesGet /quotesList Quotes
SandboxDepositsAPICreateSandboxDepositPost /sandbox/profiles/{profile_id}/depositCreate Sandbox Deposit
SandboxFiatTransfersAPIInitiateSandboxFiatDepositPost /sandbox/fiat-depositsInitiate Sandbox Fiat Deposit
SandboxIdentityAPISandboxSetIdentityStatusPut /identity/identities/{id}/sandbox-statusSandbox Set Identity Status
StablecoinConversionAPICancelStablecoinConversionDelete /conversion/stablecoins/{id}Cancel Stablecoin Conversion
StablecoinConversionAPICreateStablecoinConversionPost /conversion/stablecoinsCreate Stablecoin Conversion
StablecoinConversionAPIGetStablecoinConversionGet /conversion/stablecoins/{id}Get Stablecoin Conversion
StablecoinConversionAPIListStablecoinConversionsGet /conversion/stablecoinsList Stablecoin Conversions
TaxFormsAPIListTaxFormRevisionsGet /tax/tax-form-revisionsList Tax Form Revisions
TaxFormsAPIListTaxFormsGet /tax/tax-formsList Tax Forms
TaxLotAPIGetTaxLotGet /tax/tax-lots/{id}Get Tax Lot
TaxLotAPIListTaxLotsGet /tax/tax-lotsList Tax Lots
TaxLotAPIUpdateTaxLotPut /tax/tax-lots/{id}Update Tax Lot
TransfersAPIGetTransferGet /transfer/transfers/{id}Get Transfer
TransfersAPIListTransfersGet /transfer/transfersList Transfers

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

OAuth2

  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • funding:read_profile: Read profile and balance data
  • exchange:read_quote: Read quotes and quote history
  • exchange:write_quote_execution: Execute on quoted prices
  • exchange:read_quote_execution: Read quote executions
  • exchange:write_order: Create and Cancel Orders
  • exchange:read_order: Read Orders and Executions
  • exchange:historical_prices: Read Historical Pricing Data
  • transfer:read_transfer: Read deposit and withdrawal transfers
  • transfer:read_deposit_address: Read deposit addresses
  • transfer:write_deposit_address: Create and manage deposit addresses
  • fee:write_crypto_withdrawal_fee: Create crypto withdrawal fees
  • transfer:write_crypto_withdrawal: Create crypto withdrawal transfers
  • conversion:read_conversion_stablecoin: Retrieve requested or completed conversions
  • conversion:write_conversion_stablecoin: Create or cancel a conversion request

Example

auth := context.WithValue(context.Background(), paxos.ContextAccessToken, "ACCESSTOKENSTRING")
r, err := client.Service.Operation(auth, args)

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, paxos.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)

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

# Packages

No description provided by the author

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
IsNil checks if an input is nil.
NewAccount instantiates a new Account object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountAccountTypeFromValue returns a pointer to a valid AccountAccountType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewAccountMember instantiates a new AccountMember object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountMemberAccountRoleTypeFromValue returns a pointer to a valid AccountMemberAccountRoleType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewAccountMemberWithDefaults instantiates a new AccountMember object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountPurposeFromValue returns a pointer to a valid AccountPurpose for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewAccountWithDefaults instantiates a new Account object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddAccountMembersRequest instantiates a new AddAccountMembersRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddAccountMembersRequestWithDefaults instantiates a new AddAccountMembersRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddAccountMembersResponse instantiates a new AddAccountMembersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddAccountMembersResponseWithDefaults instantiates a new AddAccountMembersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddInstitutionMembersRequest instantiates a new AddInstitutionMembersRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddInstitutionMembersRequestWithDefaults instantiates a new AddInstitutionMembersRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddInstitutionMembersResponse instantiates a new AddInstitutionMembersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddInstitutionMembersResponseWithDefaults instantiates a new AddInstitutionMembersResponse object This 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.
NewApiHttpBody instantiates a new ApiHttpBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApiHttpBodyWithDefaults instantiates a new ApiHttpBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewAssetFromValue returns a pointer to a valid Asset for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewAutoConversion instantiates a new AutoConversion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAutoConversionWithDefaults instantiates a new AutoConversion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBeneficiary instantiates a new Beneficiary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBeneficiaryInstitution instantiates a new BeneficiaryInstitution object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBeneficiaryInstitutionWithDefaults instantiates a new BeneficiaryInstitution object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBeneficiaryPerson instantiates a new BeneficiaryPerson object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBeneficiaryPersonWithDefaults instantiates a new BeneficiaryPerson object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBeneficiaryWithDefaults instantiates a new Beneficiary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBookLevel instantiates a new BookLevel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBookLevelWithDefaults instantiates a new BookLevel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBufAny instantiates a new BufAny object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBufAnyWithDefaults instantiates a new BufAny object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCapitalGainTypeFromValue returns a pointer to a valid CapitalGainType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewConfiguration returns a new Configuration object.
NewCreateAccountRequest instantiates a new CreateAccountRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAccountRequestWithDefaults instantiates a new CreateAccountRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCryptoWithdrawalFeeRequest instantiates a new CreateCryptoWithdrawalFeeRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCryptoWithdrawalFeeRequestWithDefaults instantiates a new CreateCryptoWithdrawalFeeRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateCryptoWithdrawalRequest instantiates a new CreateCryptoWithdrawalRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateCryptoWithdrawalRequestWithDefaults instantiates a new CreateCryptoWithdrawalRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateDepositAddressRequest instantiates a new CreateDepositAddressRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateDepositAddressRequestWithDefaults instantiates a new CreateDepositAddressRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFiatAccountRequest instantiates a new CreateFiatAccountRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFiatAccountRequestWithDefaults instantiates a new CreateFiatAccountRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFiatDepositInstructionsRequest instantiates a new CreateFiatDepositInstructionsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFiatDepositInstructionsRequestWithDefaults instantiates a new CreateFiatDepositInstructionsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateFiatWithdrawalRequest instantiates a new CreateFiatWithdrawalRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateFiatWithdrawalRequestWithDefaults instantiates a new CreateFiatWithdrawalRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateIdentityRequest instantiates a new CreateIdentityRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateIdentityRequestWithDefaults instantiates a new CreateIdentityRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateInternalTransferRequest instantiates a new CreateInternalTransferRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateInternalTransferRequestWithDefaults instantiates a new CreateInternalTransferRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateOrderRequest instantiates a new CreateOrderRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateOrderRequestWithDefaults instantiates a new CreateOrderRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateProfileRequest instantiates a new CreateProfileRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateProfileRequestWithDefaults instantiates a new CreateProfileRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateQuoteExecutionRequest instantiates a new CreateQuoteExecutionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateQuoteExecutionRequestWithDefaults instantiates a new CreateQuoteExecutionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSandboxDepositRequest instantiates a new CreateSandboxDepositRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSandboxDepositRequestWithDefaults instantiates a new CreateSandboxDepositRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSandboxDepositResponse instantiates a new CreateSandboxDepositResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSandboxDepositResponseWithDefaults instantiates a new CreateSandboxDepositResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateStablecoinConversionRequest instantiates a new CreateStablecoinConversionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateStablecoinConversionRequestWithDefaults instantiates a new CreateStablecoinConversionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCryptoNetworkFromValue returns a pointer to a valid CryptoNetwork for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewCryptoWithdrawalFee instantiates a new CryptoWithdrawalFee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCryptoWithdrawalFeeWithDefaults instantiates a new CryptoWithdrawalFee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerDueDiligence instantiates a new CustomerDueDiligence object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerDueDiligenceNetWorthRangeFromValue returns a pointer to a valid CustomerDueDiligenceNetWorthRange for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewCustomerDueDiligenceTransferValueRangeFromValue returns a pointer to a valid CustomerDueDiligenceTransferValueRange for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewCustomerDueDiligenceWithDefaults instantiates a new CustomerDueDiligence object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerDueDiligenceYearlyIncomeRangeFromValue returns a pointer to a valid CustomerDueDiligenceYearlyIncomeRange for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDepositAddress instantiates a new DepositAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDepositAddressConversionTargetAssetFromValue returns a pointer to a valid DepositAddressConversionTargetAsset for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDepositAddressWithDefaults instantiates a new DepositAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDocumentDescription instantiates a new DocumentDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDocumentDescriptionWithDefaults instantiates a new DocumentDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDocumentTypeFromValue returns a pointer to a valid DocumentType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDocumentUploadRequest instantiates a new DocumentUploadRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDocumentUploadRequestWithDefaults instantiates a new DocumentUploadRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDocumentUploadResponse instantiates a new DocumentUploadResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDocumentUploadResponseWithDefaults instantiates a new DocumentUploadResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEmploymentStatusFromValue returns a pointer to a valid EmploymentStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewExchangeStats instantiates a new ExchangeStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExchangeStatsWithDefaults instantiates a new ExchangeStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecution instantiates a new Execution object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecutionWithDefaults instantiates a new Execution object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFiatAccount instantiates a new FiatAccount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFiatAccountOwner instantiates a new FiatAccountOwner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFiatAccountOwnerInstitutionDetails instantiates a new FiatAccountOwnerInstitutionDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFiatAccountOwnerInstitutionDetailsWithDefaults instantiates a new FiatAccountOwnerInstitutionDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFiatAccountOwnerPersonDetails instantiates a new FiatAccountOwnerPersonDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFiatAccountOwnerPersonDetailsWithDefaults instantiates a new FiatAccountOwnerPersonDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFiatAccountOwnerWithDefaults instantiates a new FiatAccountOwner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFiatAccountStatusFromValue returns a pointer to a valid FiatAccountStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewFiatAccountWithDefaults instantiates a new FiatAccount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFiatDepositInstructions instantiates a new FiatDepositInstructions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFiatDepositInstructionsStatusFromValue returns a pointer to a valid FiatDepositInstructionsStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewFiatDepositInstructionsWithDefaults instantiates a new FiatDepositInstructions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFiatNetworkFromValue returns a pointer to a valid FiatNetwork for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewFiatNetworkInstructions instantiates a new FiatNetworkInstructions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFiatNetworkInstructionsCbit instantiates a new FiatNetworkInstructionsCbit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFiatNetworkInstructionsCbitWithDefaults instantiates a new FiatNetworkInstructionsCbit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFiatNetworkInstructionsWire instantiates a new FiatNetworkInstructionsWire object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFiatNetworkInstructionsWireWithDefaults instantiates a new FiatNetworkInstructionsWire object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFiatNetworkInstructionsWithDefaults instantiates a new FiatNetworkInstructions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFiatWireAccountTypeFromValue returns a pointer to a valid FiatWireAccountType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewFundsSourceFromValue returns a pointer to a valid FundsSource for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewGetOrderBookResponse instantiates a new GetOrderBookResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetOrderBookResponseWithDefaults instantiates a new GetOrderBookResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHistoricalPrice instantiates a new HistoricalPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHistoricalPriceWithDefaults instantiates a new HistoricalPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIdentity instantiates a new Identity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIdentityMailingAddress instantiates a new IdentityMailingAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIdentityMailingAddressWithDefaults instantiates a new IdentityMailingAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIdentityprotoVerifierTypeFromValue returns a pointer to a valid IdentityprotoVerifierType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIdentityStatusFromValue returns a pointer to a valid IdentityStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIdentityTypeFromValue returns a pointer to a valid IdentityType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIdentityWithDefaults instantiates a new Identity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncrementFromValue returns a pointer to a valid Increment for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewInitiateSandboxFiatDepositRequest instantiates a new InitiateSandboxFiatDepositRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInitiateSandboxFiatDepositRequestWithDefaults instantiates a new InitiateSandboxFiatDepositRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInstitutionCIPIDTypeFromValue returns a pointer to a valid InstitutionCIPIDType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewInstitutionDetails instantiates a new InstitutionDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInstitutionDetailsWithDefaults instantiates a new InstitutionDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInstitutionMember instantiates a new InstitutionMember object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInstitutionMemberWithDefaults instantiates a new InstitutionMember object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInstitutionRoleTypeFromValue returns a pointer to a valid InstitutionRoleType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewInstitutionSubTypeFromValue returns a pointer to a valid InstitutionSubType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewInstitutionTypeFromValue returns a pointer to a valid InstitutionType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewListAccountsRequestOrderByFromValue returns a pointer to a valid ListAccountsRequestOrderBy for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewListAccountsResponse instantiates a new ListAccountsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAccountsResponseWithDefaults instantiates a new ListAccountsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListDepositAddressesRequestOrderByFromValue returns a pointer to a valid ListDepositAddressesRequestOrderBy for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewListDepositAddressesResponse instantiates a new ListDepositAddressesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListDepositAddressesResponseWithDefaults instantiates a new ListDepositAddressesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListExecutionsResponse instantiates a new ListExecutionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListExecutionsResponseWithDefaults instantiates a new ListExecutionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListFiatAccountsRequestOrderByFromValue returns a pointer to a valid ListFiatAccountsRequestOrderBy for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewListFiatAccountsResponse instantiates a new ListFiatAccountsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListFiatAccountsResponseWithDefaults instantiates a new ListFiatAccountsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListFiatDepositInstructionsResponse instantiates a new ListFiatDepositInstructionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListFiatDepositInstructionsResponseWithDefaults instantiates a new ListFiatDepositInstructionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListHistoricalPricesResponse instantiates a new ListHistoricalPricesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListHistoricalPricesResponseWithDefaults instantiates a new ListHistoricalPricesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListIdentitiesRequestOrderByFromValue returns a pointer to a valid ListIdentitiesRequestOrderBy for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewListIdentitiesResponse instantiates a new ListIdentitiesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListIdentitiesResponseWithDefaults instantiates a new ListIdentitiesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListIdentityDocumentsResponse instantiates a new ListIdentityDocumentsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListIdentityDocumentsResponseWithDefaults instantiates a new ListIdentityDocumentsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListMarketsResponse instantiates a new ListMarketsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListMarketsResponseWithDefaults instantiates a new ListMarketsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListOrdersResponse instantiates a new ListOrdersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListOrdersResponseWithDefaults instantiates a new ListOrdersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListPricesResponse instantiates a new ListPricesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListPricesResponseWithDefaults instantiates a new ListPricesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListProfileBalancesResponse instantiates a new ListProfileBalancesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListProfileBalancesResponseWithDefaults instantiates a new ListProfileBalancesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListProfilesRequestOrderByFromValue returns a pointer to a valid ListProfilesRequestOrderBy for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewListProfilesResponse instantiates a new ListProfilesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListProfilesResponseWithDefaults instantiates a new ListProfilesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListQuoteExecutionsResponse instantiates a new ListQuoteExecutionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListQuoteExecutionsResponseWithDefaults instantiates a new ListQuoteExecutionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListQuotesResponse instantiates a new ListQuotesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListQuotesResponseWithDefaults instantiates a new ListQuotesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListRecentExecutionsResponse instantiates a new ListRecentExecutionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListRecentExecutionsResponseWithDefaults instantiates a new ListRecentExecutionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListStablecoinConversionsResponse instantiates a new ListStablecoinConversionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListStablecoinConversionsResponseWithDefaults instantiates a new ListStablecoinConversionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTaxFormRevisionsResponse instantiates a new ListTaxFormRevisionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTaxFormRevisionsResponseWithDefaults instantiates a new ListTaxFormRevisionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTaxFormsRequestOrderByFromValue returns a pointer to a valid ListTaxFormsRequestOrderBy for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewListTaxFormsResponse instantiates a new ListTaxFormsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTaxFormsResponseWithDefaults instantiates a new ListTaxFormsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTaxLotsResponse instantiates a new ListTaxLotsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTaxLotsResponseWithDefaults instantiates a new ListTaxLotsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTickersResponse instantiates a new ListTickersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTickersResponseWithDefaults instantiates a new ListTickersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransferLimitsResponse instantiates a new ListTransferLimitsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransferLimitsResponseWithDefaults instantiates a new ListTransferLimitsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTransfersRequestOrderByFromValue returns a pointer to a valid ListTransfersRequestOrderBy for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewListTransfersResponse instantiates a new ListTransfersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTransfersResponseWithDefaults instantiates a new ListTransfersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMailingAddress instantiates a new MailingAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMailingAddressWithDefaults instantiates a new MailingAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMarketDetails instantiates a new MarketDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMarketDetailsWithDefaults instantiates a new MarketDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMarketFromValue returns a pointer to a valid Market for the value passed as argument, or an error if the value passed is not allowed by the enum.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewOrder instantiates a new Order object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOrderByFromValue returns a pointer to a valid OrderBy for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewOrderSideFromValue returns a pointer to a valid OrderSide for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewOrderStatusFromValue returns a pointer to a valid OrderStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewOrderTypeFromValue returns a pointer to a valid OrderType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewOrderWithDefaults instantiates a new Order object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPagination instantiates a new Pagination object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginationWithDefaults instantiates a new Pagination object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPassthroughVerificationFieldFromValue returns a pointer to a valid PassthroughVerificationField for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewPassthroughVerifierTypeFromValue returns a pointer to a valid PassthroughVerifierType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewPersonDetails instantiates a new PersonDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPersonDetailsCIPIDTypeFromValue returns a pointer to a valid PersonDetailsCIPIDType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewPersonDetailsWithDefaults instantiates a new PersonDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPricePriceMarketFromValue returns a pointer to a valid PricePriceMarket for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewPricing instantiates a new Pricing object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPricingWithDefaults instantiates a new Pricing object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProblem instantiates a new Problem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProblemWithDefaults instantiates a new Problem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProfile instantiates a new Profile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProfileBalance instantiates a new ProfileBalance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProfileBalanceWithDefaults instantiates a new ProfileBalance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProfileTypeFromValue returns a pointer to a valid ProfileType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewProfileWithDefaults instantiates a new Profile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQuote instantiates a new Quote object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQuoteExecution instantiates a new QuoteExecution object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQuoteExecutionStatusFromValue returns a pointer to a valid QuoteExecutionStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewQuoteExecutionWithDefaults instantiates a new QuoteExecution object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQuoteWithDefaults instantiates a new Quote object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRecentExecution instantiates a new RecentExecution object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRecentExecutionWithDefaults instantiates a new RecentExecution object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegulationStatusFromValue returns a pointer to a valid RegulationStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewRetryIdVerificationResponse instantiates a new RetryIdVerificationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRetryIdVerificationResponseWithDefaults instantiates a new RetryIdVerificationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSandboxSetIdentityStatusRequest instantiates a new SandboxSetIdentityStatusRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSandboxSetIdentityStatusRequestWithDefaults instantiates a new SandboxSetIdentityStatusRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSetDisable instantiates a new SetDisable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSetDisableWithDefaults instantiates a new SetDisable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSetVerifierCredentialsRequest instantiates a new SetVerifierCredentialsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSetVerifierCredentialsRequestWithDefaults instantiates a new SetVerifierCredentialsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSortOrderFromValue returns a pointer to a valid SortOrder for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewStablecoinConversion instantiates a new StablecoinConversion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStablecoinConversionWithDefaults instantiates a new StablecoinConversion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaxDetail instantiates a new TaxDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaxDetailWithDefaults instantiates a new TaxDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaxFormTypeFromValue returns a pointer to a valid TaxFormType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTaxFormURL instantiates a new TaxFormURL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaxFormURLWithDefaults instantiates a new TaxFormURL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaxLot instantiates a new TaxLot object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaxLotStatusFromValue returns a pointer to a valid TaxLotStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTaxLotWithDefaults instantiates a new TaxLot object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaxprotoOrderByFromValue returns a pointer to a valid TaxprotoOrderBy for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTickerRecord instantiates a new TickerRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTickerRecordWithDefaults instantiates a new TickerRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTimeInForceFromValue returns a pointer to a valid TimeInForce for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTimestampFilter instantiates a new TimestampFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTimestampFilterWithDefaults instantiates a new TimestampFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTimestampRange instantiates a new TimestampRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTimestampRangeWithDefaults instantiates a new TimestampRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTINVerificationStatusFromValue returns a pointer to a valid TINVerificationStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTradingTypeFromValue returns a pointer to a valid TradingType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTransactionTypeFromValue returns a pointer to a valid TransactionType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTransfer instantiates a new Transfer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransferDirectionFromValue returns a pointer to a valid TransferDirection for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTransferLimit instantiates a new TransferLimit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransferLimitWithDefaults instantiates a new TransferLimit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransferStatusFromValue returns a pointer to a valid TransferStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTransferTypeFromValue returns a pointer to a valid TransferType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTransferWithDefaults instantiates a new Transfer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAccountRequest instantiates a new UpdateAccountRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAccountRequestWithDefaults instantiates a new UpdateAccountRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateFiatAccountRequest instantiates a new UpdateFiatAccountRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateFiatAccountRequestUpdateFiatNetworkInstructions instantiates a new UpdateFiatAccountRequestUpdateFiatNetworkInstructions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateFiatAccountRequestUpdateFiatNetworkInstructionsWithDefaults instantiates a new UpdateFiatAccountRequestUpdateFiatNetworkInstructions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateFiatAccountRequestWithDefaults instantiates a new UpdateFiatAccountRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateFiatNetworkInstructionsUpdateWire instantiates a new UpdateFiatNetworkInstructionsUpdateWire object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateFiatNetworkInstructionsUpdateWireWithDefaults instantiates a new UpdateFiatNetworkInstructionsUpdateWire object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateIdentityRequest instantiates a new UpdateIdentityRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateIdentityRequestWithDefaults instantiates a new UpdateIdentityRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateTaxLotRequest instantiates a new UpdateTaxLotRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTaxLotRequestWithDefaults instantiates a new UpdateTaxLotRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateWireUpdateRoutingDetails instantiates a new UpdateWireUpdateRoutingDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateWireUpdateRoutingDetailsWithDefaults instantiates a new UpdateWireUpdateRoutingDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWealthSourceFromValue returns a pointer to a valid WealthSource for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewWireRoutingDetails instantiates a new WireRoutingDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWireRoutingDetailsWithDefaults instantiates a new WireRoutingDetails object This 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.

# Constants

List of AccountAccountType.
List of AccountAccountType.
List of AccountAccountType.
List of AccountAccountType.
List of AccountAccountType.
List of AccountMemberAccountRoleType.
List of AccountMemberAccountRoleType.
List of AccountMemberAccountRoleType.
List of AccountPurpose.
List of AccountPurpose.
List of AccountPurpose.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of Asset.
List of CapitalGainType.
List of CapitalGainType.
List of CapitalGainType.
List of CryptoNetwork.
List of CryptoNetwork.
List of CryptoNetwork.
List of CryptoNetwork.
List of CryptoNetwork.
List of CryptoNetwork.
List of CustomerDueDiligenceNetWorthRange.
List of CustomerDueDiligenceNetWorthRange.
List of CustomerDueDiligenceNetWorthRange.
List of CustomerDueDiligenceNetWorthRange.
List of CustomerDueDiligenceNetWorthRange.
List of CustomerDueDiligenceNetWorthRange.
List of CustomerDueDiligenceNetWorthRange.
List of CustomerDueDiligenceNetWorthRange.
List of CustomerDueDiligenceNetWorthRange.
List of CustomerDueDiligenceNetWorthRange.
List of CustomerDueDiligenceTransferValueRange.
List of CustomerDueDiligenceTransferValueRange.
List of CustomerDueDiligenceTransferValueRange.
List of CustomerDueDiligenceTransferValueRange.
List of CustomerDueDiligenceTransferValueRange.
List of CustomerDueDiligenceTransferValueRange.
List of CustomerDueDiligenceTransferValueRange.
List of CustomerDueDiligenceTransferValueRange.
List of CustomerDueDiligenceTransferValueRange.
List of CustomerDueDiligenceTransferValueRange.
List of CustomerDueDiligenceYearlyIncomeRange.
List of CustomerDueDiligenceYearlyIncomeRange.
List of CustomerDueDiligenceYearlyIncomeRange.
List of CustomerDueDiligenceYearlyIncomeRange.
List of CustomerDueDiligenceYearlyIncomeRange.
List of CustomerDueDiligenceYearlyIncomeRange.
List of CustomerDueDiligenceYearlyIncomeRange.
List of DepositAddressConversionTargetAsset.
List of DepositAddressConversionTargetAsset.
List of DocumentType.
List of DocumentType.
List of DocumentType.
List of DocumentType.
List of DocumentType.
List of DocumentType.
List of DocumentType.
List of DocumentType.
List of DocumentType.
List of DocumentType.
List of DocumentType.
List of DocumentType.
List of DocumentType.
List of DocumentType.
List of EmploymentStatus.
List of EmploymentStatus.
List of EmploymentStatus.
List of EmploymentStatus.
List of EmploymentStatus.
List of EmploymentStatus.
List of EmploymentStatus.
List of FiatAccountStatus.
List of FiatAccountStatus.
List of FiatAccountStatus.
List of FiatDepositInstructionsStatus.
List of FiatDepositInstructionsStatus.
List of FiatNetwork.
List of FiatNetwork.
List of FiatWireAccountType.
List of FiatWireAccountType.
List of FundsSource.
List of FundsSource.
List of FundsSource.
List of FundsSource.
List of FundsSource.
List of FundsSource.
List of FundsSource.
List of identityprotoVerifierType.
List of identityprotoVerifierType.
List of identityprotoVerifierType.
List of identityprotoVerifierType.
List of IdentityStatus.
List of IdentityStatus.
List of IdentityStatus.
List of IdentityStatus.
List of IdentityStatus.
List of IdentityType.
List of IdentityType.
List of Increment.
List of Increment.
List of Increment.
List of Increment.
List of Increment.
List of Increment.
List of Increment.
List of Increment.
List of Increment.
List of Increment.
List of Increment.
List of InstitutionCIPIDType.
List of InstitutionCIPIDType.
List of InstitutionCIPIDType.
List of InstitutionCIPIDType.
List of InstitutionRoleType.
List of InstitutionRoleType.
List of InstitutionRoleType.
List of InstitutionRoleType.
List of InstitutionRoleType.
List of InstitutionRoleType.
List of InstitutionRoleType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionSubType.
List of InstitutionType.
List of InstitutionType.
List of InstitutionType.
List of InstitutionType.
List of ListAccountsRequestOrderBy.
List of ListDepositAddressesRequestOrderBy.
List of ListFiatAccountsRequestOrderBy.
List of ListIdentitiesRequestOrderBy.
List of ListProfilesRequestOrderBy.
List of ListTaxFormsRequestOrderBy.
List of ListTransfersRequestOrderBy.
List of ListTransfersRequestOrderBy.
List of Market.
List of Market.
List of Market.
List of Market.
List of Market.
List of Market.
List of Market.
List of Market.
List of Market.
List of Market.
List of Market.
List of Market.
List of Market.
List of Market.
List of OrderBy.
List of OrderSide.
List of OrderSide.
List of OrderStatus.
List of OrderStatus.
List of OrderStatus.
List of OrderStatus.
List of OrderStatus.
List of OrderStatus.
List of OrderType.
List of OrderType.
OrderType_POST_ONLY_LIMIT
List of OrderType.
List of OrderType.
List of OrderType.
List of PassthroughVerificationField.
List of PassthroughVerificationField.
List of PassthroughVerificationField.
List of PassthroughVerificationField.
List of PassthroughVerifierType.
List of PassthroughVerifierType.
List of PassthroughVerifierType.
List of PassthroughVerifierType.
List of PassthroughVerifierType.
List of PassthroughVerifierType.
List of PassthroughVerifierType.
List of PassthroughVerifierType.
List of PassthroughVerifierType.
List of PassthroughVerifierType.
List of PassthroughVerifierType.
List of PassthroughVerifierType.
List of PersonDetailsCIPIDType.
List of PersonDetailsCIPIDType.
List of PersonDetailsCIPIDType.
List of PersonDetailsCIPIDType.
List of PersonDetailsCIPIDType.
List of PersonDetailsCIPIDType.
List of PricePriceMarket.
List of PricePriceMarket.
List of PricePriceMarket.
List of PricePriceMarket.
List of PricePriceMarket.
List of PricePriceMarket.
List of PricePriceMarket.
List of PricePriceMarket.
List of PricePriceMarket.
List of PricePriceMarket.
List of ProfileType.
List of ProfileType.
List of QuoteExecutionStatus.
List of QuoteExecutionStatus.
List of RegulationStatus.
List of RegulationStatus.
List of RegulationStatus.
List of SortOrder.
List of SortOrder.
List of TaxFormType.
List of TaxFormType.
List of TaxLotStatus.
List of TaxLotStatus.
List of taxprotoOrderBy.
List of TimeInForce.
List of TimeInForce.
List of TimeInForce.
List of TimeInForce.
List of TINVerificationStatus.
List of TINVerificationStatus.
List of TINVerificationStatus.
List of TradingType.
List of TradingType.
List of TradingType.
List of TransactionType.
List of TransactionType.
List of TransactionType.
List of TransactionType.
List of TransferDirection.
List of TransferDirection.
List of TransferStatus.
List of TransferStatus.
List of TransferStatus.
List of TransferType.
List of TransferType.
List of TransferType.
List of TransferType.
List of TransferType.
List of TransferType.
List of TransferType.
List of TransferType.
List of TransferType.
List of TransferType.
List of TransferType.
List of TransferType.
List of TransferType.
List of TransferType.
List of TransferType.
List of TransferType.
List of WealthSource.
List of WealthSource.
List of WealthSource.
List of WealthSource.

# Variables

All allowed values of AccountAccountType enum.
All allowed values of AccountMemberAccountRoleType enum.
All allowed values of AccountPurpose enum.
All allowed values of Asset enum.
All allowed values of CapitalGainType enum.
All allowed values of CryptoNetwork enum.
All allowed values of CustomerDueDiligenceNetWorthRange enum.
All allowed values of CustomerDueDiligenceTransferValueRange enum.
All allowed values of CustomerDueDiligenceYearlyIncomeRange enum.
All allowed values of DepositAddressConversionTargetAsset enum.
All allowed values of DocumentType enum.
All allowed values of EmploymentStatus enum.
All allowed values of FiatAccountStatus enum.
All allowed values of FiatDepositInstructionsStatus enum.
All allowed values of FiatNetwork enum.
All allowed values of FiatWireAccountType enum.
All allowed values of FundsSource enum.
All allowed values of IdentityprotoVerifierType enum.
All allowed values of IdentityStatus enum.
All allowed values of IdentityType enum.
All allowed values of Increment enum.
All allowed values of InstitutionCIPIDType enum.
All allowed values of InstitutionRoleType enum.
All allowed values of InstitutionSubType enum.
All allowed values of InstitutionType enum.
All allowed values of ListAccountsRequestOrderBy enum.
All allowed values of ListDepositAddressesRequestOrderBy enum.
All allowed values of ListFiatAccountsRequestOrderBy enum.
All allowed values of ListIdentitiesRequestOrderBy enum.
All allowed values of ListProfilesRequestOrderBy enum.
All allowed values of ListTaxFormsRequestOrderBy enum.
All allowed values of ListTransfersRequestOrderBy enum.
All allowed values of Market enum.
All allowed values of OrderBy enum.
All allowed values of OrderSide enum.
All allowed values of OrderStatus enum.
All allowed values of OrderType enum.
All allowed values of PassthroughVerificationField enum.
All allowed values of PassthroughVerifierType enum.
All allowed values of PersonDetailsCIPIDType enum.
All allowed values of PricePriceMarket enum.
All allowed values of ProfileType enum.
All allowed values of QuoteExecutionStatus enum.
All allowed values of RegulationStatus enum.
All allowed values of SortOrder enum.
All allowed values of TaxFormType enum.
All allowed values of TaxLotStatus enum.
All allowed values of TaxprotoOrderBy enum.
All allowed values of TimeInForce enum.
All allowed values of TINVerificationStatus enum.
All allowed values of TradingType enum.
All allowed values of TransactionType enum.
All allowed values of TransferDirection enum.
All allowed values of TransferStatus enum.
All allowed values of TransferType enum.
All allowed values of WealthSource enum.
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.
No description provided by the author
No description provided by the author

# Structs

Account struct for Account.
AccountMember struct for AccountMember.
AddAccountMembersRequest struct for AddAccountMembersRequest.
AddAccountMembersResponse struct for AddAccountMembersResponse.
AddInstitutionMembersRequest struct for AddInstitutionMembersRequest.
AddInstitutionMembersResponse struct for AddInstitutionMembersResponse.
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 Paxos API API v2.0 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
ApiHttpBody Message that represents an arbitrary HTTP body.
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
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
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
AutoConversion struct for AutoConversion.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
Beneficiary struct for Beneficiary.
BeneficiaryInstitution struct for BeneficiaryInstitution.
BeneficiaryPerson struct for BeneficiaryPerson.
BookLevel struct for BookLevel.
BufAny `Any` contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message.
Configuration stores the configuration of the API client.
CreateAccountRequest struct for CreateAccountRequest.
CreateCryptoWithdrawalFeeRequest struct for CreateCryptoWithdrawalFeeRequest.
CreateCryptoWithdrawalRequest struct for CreateCryptoWithdrawalRequest.
CreateDepositAddressRequest struct for CreateDepositAddressRequest.
CreateFiatAccountRequest struct for CreateFiatAccountRequest.
CreateFiatDepositInstructionsRequest struct for CreateFiatDepositInstructionsRequest.
CreateFiatWithdrawalRequest struct for CreateFiatWithdrawalRequest.
CreateIdentityRequest struct for CreateIdentityRequest.
CreateInternalTransferRequest struct for CreateInternalTransferRequest.
CreateOrderRequest struct for CreateOrderRequest.
CreateProfileRequest struct for CreateProfileRequest.
CreateQuoteExecutionRequest struct for CreateQuoteExecutionRequest.
CreateSandboxDepositRequest struct for CreateSandboxDepositRequest.
CreateSandboxDepositResponse struct for CreateSandboxDepositResponse.
CreateStablecoinConversionRequest struct for CreateStablecoinConversionRequest.
CryptoWithdrawalFee struct for CryptoWithdrawalFee.
CustomerDueDiligence struct for CustomerDueDiligence.
DepositAddress struct for DepositAddress.
DocumentDescription struct for DocumentDescription.
DocumentUploadRequest struct for DocumentUploadRequest.
DocumentUploadResponse struct for DocumentUploadResponse.
ExchangeStats struct for ExchangeStats.
Execution struct for Execution.
FiatAccount struct for FiatAccount.
FiatAccountOwner struct for FiatAccountOwner.
FiatAccountOwnerInstitutionDetails struct for FiatAccountOwnerInstitutionDetails.
FiatAccountOwnerPersonDetails struct for FiatAccountOwnerPersonDetails.
FiatDepositInstructions struct for FiatDepositInstructions.
FiatNetworkInstructions struct for FiatNetworkInstructions.
FiatNetworkInstructionsCbit struct for FiatNetworkInstructionsCbit.
FiatNetworkInstructionsWire struct for FiatNetworkInstructionsWire.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GetOrderBookResponse struct for GetOrderBookResponse.
HistoricalPrice struct for HistoricalPrice.
Identity struct for Identity.
IdentityMailingAddress A mailing address.
InitiateSandboxFiatDepositRequest struct for InitiateSandboxFiatDepositRequest.
InstitutionDetails struct for InstitutionDetails.
InstitutionMember struct for InstitutionMember.
ListAccountsResponse struct for ListAccountsResponse.
ListDepositAddressesResponse struct for ListDepositAddressesResponse.
ListExecutionsResponse struct for ListExecutionsResponse.
ListFiatAccountsResponse struct for ListFiatAccountsResponse.
ListFiatDepositInstructionsResponse struct for ListFiatDepositInstructionsResponse.
ListHistoricalPricesResponse struct for ListHistoricalPricesResponse.
ListIdentitiesResponse struct for ListIdentitiesResponse.
ListIdentityDocumentsResponse struct for ListIdentityDocumentsResponse.
ListMarketsResponse struct for ListMarketsResponse.
ListOrdersResponse struct for ListOrdersResponse.
ListPricesResponse struct for ListPricesResponse.
ListProfileBalancesResponse struct for ListProfileBalancesResponse.
ListProfilesResponse struct for ListProfilesResponse.
ListQuoteExecutionsResponse struct for ListQuoteExecutionsResponse.
ListQuotesResponse struct for ListQuotesResponse.
ListRecentExecutionsResponse struct for ListRecentExecutionsResponse.
ListStablecoinConversionsResponse struct for ListStablecoinConversionsResponse.
ListTaxFormRevisionsResponse struct for ListTaxFormRevisionsResponse.
ListTaxFormsResponse struct for ListTaxFormsResponse.
ListTaxLotsResponse struct for ListTaxLotsResponse.
ListTickersResponse struct for ListTickersResponse.
ListTransferLimitsResponse struct for ListTransferLimitsResponse.
ListTransfersResponse struct for ListTransfersResponse.
MailingAddress A mailing address.
MarketDetails struct for MarketDetails.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Order struct for Order.
Pagination struct for Pagination.
PersonDetails struct for PersonDetails.
Pricing struct for Pricing.
Problem struct for Problem.
Profile struct for Profile.
ProfileBalance A ProfileBalance represents the holdings of a particular asset within a profile.
Quote A Quote is a guaranteed price to buy or sell on a particular market for a limited period of time (a \"held rate\").
QuoteExecution A QuoteExecution is an order to buy or sell an asset at a particular held Quote.
RecentExecution struct for RecentExecution.
RetryIdVerificationResponse struct for RetryIdVerificationResponse.
SandboxSetIdentityStatusRequest struct for SandboxSetIdentityStatusRequest.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
SetDisable struct for SetDisable.
SetVerifierCredentialsRequest struct for SetVerifierCredentialsRequest.
StablecoinConversion struct for StablecoinConversion.
TaxDetail struct for TaxDetail.
TaxFormURL struct for TaxFormURL.
TaxLot struct for TaxLot.
TickerRecord struct for TickerRecord.
TimestampFilter struct for TimestampFilter.
TimestampRange struct for TimestampRange.
Transfer struct for Transfer.
TransferLimit struct for TransferLimit.
UpdateAccountRequest struct for UpdateAccountRequest.
UpdateFiatAccountRequest struct for UpdateFiatAccountRequest.
UpdateFiatAccountRequestUpdateFiatNetworkInstructions struct for UpdateFiatAccountRequestUpdateFiatNetworkInstructions.
UpdateFiatNetworkInstructionsUpdateWire struct for UpdateFiatNetworkInstructionsUpdateWire.
UpdateIdentityRequest struct for UpdateIdentityRequest.
UpdateTaxLotRequest struct for UpdateTaxLotRequest.
UpdateWireUpdateRoutingDetails struct for UpdateWireUpdateRoutingDetails.
WireRoutingDetails struct for WireRoutingDetails.

# Interfaces

No description provided by the author

# Type aliases

AccountAccountType the model 'AccountAccountType'.
AccountMemberAccountRoleType the model 'AccountMemberAccountRoleType'.
AccountMembersAPIService AccountMembersAPI service.
AccountPurpose the model 'AccountPurpose'.
AccountsAPIService AccountsAPI service.
Asset The given asset or assets held in a Paxos balance.
CapitalGainType the model 'CapitalGainType'.
CryptoNetwork A CryptoNetwork is a blockchain transmitting cryptocurrencies.
CryptoWithdrawalsAPIService CryptoWithdrawalsAPI service.
CustomerDueDiligenceNetWorthRange the model 'CustomerDueDiligenceNetWorthRange'.
CustomerDueDiligenceTransferValueRange the model 'CustomerDueDiligenceTransferValueRange'.
CustomerDueDiligenceYearlyIncomeRange the model 'CustomerDueDiligenceYearlyIncomeRange'.
DepositAddressConversionTargetAsset Asset to credit for deposits of Paxos-minted USD stablecoin.
DepositAddressesAPIService DepositAddressesAPI service.
DocumentType the model 'DocumentType'.
EmploymentStatus the model 'EmploymentStatus'.
ExchangePublicAPIService ExchangePublicAPI service.
FeesAPIService FeesAPI service.
FiatAccountStatus the model 'FiatAccountStatus'.
FiatDepositInstructionsStatus the model 'FiatDepositInstructionsStatus'.
FiatNetwork the model 'FiatNetwork'.
FiatTransfersAPIService FiatTransfersAPI service.
FiatWireAccountType the model 'FiatWireAccountType'.
FundsSource the model 'FundsSource'.
IdentityAPIService IdentityAPI service.
IdentityCredentialsAPIService IdentityCredentialsAPI service.
IdentityDocumentsAPIService IdentityDocumentsAPI service.
IdentityprotoVerifierType the model 'IdentityprotoVerifierType'.
IdentityStatus the model 'IdentityStatus'.
IdentityType the model 'IdentityType'.
Increment the model 'Increment'.
InstitutionCIPIDType the model 'InstitutionCIPIDType'.
InstitutionMembersAPIService InstitutionMembersAPI service.
InstitutionRoleType the model 'InstitutionRoleType'.
InstitutionSubType the model 'InstitutionSubType'.
InstitutionType the model 'InstitutionType'.
InternalTransfersAPIService InternalTransfersAPI service.
LimitsAPIService LimitsAPI service.
ListAccountsRequestOrderBy the model 'ListAccountsRequestOrderBy'.
ListDepositAddressesRequestOrderBy Query filter order.
ListFiatAccountsRequestOrderBy Query filter order.
ListIdentitiesRequestOrderBy the model 'ListIdentitiesRequestOrderBy'.
ListProfilesRequestOrderBy the model 'ListProfilesRequestOrderBy'.
ListTaxFormsRequestOrderBy the model 'ListTaxFormsRequestOrderBy'.
ListTransfersRequestOrderBy Query filter order.
Market the model 'Market'.
MarketDataAPIService MarketDataAPI service.
OrderBy the model 'OrderBy'.
OrdersAPIService OrdersAPI service.
OrderSide Trade side.
OrderStatus the model 'OrderStatus'.
OrderType Trade type.
PassthroughVerificationField the model 'PassthroughVerificationField'.
PassthroughVerifierType the model 'PassthroughVerifierType'.
PersonDetailsCIPIDType the model 'PersonDetailsCIPIDType'.
PricePriceMarket .
PricingAPIService PricingAPI service.
ProfilesAPIService ProfilesAPI service.
ProfileType The profile type.
QuoteExecutionsAPIService QuoteExecutionsAPI service.
QuoteExecutionStatus A QuoteExecution begins in state `CREATED` and transitions to end state `SETTLED` when all accounting movements are complete.
QuotesAPIService QuotesAPI service.
RegulationStatus the model 'RegulationStatus'.
SandboxDepositsAPIService SandboxDepositsAPI service.
SandboxFiatTransfersAPIService SandboxFiatTransfersAPI service.
SandboxIdentityAPIService SandboxIdentityAPI service.
ServerConfigurations stores multiple ServerConfiguration items.
SortOrder the model 'SortOrder'.
StablecoinConversionAPIService StablecoinConversionAPI service.
TaxFormsAPIService TaxFormsAPI service.
TaxFormType the model 'TaxFormType'.
TaxLotAPIService TaxLotAPI service.
TaxLotStatus the model 'TaxLotStatus'.
TaxprotoOrderBy the model 'TaxprotoOrderBy'.
TimeInForce How long an order will remain active before it expires.
TINVerificationStatus The TIN verification status for the associated `tax_payer_id`.
TradingType the model 'TradingType'.
TransactionType the model 'TransactionType'.
TransferDirection Direction of the transfer.
TransfersAPIService TransfersAPI service.
TransferStatus the model 'TransferStatus'.
TransferType Type of transfer.
WealthSource the model 'WealthSource'.