Categorygithub.com/formancehq/formance-sdk-go
modulepackage
1.1.0-20230228
Repository: https://github.com/formancehq/formance-sdk-go.git
Documentation: pkg.go.dev

# README

Go API client for formance

Open, modular foundation for unique payments flows

Introduction

This API is documented in OpenAPI format.

Authentication

Formance Stack offers one forms of authentication:

  • OAuth2 OAuth2 - an open protocol to allow secure authorization in a simple and standard method from web, mobile and desktop applications.

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: develop
  • Package version: develop
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://www.formance.com

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 formance "github.com/formancehq/formance-sdk-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 sw.ContextServerIndex of type int.

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

Templated Server URL

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to http://localhost

ClassMethodHTTP requestDescription
AccountsApiAddMetadataToAccountPost /api/ledger/{ledger}/accounts/{address}/metadataAdd metadata to an account
AccountsApiCountAccountsHead /api/ledger/{ledger}/accountsCount the accounts from a ledger
AccountsApiGetAccountGet /api/ledger/{ledger}/accounts/{address}Get account by its address
AccountsApiListAccountsGet /api/ledger/{ledger}/accountsList accounts from a ledger
BalancesApiGetBalancesGet /api/ledger/{ledger}/balancesGet the balances from a ledger's account
BalancesApiGetBalancesAggregatedGet /api/ledger/{ledger}/aggregate/balancesGet the aggregated balances from selected accounts
ClientsApiAddScopeToClientPut /api/auth/clients/{clientId}/scopes/{scopeId}Add scope to client
ClientsApiCreateClientPost /api/auth/clientsCreate client
ClientsApiCreateSecretPost /api/auth/clients/{clientId}/secretsAdd a secret to a client
ClientsApiDeleteClientDelete /api/auth/clients/{clientId}Delete client
ClientsApiDeleteScopeFromClientDelete /api/auth/clients/{clientId}/scopes/{scopeId}Delete scope from client
ClientsApiDeleteSecretDelete /api/auth/clients/{clientId}/secrets/{secretId}Delete a secret from a client
ClientsApiListClientsGet /api/auth/clientsList clients
ClientsApiReadClientGet /api/auth/clients/{clientId}Read client
ClientsApiUpdateClientPut /api/auth/clients/{clientId}Update client
DefaultApiGetServerInfoGet /api/auth/_infoGet server info
DefaultApiPaymentsgetServerInfoGet /api/payments/_infoGet server info
DefaultApiSearchgetServerInfoGet /api/search/_infoGet server info
LedgerApiGetLedgerInfoGet /api/ledger/{ledger}/_infoGet information about a ledger
LogsApiListLogsGet /api/ledger/{ledger}/logsList the logs from a ledger
MappingApiGetMappingGet /api/ledger/{ledger}/mappingGet the mapping of a ledger
MappingApiUpdateMappingPut /api/ledger/{ledger}/mappingUpdate the mapping of a ledger
OrchestrationApiCancelEventPut /api/orchestration/instances/{instanceID}/abortCancel a running workflow
OrchestrationApiCreateWorkflowPost /api/orchestration/workflowsCreate workflow
OrchestrationApiGetInstanceGet /api/orchestration/instances/{instanceID}Get a workflow instance by id
OrchestrationApiGetInstanceHistoryGet /api/orchestration/instances/{instanceID}/historyGet a workflow instance history by id
OrchestrationApiGetInstanceStageHistoryGet /api/orchestration/instances/{instanceID}/stages/{number}/historyGet a workflow instance stage history
OrchestrationApiGetWorkflowGet /api/orchestration/workflows/{flowId}Get a flow by id
OrchestrationApiListInstancesGet /api/orchestration/instancesList instances of a workflow
OrchestrationApiListWorkflowsGet /api/orchestration/workflowsList registered workflows
OrchestrationApiOrchestrationgetServerInfoGet /api/orchestration/_infoGet server info
OrchestrationApiRunWorkflowPost /api/orchestration/workflows/{workflowID}/instancesRun workflow
OrchestrationApiSendEventPost /api/orchestration/instances/{instanceID}/eventsSend an event to a running workflow
PaymentsApiConnectorsStripeTransferPost /api/payments/connectors/stripe/transfersTransfer funds between Stripe accounts
PaymentsApiConnectorsTransferPost /api/payments/connectors/{connector}/transfersTransfer funds between Connector accounts
PaymentsApiGetConnectorTaskGet /api/payments/connectors/{connector}/tasks/{taskId}Read a specific task of the connector
PaymentsApiGetPaymentGet /api/payments/payments/{paymentId}Get a payment
PaymentsApiInstallConnectorPost /api/payments/connectors/{connector}Install a connector
PaymentsApiListAllConnectorsGet /api/payments/connectorsList all installed connectors
PaymentsApiListConfigsAvailableConnectorsGet /api/payments/connectors/configsList the configs of each available connector
PaymentsApiListConnectorTasksGet /api/payments/connectors/{connector}/tasksList tasks from a connector
PaymentsApiListConnectorsTransfersGet /api/payments/connectors/{connector}/transfersList transfers and their statuses
PaymentsApiListPaymentsGet /api/payments/paymentsList payments
PaymentsApiPaymentslistAccountsGet /api/payments/accountsList accounts
PaymentsApiReadConnectorConfigGet /api/payments/connectors/{connector}/configRead the config of a connector
PaymentsApiResetConnectorPost /api/payments/connectors/{connector}/resetReset a connector
PaymentsApiUninstallConnectorDelete /api/payments/connectors/{connector}Uninstall a connector
PaymentsApiUpdateMetadataPatch /api/payments/payments/{paymentId}/metadataUpdate metadata
ScopesApiAddTransientScopePut /api/auth/scopes/{scopeId}/transient/{transientScopeId}Add a transient scope to a scope
ScopesApiCreateScopePost /api/auth/scopesCreate scope
ScopesApiDeleteScopeDelete /api/auth/scopes/{scopeId}Delete scope
ScopesApiDeleteTransientScopeDelete /api/auth/scopes/{scopeId}/transient/{transientScopeId}Delete a transient scope from a scope
ScopesApiListScopesGet /api/auth/scopesList scopes
ScopesApiReadScopeGet /api/auth/scopes/{scopeId}Read scope
ScopesApiUpdateScopePut /api/auth/scopes/{scopeId}Update scope
ScriptApiRunScriptPost /api/ledger/{ledger}/scriptExecute a Numscript
SearchApiSearchPost /api/search/Search
ServerApiGetInfoGet /api/ledger/_infoShow server information
StatsApiReadStatsGet /api/ledger/{ledger}/statsGet statistics from a ledger
TransactionsApiAddMetadataOnTransactionPost /api/ledger/{ledger}/transactions/{txid}/metadataSet the metadata of a transaction by its ID
TransactionsApiCountTransactionsHead /api/ledger/{ledger}/transactionsCount the transactions from a ledger
TransactionsApiCreateTransactionPost /api/ledger/{ledger}/transactionsCreate a new transaction to a ledger
TransactionsApiCreateTransactionsPost /api/ledger/{ledger}/transactions/batchCreate a new batch of transactions to a ledger
TransactionsApiGetTransactionGet /api/ledger/{ledger}/transactions/{txid}Get transaction from a ledger by its ID
TransactionsApiListTransactionsGet /api/ledger/{ledger}/transactionsList transactions from a ledger
TransactionsApiRevertTransactionPost /api/ledger/{ledger}/transactions/{txid}/revertRevert a ledger transaction by its ID
UsersApiListUsersGet /api/auth/usersList users
UsersApiReadUserGet /api/auth/users/{userId}Read user
WalletsApiConfirmHoldPost /api/wallets/holds/{hold_id}/confirmConfirm a hold
WalletsApiCreateBalancePost /api/wallets/wallets/{id}/balancesCreate a balance
WalletsApiCreateWalletPost /api/wallets/walletsCreate a new wallet
WalletsApiCreditWalletPost /api/wallets/wallets/{id}/creditCredit a wallet
WalletsApiDebitWalletPost /api/wallets/wallets/{id}/debitDebit a wallet
WalletsApiGetBalanceGet /api/wallets/wallets/{id}/balances/{balanceName}Get detailed balance
WalletsApiGetHoldGet /api/wallets/holds/{holdID}Get a hold
WalletsApiGetHoldsGet /api/wallets/holdsGet all holds for a wallet
WalletsApiGetTransactionsGet /api/wallets/transactions
WalletsApiGetWalletGet /api/wallets/wallets/{id}Get a wallet
WalletsApiListBalancesGet /api/wallets/wallets/{id}/balancesList balances of a wallet
WalletsApiListWalletsGet /api/wallets/walletsList all wallets
WalletsApiUpdateWalletPatch /api/wallets/wallets/{id}Update a wallet
WalletsApiVoidHoldPost /api/wallets/holds/{hold_id}/voidCancel a hold
WalletsApiWalletsgetServerInfoGet /api/wallets/_infoGet server info
WebhooksApiActivateConfigPut /api/webhooks/configs/{id}/activateActivate one config
WebhooksApiChangeConfigSecretPut /api/webhooks/configs/{id}/secret/changeChange the signing secret of a config
WebhooksApiDeactivateConfigPut /api/webhooks/configs/{id}/deactivateDeactivate one config
WebhooksApiDeleteConfigDelete /api/webhooks/configs/{id}Delete one config
WebhooksApiGetManyConfigsGet /api/webhooks/configsGet many configs
WebhooksApiInsertConfigPost /api/webhooks/configsInsert a new config
WebhooksApiTestConfigGet /api/webhooks/configs/{id}/testTest one config

Documentation For Models

Documentation For Authorization

Authorization

  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes: N/A

Example

auth := context.WithValue(context.Background(), sw.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, sw.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

[email protected]

# Packages

No description provided by the author

# Functions

BankingCircleConfigAsConnectorConfig is a convenience function that returns BankingCircleConfig wrapped in ConnectorConfig.
CacheExpires helper function to determine remaining time before repeating a request.
CurrencyCloudConfigAsConnectorConfig is a convenience function that returns CurrencyCloudConfig wrapped in ConnectorConfig.
DummyPayConfigAsConnectorConfig is a convenience function that returns DummyPayConfig wrapped in ConnectorConfig.
IsNil checks if an input is nil.
ModulrConfigAsConnectorConfig is a convenience function that returns ModulrConfig wrapped in ConnectorConfig.
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.
NewAccountResponse instantiates a new AccountResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountResponseWithDefaults instantiates a new AccountResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountsCursor instantiates a new AccountsCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountsCursorCursor instantiates a new AccountsCursorCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountsCursorCursorAllOf instantiates a new AccountsCursorCursorAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountsCursorCursorAllOfWithDefaults instantiates a new AccountsCursorCursorAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountsCursorCursorWithDefaults instantiates a new AccountsCursorCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountsCursorResponse instantiates a new AccountsCursorResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountsCursorResponseCursor instantiates a new AccountsCursorResponseCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountsCursorResponseCursorWithDefaults instantiates a new AccountsCursorResponseCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountsCursorResponseWithDefaults instantiates a new AccountsCursorResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountsCursorWithDefaults instantiates a new AccountsCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewAccountWithVolumesAndBalances instantiates a new AccountWithVolumesAndBalances object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountWithVolumesAndBalancesWithDefaults instantiates a new AccountWithVolumesAndBalances object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivityConfirmHold instantiates a new ActivityConfirmHold object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivityConfirmHoldWithDefaults instantiates a new ActivityConfirmHold object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivityCreateTransaction instantiates a new ActivityCreateTransaction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivityCreateTransactionWithDefaults instantiates a new ActivityCreateTransaction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivityCreditWallet instantiates a new ActivityCreditWallet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivityCreditWalletWithDefaults instantiates a new ActivityCreditWallet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivityDebitWallet instantiates a new ActivityDebitWallet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivityDebitWalletWithDefaults instantiates a new ActivityDebitWallet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivityGetAccount instantiates a new ActivityGetAccount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivityGetAccountWithDefaults instantiates a new ActivityGetAccount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivityGetPayment instantiates a new ActivityGetPayment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivityGetPaymentWithDefaults instantiates a new ActivityGetPayment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivityGetWallet instantiates a new ActivityGetWallet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivityGetWalletWithDefaults instantiates a new ActivityGetWallet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivityRevertTransaction instantiates a new ActivityRevertTransaction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivityRevertTransactionWithDefaults instantiates a new ActivityRevertTransaction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivityVoidHold instantiates a new ActivityVoidHold object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivityVoidHoldWithDefaults instantiates a new ActivityVoidHold object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAggregateBalancesResponse instantiates a new AggregateBalancesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAggregateBalancesResponseWithDefaults instantiates a new AggregateBalancesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewAssetHolder instantiates a new AssetHolder object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAssetHolderWithDefaults instantiates a new AssetHolder object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAttempt instantiates a new Attempt object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAttemptResponse instantiates a new AttemptResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAttemptResponseWithDefaults instantiates a new AttemptResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAttemptWithDefaults instantiates a new Attempt object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBalance instantiates a new Balance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBalancesCursorResponse instantiates a new BalancesCursorResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBalancesCursorResponseCursor instantiates a new BalancesCursorResponseCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBalancesCursorResponseCursorWithDefaults instantiates a new BalancesCursorResponseCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBalancesCursorResponseWithDefaults instantiates a new BalancesCursorResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBalanceWithAssets instantiates a new BalanceWithAssets object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBalanceWithAssetsWithDefaults instantiates a new BalanceWithAssets object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBalanceWithDefaults instantiates a new Balance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBankingCircleConfig instantiates a new BankingCircleConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBankingCircleConfigWithDefaults instantiates a new BankingCircleConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewClient instantiates a new Client object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClientAllOf instantiates a new ClientAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClientAllOfWithDefaults instantiates a new ClientAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewClientOptions instantiates a new ClientOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClientOptionsWithDefaults instantiates a new ClientOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewClientSecret instantiates a new ClientSecret object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClientSecretWithDefaults instantiates a new ClientSecret object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewClientWithDefaults instantiates a new Client object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfig instantiates a new Config object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigChangeSecret instantiates a new ConfigChangeSecret object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigChangeSecretWithDefaults instantiates a new ConfigChangeSecret object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigInfo instantiates a new ConfigInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigInfoResponse instantiates a new ConfigInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigInfoResponseWithDefaults instantiates a new ConfigInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigInfoWithDefaults instantiates a new ConfigInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigResponse instantiates a new ConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigResponseWithDefaults instantiates a new ConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigsResponse instantiates a new ConfigsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigsResponseCursor instantiates a new ConfigsResponseCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigsResponseCursorAllOf instantiates a new ConfigsResponseCursorAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigsResponseCursorAllOfWithDefaults instantiates a new ConfigsResponseCursorAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigsResponseCursorWithDefaults instantiates a new ConfigsResponseCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigsResponseWithDefaults instantiates a new ConfigsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewConfigUser instantiates a new ConfigUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigUserWithDefaults instantiates a new ConfigUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigWithDefaults instantiates a new Config object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfirmHoldRequest instantiates a new ConfirmHoldRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfirmHoldRequestWithDefaults instantiates a new ConfirmHoldRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConnectorConfigResponse instantiates a new ConnectorConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectorConfigResponseWithDefaults instantiates a new ConnectorConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConnectorFromValue returns a pointer to a valid Connector for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewConnectorsConfigsResponse instantiates a new ConnectorsConfigsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectorsConfigsResponseData instantiates a new ConnectorsConfigsResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectorsConfigsResponseDataConnector instantiates a new ConnectorsConfigsResponseDataConnector object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectorsConfigsResponseDataConnectorKey instantiates a new ConnectorsConfigsResponseDataConnectorKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectorsConfigsResponseDataConnectorKeyWithDefaults instantiates a new ConnectorsConfigsResponseDataConnectorKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConnectorsConfigsResponseDataConnectorWithDefaults instantiates a new ConnectorsConfigsResponseDataConnector object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConnectorsConfigsResponseDataWithDefaults instantiates a new ConnectorsConfigsResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConnectorsConfigsResponseWithDefaults instantiates a new ConnectorsConfigsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConnectorsResponse instantiates a new ConnectorsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectorsResponseDataInner instantiates a new ConnectorsResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectorsResponseDataInnerWithDefaults instantiates a new ConnectorsResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConnectorsResponseWithDefaults instantiates a new ConnectorsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContract instantiates a new Contract object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContractWithDefaults instantiates a new Contract object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateBalanceResponse instantiates a new CreateBalanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateBalanceResponseWithDefaults instantiates a new CreateBalanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateClientResponse instantiates a new CreateClientResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateClientResponseWithDefaults instantiates a new CreateClientResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateScopeResponse instantiates a new CreateScopeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateScopeResponseWithDefaults instantiates a new CreateScopeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSecretResponse instantiates a new CreateSecretResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSecretResponseWithDefaults instantiates a new CreateSecretResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateWalletRequest instantiates a new CreateWalletRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateWalletRequestWithDefaults instantiates a new CreateWalletRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateWalletResponse instantiates a new CreateWalletResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateWalletResponseWithDefaults instantiates a new CreateWalletResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateWorkflowResponse instantiates a new CreateWorkflowResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateWorkflowResponseWithDefaults instantiates a new CreateWorkflowResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreditWalletRequest instantiates a new CreditWalletRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreditWalletRequestWithDefaults instantiates a new CreditWalletRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCurrencyCloudConfig instantiates a new CurrencyCloudConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCurrencyCloudConfigWithDefaults instantiates a new CurrencyCloudConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCursor instantiates a new Cursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCursorBase instantiates a new CursorBase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCursorBaseWithDefaults instantiates a new CursorBase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCursorWithDefaults instantiates a new Cursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDebitWalletRequest instantiates a new DebitWalletRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDebitWalletRequestWithDefaults instantiates a new DebitWalletRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDebitWalletResponse instantiates a new DebitWalletResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDebitWalletResponseWithDefaults instantiates a new DebitWalletResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDummyPayConfig instantiates a new DummyPayConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDummyPayConfigWithDefaults instantiates a new DummyPayConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewError instantiates a new Error object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewErrorResponse instantiates a new ErrorResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewErrorResponseWithDefaults instantiates a new ErrorResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewErrorsEnumFromValue returns a pointer to a valid ErrorsEnum for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewErrorWithDefaults instantiates a new Error object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExpandedDebitHold instantiates a new ExpandedDebitHold object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExpandedDebitHoldAllOf instantiates a new ExpandedDebitHoldAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExpandedDebitHoldAllOfWithDefaults instantiates a new ExpandedDebitHoldAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExpandedDebitHoldWithDefaults instantiates a new ExpandedDebitHold object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetBalanceResponse instantiates a new GetBalanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetBalanceResponseWithDefaults instantiates a new GetBalanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHoldResponse instantiates a new GetHoldResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHoldResponseWithDefaults instantiates a new GetHoldResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHoldsResponse instantiates a new GetHoldsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHoldsResponseCursor instantiates a new GetHoldsResponseCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHoldsResponseCursorAllOf instantiates a new GetHoldsResponseCursorAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetHoldsResponseCursorAllOfWithDefaults instantiates a new GetHoldsResponseCursorAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHoldsResponseCursorWithDefaults instantiates a new GetHoldsResponseCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetHoldsResponseWithDefaults instantiates a new GetHoldsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionsResponse instantiates a new GetTransactionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionsResponseCursor instantiates a new GetTransactionsResponseCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionsResponseCursorAllOf instantiates a new GetTransactionsResponseCursorAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTransactionsResponseCursorAllOfWithDefaults instantiates a new GetTransactionsResponseCursorAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionsResponseCursorWithDefaults instantiates a new GetTransactionsResponseCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTransactionsResponseWithDefaults instantiates a new GetTransactionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWalletResponse instantiates a new GetWalletResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWalletResponseWithDefaults instantiates a new GetWalletResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWorkflowInstanceHistoryResponse instantiates a new GetWorkflowInstanceHistoryResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWorkflowInstanceHistoryResponseWithDefaults instantiates a new GetWorkflowInstanceHistoryResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWorkflowInstanceHistoryStageResponse instantiates a new GetWorkflowInstanceHistoryStageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWorkflowInstanceHistoryStageResponseWithDefaults instantiates a new GetWorkflowInstanceHistoryStageResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWorkflowInstanceResponse instantiates a new GetWorkflowInstanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWorkflowInstanceResponseWithDefaults instantiates a new GetWorkflowInstanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetWorkflowResponse instantiates a new GetWorkflowResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetWorkflowResponseWithDefaults instantiates a new GetWorkflowResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHold instantiates a new Hold object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHoldWithDefaults instantiates a new Hold object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLedgerAccountSubject instantiates a new LedgerAccountSubject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLedgerAccountSubjectWithDefaults instantiates a new LedgerAccountSubject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLedgerInfo instantiates a new LedgerInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLedgerInfoResponse instantiates a new LedgerInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLedgerInfoResponseWithDefaults instantiates a new LedgerInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLedgerInfoStorage instantiates a new LedgerInfoStorage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLedgerInfoStorageWithDefaults instantiates a new LedgerInfoStorage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLedgerInfoWithDefaults instantiates a new LedgerInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLedgerStorage instantiates a new LedgerStorage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLedgerStorageWithDefaults instantiates a new LedgerStorage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListBalancesResponse instantiates a new ListBalancesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListBalancesResponseCursor instantiates a new ListBalancesResponseCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListBalancesResponseCursorAllOf instantiates a new ListBalancesResponseCursorAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListBalancesResponseCursorAllOfWithDefaults instantiates a new ListBalancesResponseCursorAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListBalancesResponseCursorWithDefaults instantiates a new ListBalancesResponseCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListBalancesResponseWithDefaults instantiates a new ListBalancesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListClientsResponse instantiates a new ListClientsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListClientsResponseWithDefaults instantiates a new ListClientsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListRunsResponse instantiates a new ListRunsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListRunsResponseWithDefaults instantiates a new ListRunsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListScopesResponse instantiates a new ListScopesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListScopesResponseWithDefaults instantiates a new ListScopesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListUsersResponse instantiates a new ListUsersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListUsersResponseWithDefaults instantiates a new ListUsersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletsResponse instantiates a new ListWalletsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletsResponseCursor instantiates a new ListWalletsResponseCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletsResponseCursorAllOf instantiates a new ListWalletsResponseCursorAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWalletsResponseCursorAllOfWithDefaults instantiates a new ListWalletsResponseCursorAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletsResponseCursorWithDefaults instantiates a new ListWalletsResponseCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWalletsResponseWithDefaults instantiates a new ListWalletsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListWorkflowsResponse instantiates a new ListWorkflowsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListWorkflowsResponseWithDefaults instantiates a new ListWorkflowsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLog instantiates a new Log object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsCursorResponse instantiates a new LogsCursorResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsCursorResponseCursor instantiates a new LogsCursorResponseCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsCursorResponseCursorWithDefaults instantiates a new LogsCursorResponseCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsCursorResponseWithDefaults instantiates a new LogsCursorResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogWithDefaults instantiates a new Log object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMapping instantiates a new Mapping object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMappingResponse instantiates a new MappingResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMappingResponseWithDefaults instantiates a new MappingResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMappingWithDefaults instantiates a new Mapping object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMigrationInfo instantiates a new MigrationInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMigrationInfoWithDefaults instantiates a new MigrationInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewModulrConfig instantiates a new ModulrConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewModulrConfigWithDefaults instantiates a new ModulrConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonetary instantiates a new Monetary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonetaryWithDefaults instantiates a new Monetary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewPayment instantiates a new Payment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaymentAdjustment instantiates a new PaymentAdjustment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaymentAdjustmentWithDefaults instantiates a new PaymentAdjustment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaymentMetadata instantiates a new PaymentMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaymentMetadataWithDefaults instantiates a new PaymentMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaymentResponse instantiates a new PaymentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaymentResponseWithDefaults instantiates a new PaymentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaymentsAccount instantiates a new PaymentsAccount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaymentsAccountWithDefaults instantiates a new PaymentsAccount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaymentsCursor instantiates a new PaymentsCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaymentsCursorCursor instantiates a new PaymentsCursorCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaymentsCursorCursorAllOf instantiates a new PaymentsCursorCursorAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaymentsCursorCursorAllOfWithDefaults instantiates a new PaymentsCursorCursorAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaymentsCursorCursorWithDefaults instantiates a new PaymentsCursorCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaymentsCursorWithDefaults instantiates a new PaymentsCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaymentStatusFromValue returns a pointer to a valid PaymentStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewPaymentWithDefaults instantiates a new Payment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPosting instantiates a new Posting object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPostingWithDefaults instantiates a new Posting object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPostTransaction instantiates a new PostTransaction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPostTransactionScript instantiates a new PostTransactionScript object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPostTransactionScriptWithDefaults instantiates a new PostTransactionScript object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPostTransactionWithDefaults instantiates a new PostTransaction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQuery instantiates a new Query object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryWithDefaults instantiates a new Query object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReadClientResponse instantiates a new ReadClientResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReadClientResponseWithDefaults instantiates a new ReadClientResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReadUserResponse instantiates a new ReadUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReadUserResponseWithDefaults instantiates a new ReadUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReadWorkflowResponse instantiates a new ReadWorkflowResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReadWorkflowResponseWithDefaults instantiates a new ReadWorkflowResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResponse instantiates a new Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResponseWithDefaults instantiates a new Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRunWorkflowResponse instantiates a new RunWorkflowResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRunWorkflowResponseWithDefaults instantiates a new RunWorkflowResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScope instantiates a new Scope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScopeAllOf instantiates a new ScopeAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScopeAllOfWithDefaults instantiates a new ScopeAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScopeOptions instantiates a new ScopeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScopeOptionsWithDefaults instantiates a new ScopeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScopeWithDefaults instantiates a new Scope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScript instantiates a new Script object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScriptResponse instantiates a new ScriptResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScriptResponseWithDefaults instantiates a new ScriptResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScriptWithDefaults instantiates a new Script object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecret instantiates a new Secret object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecretAllOf instantiates a new SecretAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecretAllOfWithDefaults instantiates a new SecretAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecretOptions instantiates a new SecretOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecretOptionsWithDefaults instantiates a new SecretOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecretWithDefaults instantiates a new Secret object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSendEventRequest instantiates a new SendEventRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSendEventRequestWithDefaults instantiates a new SendEventRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServerInfo instantiates a new ServerInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServerInfoWithDefaults instantiates a new ServerInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStageDelay instantiates a new StageDelay object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStageDelayWithDefaults instantiates a new StageDelay object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStageSend instantiates a new StageSend object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStageSendDestination instantiates a new StageSendDestination object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStageSendDestinationPayment instantiates a new StageSendDestinationPayment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStageSendDestinationPaymentWithDefaults instantiates a new StageSendDestinationPayment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStageSendDestinationWithDefaults instantiates a new StageSendDestination object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStageSendSource instantiates a new StageSendSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStageSendSourceAccount instantiates a new StageSendSourceAccount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStageSendSourceAccountWithDefaults instantiates a new StageSendSourceAccount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStageSendSourcePayment instantiates a new StageSendSourcePayment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStageSendSourcePaymentWithDefaults instantiates a new StageSendSourcePayment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStageSendSourceWallet instantiates a new StageSendSourceWallet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStageSendSourceWalletWithDefaults instantiates a new StageSendSourceWallet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStageSendSourceWithDefaults instantiates a new StageSendSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStageSendWithDefaults instantiates a new StageSend object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStageStatus instantiates a new StageStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStageStatusWithDefaults instantiates a new StageStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStageWaitEvent instantiates a new StageWaitEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStageWaitEventWithDefaults instantiates a new StageWaitEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStats instantiates a new Stats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatsResponse instantiates a new StatsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatsResponseWithDefaults instantiates a new StatsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStatsWithDefaults instantiates a new Stats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStripeConfig instantiates a new StripeConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStripeConfigWithDefaults instantiates a new StripeConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStripeTransferRequest instantiates a new StripeTransferRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStripeTransferRequestWithDefaults instantiates a new StripeTransferRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskBankingCircle instantiates a new TaskBankingCircle object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskBankingCircleAllOf instantiates a new TaskBankingCircleAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskBankingCircleAllOfDescriptor instantiates a new TaskBankingCircleAllOfDescriptor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskBankingCircleAllOfDescriptorWithDefaults instantiates a new TaskBankingCircleAllOfDescriptor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskBankingCircleAllOfWithDefaults instantiates a new TaskBankingCircleAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskBankingCircleWithDefaults instantiates a new TaskBankingCircle object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskBase instantiates a new TaskBase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskBaseWithDefaults instantiates a new TaskBase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskCurrencyCloud instantiates a new TaskCurrencyCloud object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskCurrencyCloudAllOf instantiates a new TaskCurrencyCloudAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskCurrencyCloudAllOfDescriptor instantiates a new TaskCurrencyCloudAllOfDescriptor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskCurrencyCloudAllOfDescriptorWithDefaults instantiates a new TaskCurrencyCloudAllOfDescriptor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskCurrencyCloudAllOfWithDefaults instantiates a new TaskCurrencyCloudAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskCurrencyCloudWithDefaults instantiates a new TaskCurrencyCloud object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskDummyPay instantiates a new TaskDummyPay object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskDummyPayAllOf instantiates a new TaskDummyPayAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskDummyPayAllOfDescriptor instantiates a new TaskDummyPayAllOfDescriptor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskDummyPayAllOfDescriptorWithDefaults instantiates a new TaskDummyPayAllOfDescriptor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskDummyPayAllOfWithDefaults instantiates a new TaskDummyPayAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskDummyPayWithDefaults instantiates a new TaskDummyPay object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskModulr instantiates a new TaskModulr object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskModulrAllOf instantiates a new TaskModulrAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskModulrAllOfDescriptor instantiates a new TaskModulrAllOfDescriptor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskModulrAllOfDescriptorWithDefaults instantiates a new TaskModulrAllOfDescriptor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskModulrAllOfWithDefaults instantiates a new TaskModulrAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskModulrWithDefaults instantiates a new TaskModulr object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskResponse instantiates a new TaskResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskResponseWithDefaults instantiates a new TaskResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTasksCursor instantiates a new TasksCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTasksCursorCursor instantiates a new TasksCursorCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTasksCursorCursorAllOf instantiates a new TasksCursorCursorAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTasksCursorCursorAllOfWithDefaults instantiates a new TasksCursorCursorAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTasksCursorCursorWithDefaults instantiates a new TasksCursorCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTasksCursorWithDefaults instantiates a new TasksCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskStripe instantiates a new TaskStripe object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskStripeAllOf instantiates a new TaskStripeAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskStripeAllOfDescriptor instantiates a new TaskStripeAllOfDescriptor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskStripeAllOfDescriptorWithDefaults instantiates a new TaskStripeAllOfDescriptor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskStripeAllOfWithDefaults instantiates a new TaskStripeAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskStripeWithDefaults instantiates a new TaskStripe object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskWise instantiates a new TaskWise object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskWiseAllOf instantiates a new TaskWiseAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskWiseAllOfDescriptor instantiates a new TaskWiseAllOfDescriptor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskWiseAllOfDescriptorWithDefaults instantiates a new TaskWiseAllOfDescriptor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskWiseAllOfWithDefaults instantiates a new TaskWiseAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskWiseWithDefaults instantiates a new TaskWise object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTotal instantiates a new Total object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTotalWithDefaults instantiates a new Total object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransaction instantiates a new Transaction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionData instantiates a new TransactionData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionDataWithDefaults instantiates a new TransactionData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionResponse instantiates a new TransactionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionResponseWithDefaults instantiates a new TransactionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactions instantiates a new Transactions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionsCursorResponse instantiates a new TransactionsCursorResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionsCursorResponseCursor instantiates a new TransactionsCursorResponseCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionsCursorResponseCursorWithDefaults instantiates a new TransactionsCursorResponseCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionsCursorResponseWithDefaults instantiates a new TransactionsCursorResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionsResponse instantiates a new TransactionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionsResponseWithDefaults instantiates a new TransactionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionsWithDefaults instantiates a new Transactions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionWithDefaults instantiates a new Transaction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransferRequest instantiates a new TransferRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransferRequestWithDefaults instantiates a new TransferRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransferResponse instantiates a new TransferResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransferResponseWithDefaults instantiates a new TransferResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransfersResponse instantiates a new TransfersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransfersResponseDataInner instantiates a new TransfersResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransfersResponseDataInnerWithDefaults instantiates a new TransfersResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransfersResponseWithDefaults instantiates a new TransfersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateWalletRequest instantiates a new UpdateWalletRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateWalletRequestWithDefaults instantiates a new UpdateWalletRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUser instantiates a new User object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserWithDefaults instantiates a new User object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVolume instantiates a new Volume object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVolumeWithDefaults instantiates a new Volume object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWallet instantiates a new Wallet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletsCursor instantiates a new WalletsCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletsCursorWithDefaults instantiates a new WalletsCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWalletsErrorResponse instantiates a new WalletsErrorResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletsErrorResponseWithDefaults instantiates a new WalletsErrorResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWalletsTransaction instantiates a new WalletsTransaction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletsTransactionWithDefaults instantiates a new WalletsTransaction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWalletSubject instantiates a new WalletSubject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletSubjectWithDefaults instantiates a new WalletSubject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWalletsVolume instantiates a new WalletsVolume object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletsVolumeWithDefaults instantiates a new WalletsVolume object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWalletWithBalances instantiates a new WalletWithBalances object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletWithBalancesBalances instantiates a new WalletWithBalancesBalances object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWalletWithBalancesBalancesWithDefaults instantiates a new WalletWithBalancesBalances object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWalletWithBalancesWithDefaults instantiates a new WalletWithBalances object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWalletWithDefaults instantiates a new Wallet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWebhooksConfig instantiates a new WebhooksConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWebhooksConfigWithDefaults instantiates a new WebhooksConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWiseConfig instantiates a new WiseConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWiseConfigWithDefaults instantiates a new WiseConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflow instantiates a new Workflow object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowConfig instantiates a new WorkflowConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowConfigWithDefaults instantiates a new WorkflowConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowInstance instantiates a new WorkflowInstance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowInstanceHistory instantiates a new WorkflowInstanceHistory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowInstanceHistoryStage instantiates a new WorkflowInstanceHistoryStage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowInstanceHistoryStageInput instantiates a new WorkflowInstanceHistoryStageInput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowInstanceHistoryStageInputWithDefaults instantiates a new WorkflowInstanceHistoryStageInput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowInstanceHistoryStageOutput instantiates a new WorkflowInstanceHistoryStageOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkflowInstanceHistoryStageOutputWithDefaults instantiates a new WorkflowInstanceHistoryStageOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowInstanceHistoryStageWithDefaults instantiates a new WorkflowInstanceHistoryStage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowInstanceHistoryWithDefaults instantiates a new WorkflowInstanceHistory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowInstanceWithDefaults instantiates a new WorkflowInstance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkflowWithDefaults instantiates a new Workflow object This 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.
StripeConfigAsConnectorConfig is a convenience function that returns StripeConfig wrapped in ConnectorConfig.
TaskBankingCircleAsTasksCursorCursorAllOfDataInner is a convenience function that returns TaskBankingCircle wrapped in TasksCursorCursorAllOfDataInner.
TaskCurrencyCloudAsTasksCursorCursorAllOfDataInner is a convenience function that returns TaskCurrencyCloud wrapped in TasksCursorCursorAllOfDataInner.
TaskDummyPayAsTasksCursorCursorAllOfDataInner is a convenience function that returns TaskDummyPay wrapped in TasksCursorCursorAllOfDataInner.
TaskModulrAsTasksCursorCursorAllOfDataInner is a convenience function that returns TaskModulr wrapped in TasksCursorCursorAllOfDataInner.
TaskStripeAsTasksCursorCursorAllOfDataInner is a convenience function that returns TaskStripe wrapped in TasksCursorCursorAllOfDataInner.
TaskWiseAsTasksCursorCursorAllOfDataInner is a convenience function that returns TaskWise wrapped in TasksCursorCursorAllOfDataInner.
WiseConfigAsConnectorConfig is a convenience function that returns WiseConfig wrapped in ConnectorConfig.

# Constants

List of PaymentStatus.
List of Connector.
List of ErrorsEnum.
List of ErrorsEnum.
List of Connector.
List of Connector.
List of PaymentStatus.
List of ErrorsEnum.
List of ErrorsEnum.
List of ErrorsEnum.
List of Connector.
List of ErrorsEnum.
List of PaymentStatus.
List of Connector.
List of PaymentStatus.
List of PaymentStatus.
List of ErrorsEnum.
List of Connector.

# Variables

All allowed values of Connector enum.
All allowed values of ErrorsEnum enum.
All allowed values of PaymentStatus 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.

# Structs

Account struct for Account.
AccountResponse struct for AccountResponse.
AccountsCursor struct for AccountsCursor.
AccountsCursorCursor struct for AccountsCursorCursor.
AccountsCursorCursorAllOf struct for AccountsCursorCursorAllOf.
AccountsCursorResponse struct for AccountsCursorResponse.
AccountsCursorResponseCursor struct for AccountsCursorResponseCursor.
AccountWithVolumesAndBalances struct for AccountWithVolumesAndBalances.
ActivityConfirmHold struct for ActivityConfirmHold.
ActivityCreateTransaction struct for ActivityCreateTransaction.
ActivityCreditWallet struct for ActivityCreditWallet.
ActivityDebitWallet struct for ActivityDebitWallet.
ActivityGetAccount struct for ActivityGetAccount.
ActivityGetPayment struct for ActivityGetPayment.
ActivityGetWallet struct for ActivityGetWallet.
ActivityRevertTransaction struct for ActivityRevertTransaction.
ActivityVoidHold struct for ActivityVoidHold.
AggregateBalancesResponse struct for AggregateBalancesResponse.
No description provided by the author
No description provided by the author
No description provided by the author
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 Formance Stack API API vdevelop In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
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
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
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
AssetHolder struct for AssetHolder.
Attempt struct for Attempt.
AttemptResponse struct for AttemptResponse.
Balance struct for Balance.
BalancesCursorResponse struct for BalancesCursorResponse.
BalancesCursorResponseCursor struct for BalancesCursorResponseCursor.
BalanceWithAssets struct for BalanceWithAssets.
BankingCircleConfig struct for BankingCircleConfig.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
Client struct for Client.
ClientAllOf struct for ClientAllOf.
ClientOptions struct for ClientOptions.
ClientSecret struct for ClientSecret.
Config struct for Config.
ConfigChangeSecret struct for ConfigChangeSecret.
ConfigInfo struct for ConfigInfo.
ConfigInfoResponse struct for ConfigInfoResponse.
ConfigResponse struct for ConfigResponse.
ConfigsResponse struct for ConfigsResponse.
ConfigsResponseCursor struct for ConfigsResponseCursor.
ConfigsResponseCursorAllOf struct for ConfigsResponseCursorAllOf.
Configuration stores the configuration of the API client.
ConfigUser struct for ConfigUser.
ConfirmHoldRequest struct for ConfirmHoldRequest.
ConnectorConfig - struct for ConnectorConfig.
ConnectorConfigResponse struct for ConnectorConfigResponse.
ConnectorsConfigsResponse struct for ConnectorsConfigsResponse.
ConnectorsConfigsResponseData struct for ConnectorsConfigsResponseData.
ConnectorsConfigsResponseDataConnector struct for ConnectorsConfigsResponseDataConnector.
ConnectorsConfigsResponseDataConnectorKey struct for ConnectorsConfigsResponseDataConnectorKey.
ConnectorsResponse struct for ConnectorsResponse.
ConnectorsResponseDataInner struct for ConnectorsResponseDataInner.
Contract struct for Contract.
CreateBalanceResponse struct for CreateBalanceResponse.
CreateClientResponse struct for CreateClientResponse.
CreateScopeResponse struct for CreateScopeResponse.
CreateSecretResponse struct for CreateSecretResponse.
CreateWalletRequest struct for CreateWalletRequest.
CreateWalletResponse struct for CreateWalletResponse.
CreateWorkflowResponse struct for CreateWorkflowResponse.
CreditWalletRequest struct for CreditWalletRequest.
CurrencyCloudConfig struct for CurrencyCloudConfig.
Cursor struct for Cursor.
CursorBase struct for CursorBase.
DebitWalletRequest struct for DebitWalletRequest.
DebitWalletResponse struct for DebitWalletResponse.
DummyPayConfig struct for DummyPayConfig.
Error struct for Error.
ErrorResponse struct for ErrorResponse.
ExpandedDebitHold struct for ExpandedDebitHold.
ExpandedDebitHoldAllOf struct for ExpandedDebitHoldAllOf.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GetBalanceResponse struct for GetBalanceResponse.
GetHoldResponse struct for GetHoldResponse.
GetHoldsResponse struct for GetHoldsResponse.
GetHoldsResponseCursor struct for GetHoldsResponseCursor.
GetHoldsResponseCursorAllOf struct for GetHoldsResponseCursorAllOf.
GetTransactionsResponse struct for GetTransactionsResponse.
GetTransactionsResponseCursor struct for GetTransactionsResponseCursor.
GetTransactionsResponseCursorAllOf struct for GetTransactionsResponseCursorAllOf.
GetWalletResponse struct for GetWalletResponse.
GetWorkflowInstanceHistoryResponse struct for GetWorkflowInstanceHistoryResponse.
GetWorkflowInstanceHistoryStageResponse struct for GetWorkflowInstanceHistoryStageResponse.
GetWorkflowInstanceResponse struct for GetWorkflowInstanceResponse.
GetWorkflowResponse struct for GetWorkflowResponse.
Hold struct for Hold.
LedgerAccountSubject struct for LedgerAccountSubject.
LedgerInfo struct for LedgerInfo.
LedgerInfoResponse struct for LedgerInfoResponse.
LedgerInfoStorage struct for LedgerInfoStorage.
LedgerStorage struct for LedgerStorage.
ListBalancesResponse struct for ListBalancesResponse.
ListBalancesResponseCursor struct for ListBalancesResponseCursor.
ListBalancesResponseCursorAllOf struct for ListBalancesResponseCursorAllOf.
ListClientsResponse struct for ListClientsResponse.
ListRunsResponse struct for ListRunsResponse.
ListScopesResponse struct for ListScopesResponse.
ListUsersResponse struct for ListUsersResponse.
ListWalletsResponse struct for ListWalletsResponse.
ListWalletsResponseCursor struct for ListWalletsResponseCursor.
ListWalletsResponseCursorAllOf struct for ListWalletsResponseCursorAllOf.
ListWorkflowsResponse struct for ListWorkflowsResponse.
Log struct for Log.
LogsCursorResponse struct for LogsCursorResponse.
LogsCursorResponseCursor struct for LogsCursorResponseCursor.
Mapping struct for Mapping.
MappingResponse struct for MappingResponse.
MigrationInfo struct for MigrationInfo.
ModulrConfig struct for ModulrConfig.
Monetary struct for Monetary.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Payment struct for Payment.
PaymentAdjustment struct for PaymentAdjustment.
PaymentMetadata struct for PaymentMetadata.
PaymentResponse struct for PaymentResponse.
PaymentsAccount struct for PaymentsAccount.
PaymentsCursor struct for PaymentsCursor.
PaymentsCursorCursor struct for PaymentsCursorCursor.
PaymentsCursorCursorAllOf struct for PaymentsCursorCursorAllOf.
Posting struct for Posting.
PostTransaction struct for PostTransaction.
PostTransactionScript struct for PostTransactionScript.
Query struct for Query.
ReadClientResponse struct for ReadClientResponse.
ReadUserResponse struct for ReadUserResponse.
ReadWorkflowResponse struct for ReadWorkflowResponse.
Response struct for Response.
RunWorkflowResponse struct for RunWorkflowResponse.
Scope struct for Scope.
ScopeAllOf struct for ScopeAllOf.
ScopeOptions struct for ScopeOptions.
Script struct for Script.
ScriptResponse struct for ScriptResponse.
Secret struct for Secret.
SecretAllOf struct for SecretAllOf.
SecretOptions struct for SecretOptions.
SendEventRequest struct for SendEventRequest.
ServerConfiguration stores the information about a server.
ServerInfo struct for ServerInfo.
ServerVariable stores the information about a server variable.
Stage struct for Stage.
StageDelay struct for StageDelay.
StageSend struct for StageSend.
StageSendDestination struct for StageSendDestination.
StageSendDestinationPayment struct for StageSendDestinationPayment.
StageSendSource struct for StageSendSource.
StageSendSourceAccount struct for StageSendSourceAccount.
StageSendSourcePayment struct for StageSendSourcePayment.
StageSendSourceWallet struct for StageSendSourceWallet.
StageStatus struct for StageStatus.
StageWaitEvent struct for StageWaitEvent.
Stats struct for Stats.
StatsResponse struct for StatsResponse.
StripeConfig struct for StripeConfig.
StripeTransferRequest struct for StripeTransferRequest.
Subject struct for Subject.
TaskBankingCircle struct for TaskBankingCircle.
TaskBankingCircleAllOf struct for TaskBankingCircleAllOf.
TaskBankingCircleAllOfDescriptor struct for TaskBankingCircleAllOfDescriptor.
TaskBase struct for TaskBase.
TaskCurrencyCloud struct for TaskCurrencyCloud.
TaskCurrencyCloudAllOf struct for TaskCurrencyCloudAllOf.
TaskCurrencyCloudAllOfDescriptor struct for TaskCurrencyCloudAllOfDescriptor.
TaskDummyPay struct for TaskDummyPay.
TaskDummyPayAllOf struct for TaskDummyPayAllOf.
TaskDummyPayAllOfDescriptor struct for TaskDummyPayAllOfDescriptor.
TaskModulr struct for TaskModulr.
TaskModulrAllOf struct for TaskModulrAllOf.
TaskModulrAllOfDescriptor struct for TaskModulrAllOfDescriptor.
TaskResponse struct for TaskResponse.
TasksCursor struct for TasksCursor.
TasksCursorCursor struct for TasksCursorCursor.
TasksCursorCursorAllOf struct for TasksCursorCursorAllOf.
TasksCursorCursorAllOfDataInner - struct for TasksCursorCursorAllOfDataInner.
TaskStripe struct for TaskStripe.
TaskStripeAllOf struct for TaskStripeAllOf.
TaskStripeAllOfDescriptor struct for TaskStripeAllOfDescriptor.
TaskWise struct for TaskWise.
TaskWiseAllOf struct for TaskWiseAllOf.
TaskWiseAllOfDescriptor struct for TaskWiseAllOfDescriptor.
Total struct for Total.
Transaction struct for Transaction.
TransactionData struct for TransactionData.
TransactionResponse struct for TransactionResponse.
Transactions struct for Transactions.
TransactionsCursorResponse struct for TransactionsCursorResponse.
TransactionsCursorResponseCursor struct for TransactionsCursorResponseCursor.
TransactionsResponse struct for TransactionsResponse.
TransferRequest struct for TransferRequest.
TransferResponse struct for TransferResponse.
TransfersResponse struct for TransfersResponse.
TransfersResponseDataInner struct for TransfersResponseDataInner.
UpdateWalletRequest struct for UpdateWalletRequest.
User struct for User.
Volume struct for Volume.
Wallet struct for Wallet.
WalletsCursor struct for WalletsCursor.
WalletsErrorResponse struct for WalletsErrorResponse.
WalletsTransaction struct for WalletsTransaction.
WalletSubject struct for WalletSubject.
WalletsVolume struct for WalletsVolume.
WalletWithBalances struct for WalletWithBalances.
WalletWithBalancesBalances struct for WalletWithBalancesBalances.
WebhooksConfig struct for WebhooksConfig.
WiseConfig struct for WiseConfig.
Workflow struct for Workflow.
WorkflowConfig struct for WorkflowConfig.
WorkflowInstance struct for WorkflowInstance.
WorkflowInstanceHistory struct for WorkflowInstanceHistory.
WorkflowInstanceHistoryStage struct for WorkflowInstanceHistoryStage.
WorkflowInstanceHistoryStageInput struct for WorkflowInstanceHistoryStageInput.
WorkflowInstanceHistoryStageOutput struct for WorkflowInstanceHistoryStageOutput.

# Interfaces

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

AccountsApiService AccountsApi service.
BalancesApiService BalancesApi service.
ClientsApiService ClientsApi service.
Connector the model 'Connector'.
DefaultApiService DefaultApi service.
ErrorsEnum the model 'ErrorsEnum'.
LedgerApiService LedgerApi service.
LogsApiService LogsApi service.
MappingApiService MappingApi service.
OrchestrationApiService OrchestrationApi service.
PaymentsApiService PaymentsApi service.
PaymentStatus the model 'PaymentStatus'.
ScopesApiService ScopesApi service.
ScriptApiService ScriptApi service.
SearchApiService SearchApi service.
ServerApiService ServerApi service.
ServerConfigurations stores multiple ServerConfiguration items.
StatsApiService StatsApi service.
TransactionsApiService TransactionsApi service.
UsersApiService UsersApi service.
WalletsApiService WalletsApi service.
WebhooksApiService WebhooksApi service.