{"id":19218398,"url":"https://github.com/libninjacom/openapi-generator-plaid-csharp","last_synced_at":"2026-06-25T19:30:24.304Z","repository":{"id":135928749,"uuid":"502980990","full_name":"libninjacom/openapi-generator-plaid-csharp","owner":"libninjacom","description":null,"archived":false,"fork":false,"pushed_at":"2022-06-13T14:02:51.000Z","size":865,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-01-04T19:14:02.275Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/libninjacom.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"docs/Security.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-13T14:02:49.000Z","updated_at":"2022-06-13T14:02:58.000Z","dependencies_parsed_at":"2023-08-14T08:46:29.312Z","dependency_job_id":null,"html_url":"https://github.com/libninjacom/openapi-generator-plaid-csharp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fopenapi-generator-plaid-csharp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fopenapi-generator-plaid-csharp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fopenapi-generator-plaid-csharp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fopenapi-generator-plaid-csharp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/libninjacom","download_url":"https://codeload.github.com/libninjacom/openapi-generator-plaid-csharp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240292387,"owners_count":19778311,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T14:26:32.282Z","updated_at":"2026-06-25T19:30:24.268Z","avatar_url":"https://github.com/libninjacom.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Org.OpenAPITools - the C# library for the The Plaid API\n\nThe Plaid REST API. Please see https://plaid.com/docs/api for more details.\n\nThis C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 2020-09-14_1.64.13\n- SDK version: 1.0.0\n- Build package: org.openapitools.codegen.languages.CSharpNetCoreClientCodegen\n    For more information, please visit [https://plaid.com](https://plaid.com)\n\n\u003ca name=\"frameworks-supported\"\u003e\u003c/a\u003e\n## Frameworks supported\n- .NET Core \u003e=1.0\n- .NET Framework \u003e=4.6\n- Mono/Xamarin \u003e=vNext\n\n\u003ca name=\"dependencies\"\u003e\u003c/a\u003e\n## Dependencies\n\n- [RestSharp](https://www.nuget.org/packages/RestSharp) - 106.13.0 or later\n- [Json.NET](https://www.nuget.org/packages/Newtonsoft.Json/) - 12.0.3 or later\n- [JsonSubTypes](https://www.nuget.org/packages/JsonSubTypes/) - 1.8.0 or later\n- [System.ComponentModel.Annotations](https://www.nuget.org/packages/System.ComponentModel.Annotations) - 5.0.0 or later\n\nThe DLLs included in the package may not be the latest version. We recommend using [NuGet](https://docs.nuget.org/consume/installing-nuget) to obtain the latest version of the packages:\n```\nInstall-Package RestSharp\nInstall-Package Newtonsoft.Json\nInstall-Package JsonSubTypes\nInstall-Package System.ComponentModel.Annotations\n```\n\nNOTE: RestSharp versions greater than 105.1.0 have a bug which causes file uploads to fail. See [RestSharp#742](https://github.com/restsharp/RestSharp/issues/742).\nNOTE: RestSharp for .Net Core creates a new socket for each api call, which can lead to a socket exhaustion problem. See [RestSharp#1406](https://github.com/restsharp/RestSharp/issues/1406).\n\n\u003ca name=\"installation\"\u003e\u003c/a\u003e\n## Installation\nGenerate the DLL using your preferred tool (e.g. `dotnet build`)\n\nThen include the DLL (under the `bin` folder) in the C# project, and use the namespaces:\n```csharp\nusing Org.OpenAPITools.Api;\nusing Org.OpenAPITools.Client;\nusing Org.OpenAPITools.Model;\n```\n\u003ca name=\"usage\"\u003e\u003c/a\u003e\n## Usage\n\nTo use the API client with a HTTP proxy, setup a `System.Net.WebProxy`\n```csharp\nConfiguration c = new Configuration();\nSystem.Net.WebProxy webProxy = new System.Net.WebProxy(\"http://myProxyUrl:80/\");\nwebProxy.Credentials = System.Net.CredentialCache.DefaultCredentials;\nc.Proxy = webProxy;\n```\n\n\u003ca name=\"getting-started\"\u003e\u003c/a\u003e\n## Getting Started\n\n```csharp\nusing System.Collections.Generic;\nusing System.Diagnostics;\nusing Org.OpenAPITools.Api;\nusing Org.OpenAPITools.Client;\nusing Org.OpenAPITools.Model;\n\nnamespace Example\n{\n    public class Example\n    {\n        public static void Main()\n        {\n\n            Configuration config = new Configuration();\n            config.BasePath = \"https://production.plaid.com\";\n            // Configure API key authorization: clientId\n            config.ApiKey.Add(\"PLAID-CLIENT-ID\", \"YOUR_API_KEY\");\n            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n            // config.ApiKeyPrefix.Add(\"PLAID-CLIENT-ID\", \"Bearer\");\n            // Configure API key authorization: plaidVersion\n            config.ApiKey.Add(\"Plaid-Version\", \"YOUR_API_KEY\");\n            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n            // config.ApiKeyPrefix.Add(\"Plaid-Version\", \"Bearer\");\n            // Configure API key authorization: secret\n            config.ApiKey.Add(\"PLAID-SECRET\", \"YOUR_API_KEY\");\n            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n            // config.ApiKeyPrefix.Add(\"PLAID-SECRET\", \"Bearer\");\n\n            var apiInstance = new PlaidApi(config);\n            var accountsBalanceGetRequest = new AccountsBalanceGetRequest(); // AccountsBalanceGetRequest | \n\n            try\n            {\n                // Retrieve real-time balance data\n                AccountsGetResponse result = apiInstance.AccountsBalanceGet(accountsBalanceGetRequest);\n                Debug.WriteLine(result);\n            }\n            catch (ApiException e)\n            {\n                Debug.Print(\"Exception when calling PlaidApi.AccountsBalanceGet: \" + e.Message );\n                Debug.Print(\"Status Code: \"+ e.ErrorCode);\n                Debug.Print(e.StackTrace);\n            }\n\n        }\n    }\n}\n```\n\n\u003ca name=\"documentation-for-api-endpoints\"\u003e\u003c/a\u003e\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://production.plaid.com*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*PlaidApi* | [**AccountsBalanceGet**](docs/PlaidApi.md#accountsbalanceget) | **POST** /accounts/balance/get | Retrieve real-time balance data\n*PlaidApi* | [**AccountsGet**](docs/PlaidApi.md#accountsget) | **POST** /accounts/get | Retrieve accounts\n*PlaidApi* | [**ApplicationGet**](docs/PlaidApi.md#applicationget) | **POST** /application/get | Retrieve information about a Plaid application\n*PlaidApi* | [**AssetReportAuditCopyCreate**](docs/PlaidApi.md#assetreportauditcopycreate) | **POST** /asset_report/audit_copy/create | Create Asset Report Audit Copy\n*PlaidApi* | [**AssetReportAuditCopyGet**](docs/PlaidApi.md#assetreportauditcopyget) | **POST** /asset_report/audit_copy/get | Retrieve an Asset Report Audit Copy\n*PlaidApi* | [**AssetReportAuditCopyRemove**](docs/PlaidApi.md#assetreportauditcopyremove) | **POST** /asset_report/audit_copy/remove | Remove Asset Report Audit Copy\n*PlaidApi* | [**AssetReportCreate**](docs/PlaidApi.md#assetreportcreate) | **POST** /asset_report/create | Create an Asset Report\n*PlaidApi* | [**AssetReportFilter**](docs/PlaidApi.md#assetreportfilter) | **POST** /asset_report/filter | Filter Asset Report\n*PlaidApi* | [**AssetReportGet**](docs/PlaidApi.md#assetreportget) | **POST** /asset_report/get | Retrieve an Asset Report\n*PlaidApi* | [**AssetReportPdfGet**](docs/PlaidApi.md#assetreportpdfget) | **POST** /asset_report/pdf/get | Retrieve a PDF Asset Report\n*PlaidApi* | [**AssetReportRefresh**](docs/PlaidApi.md#assetreportrefresh) | **POST** /asset_report/refresh | Refresh an Asset Report\n*PlaidApi* | [**AssetReportRemove**](docs/PlaidApi.md#assetreportremove) | **POST** /asset_report/remove | Delete an Asset Report\n*PlaidApi* | [**AuthGet**](docs/PlaidApi.md#authget) | **POST** /auth/get | Retrieve auth data\n*PlaidApi* | [**BankTransferBalanceGet**](docs/PlaidApi.md#banktransferbalanceget) | **POST** /bank_transfer/balance/get | Get balance of your Bank Transfer account\n*PlaidApi* | [**BankTransferCancel**](docs/PlaidApi.md#banktransfercancel) | **POST** /bank_transfer/cancel | Cancel a bank transfer\n*PlaidApi* | [**BankTransferCreate**](docs/PlaidApi.md#banktransfercreate) | **POST** /bank_transfer/create | Create a bank transfer\n*PlaidApi* | [**BankTransferEventList**](docs/PlaidApi.md#banktransfereventlist) | **POST** /bank_transfer/event/list | List bank transfer events\n*PlaidApi* | [**BankTransferEventSync**](docs/PlaidApi.md#banktransfereventsync) | **POST** /bank_transfer/event/sync | Sync bank transfer events\n*PlaidApi* | [**BankTransferGet**](docs/PlaidApi.md#banktransferget) | **POST** /bank_transfer/get | Retrieve a bank transfer\n*PlaidApi* | [**BankTransferList**](docs/PlaidApi.md#banktransferlist) | **POST** /bank_transfer/list | List bank transfers\n*PlaidApi* | [**BankTransferMigrateAccount**](docs/PlaidApi.md#banktransfermigrateaccount) | **POST** /bank_transfer/migrate_account | Migrate account into Bank Transfers\n*PlaidApi* | [**BankTransferSweepGet**](docs/PlaidApi.md#banktransfersweepget) | **POST** /bank_transfer/sweep/get | Retrieve a sweep\n*PlaidApi* | [**BankTransferSweepList**](docs/PlaidApi.md#banktransfersweeplist) | **POST** /bank_transfer/sweep/list | List sweeps\n*PlaidApi* | [**CategoriesGet**](docs/PlaidApi.md#categoriesget) | **POST** /categories/get | Get Categories\n*PlaidApi* | [**CreatePaymentToken**](docs/PlaidApi.md#createpaymenttoken) | **POST** /payment_initiation/payment/token/create | Create payment token\n*PlaidApi* | [**DepositSwitchAltCreate**](docs/PlaidApi.md#depositswitchaltcreate) | **POST** /deposit_switch/alt/create | Create a deposit switch without using Plaid Exchange\n*PlaidApi* | [**DepositSwitchCreate**](docs/PlaidApi.md#depositswitchcreate) | **POST** /deposit_switch/create | Create a deposit switch\n*PlaidApi* | [**DepositSwitchGet**](docs/PlaidApi.md#depositswitchget) | **POST** /deposit_switch/get | Retrieve a deposit switch\n*PlaidApi* | [**DepositSwitchTokenCreate**](docs/PlaidApi.md#depositswitchtokencreate) | **POST** /deposit_switch/token/create | Create a deposit switch token\n*PlaidApi* | [**EmployersSearch**](docs/PlaidApi.md#employerssearch) | **POST** /employers/search | Search employer database\n*PlaidApi* | [**EmploymentVerificationGet**](docs/PlaidApi.md#employmentverificationget) | **POST** /employment/verification/get | Retrieve a summary of an individual's employment information\n*PlaidApi* | [**IdentityGet**](docs/PlaidApi.md#identityget) | **POST** /identity/get | Retrieve identity data\n*PlaidApi* | [**IncomeVerificationCreate**](docs/PlaidApi.md#incomeverificationcreate) | **POST** /income/verification/create | (Deprecated) Create an income verification instance\n*PlaidApi* | [**IncomeVerificationDocumentsDownload**](docs/PlaidApi.md#incomeverificationdocumentsdownload) | **POST** /income/verification/documents/download | Download the original documents used for income verification\n*PlaidApi* | [**IncomeVerificationPaystubGet**](docs/PlaidApi.md#incomeverificationpaystubget) | **POST** /income/verification/paystub/get | (Deprecated) Retrieve information from a single paystub used for income verification\n*PlaidApi* | [**IncomeVerificationPaystubsGet**](docs/PlaidApi.md#incomeverificationpaystubsget) | **POST** /income/verification/paystubs/get | Retrieve information from the paystubs used for income verification\n*PlaidApi* | [**IncomeVerificationPrecheck**](docs/PlaidApi.md#incomeverificationprecheck) | **POST** /income/verification/precheck | Check digital income verification eligibility and optimize conversion\n*PlaidApi* | [**IncomeVerificationRefresh**](docs/PlaidApi.md#incomeverificationrefresh) | **POST** /income/verification/refresh | Refresh an income verification\n*PlaidApi* | [**IncomeVerificationSummaryGet**](docs/PlaidApi.md#incomeverificationsummaryget) | **POST** /income/verification/summary/get | (Deprecated) Retrieve a summary of information derived from income verification\n*PlaidApi* | [**IncomeVerificationTaxformsGet**](docs/PlaidApi.md#incomeverificationtaxformsget) | **POST** /income/verification/taxforms/get | Retrieve information from the tax documents used for income verification\n*PlaidApi* | [**InstitutionsGet**](docs/PlaidApi.md#institutionsget) | **POST** /institutions/get | Get details of all supported institutions\n*PlaidApi* | [**InstitutionsGetById**](docs/PlaidApi.md#institutionsgetbyid) | **POST** /institutions/get_by_id | Get details of an institution\n*PlaidApi* | [**InstitutionsSearch**](docs/PlaidApi.md#institutionssearch) | **POST** /institutions/search | Search institutions\n*PlaidApi* | [**InvestmentsHoldingsGet**](docs/PlaidApi.md#investmentsholdingsget) | **POST** /investments/holdings/get | Get Investment holdings\n*PlaidApi* | [**InvestmentsTransactionsGet**](docs/PlaidApi.md#investmentstransactionsget) | **POST** /investments/transactions/get | Get investment transactions\n*PlaidApi* | [**ItemAccessTokenInvalidate**](docs/PlaidApi.md#itemaccesstokeninvalidate) | **POST** /item/access_token/invalidate | Invalidate access_token\n*PlaidApi* | [**ItemApplicationList**](docs/PlaidApi.md#itemapplicationlist) | **POST** /item/application/list | List a user’s connected applications\n*PlaidApi* | [**ItemApplicationScopesUpdate**](docs/PlaidApi.md#itemapplicationscopesupdate) | **POST** /item/application/scopes/update | Update the scopes of access for a particular application\n*PlaidApi* | [**ItemCreatePublicToken**](docs/PlaidApi.md#itemcreatepublictoken) | **POST** /item/public_token/create | Create public token\n*PlaidApi* | [**ItemGet**](docs/PlaidApi.md#itemget) | **POST** /item/get | Retrieve an Item\n*PlaidApi* | [**ItemImport**](docs/PlaidApi.md#itemimport) | **POST** /item/import | Import Item\n*PlaidApi* | [**ItemPublicTokenExchange**](docs/PlaidApi.md#itempublictokenexchange) | **POST** /item/public_token/exchange | Exchange public token for an access token\n*PlaidApi* | [**ItemRemove**](docs/PlaidApi.md#itemremove) | **POST** /item/remove | Remove an Item\n*PlaidApi* | [**ItemWebhookUpdate**](docs/PlaidApi.md#itemwebhookupdate) | **POST** /item/webhook/update | Update Webhook URL\n*PlaidApi* | [**LiabilitiesGet**](docs/PlaidApi.md#liabilitiesget) | **POST** /liabilities/get | Retrieve Liabilities data\n*PlaidApi* | [**LinkTokenCreate**](docs/PlaidApi.md#linktokencreate) | **POST** /link/token/create | Create Link Token\n*PlaidApi* | [**LinkTokenGet**](docs/PlaidApi.md#linktokenget) | **POST** /link/token/get | Get Link Token\n*PlaidApi* | [**PaymentInitiationPaymentCreate**](docs/PlaidApi.md#paymentinitiationpaymentcreate) | **POST** /payment_initiation/payment/create | Create a payment\n*PlaidApi* | [**PaymentInitiationPaymentGet**](docs/PlaidApi.md#paymentinitiationpaymentget) | **POST** /payment_initiation/payment/get | Get payment details\n*PlaidApi* | [**PaymentInitiationPaymentList**](docs/PlaidApi.md#paymentinitiationpaymentlist) | **POST** /payment_initiation/payment/list | List payments\n*PlaidApi* | [**PaymentInitiationPaymentReverse**](docs/PlaidApi.md#paymentinitiationpaymentreverse) | **POST** /payment_initiation/payment/reverse | Reverse an existing payment\n*PlaidApi* | [**PaymentInitiationRecipientCreate**](docs/PlaidApi.md#paymentinitiationrecipientcreate) | **POST** /payment_initiation/recipient/create | Create payment recipient\n*PlaidApi* | [**PaymentInitiationRecipientGet**](docs/PlaidApi.md#paymentinitiationrecipientget) | **POST** /payment_initiation/recipient/get | Get payment recipient\n*PlaidApi* | [**PaymentInitiationRecipientList**](docs/PlaidApi.md#paymentinitiationrecipientlist) | **POST** /payment_initiation/recipient/list | List payment recipients\n*PlaidApi* | [**ProcessorApexProcessorTokenCreate**](docs/PlaidApi.md#processorapexprocessortokencreate) | **POST** /processor/apex/processor_token/create | Create Apex bank account token\n*PlaidApi* | [**ProcessorAuthGet**](docs/PlaidApi.md#processorauthget) | **POST** /processor/auth/get | Retrieve Auth data\n*PlaidApi* | [**ProcessorBalanceGet**](docs/PlaidApi.md#processorbalanceget) | **POST** /processor/balance/get | Retrieve Balance data\n*PlaidApi* | [**ProcessorBankTransferCreate**](docs/PlaidApi.md#processorbanktransfercreate) | **POST** /processor/bank_transfer/create | Create a bank transfer as a processor\n*PlaidApi* | [**ProcessorIdentityGet**](docs/PlaidApi.md#processoridentityget) | **POST** /processor/identity/get | Retrieve Identity data\n*PlaidApi* | [**ProcessorStripeBankAccountTokenCreate**](docs/PlaidApi.md#processorstripebankaccounttokencreate) | **POST** /processor/stripe/bank_account_token/create | Create Stripe bank account token\n*PlaidApi* | [**ProcessorTokenCreate**](docs/PlaidApi.md#processortokencreate) | **POST** /processor/token/create | Create processor token\n*PlaidApi* | [**SandboxBankTransferFireWebhook**](docs/PlaidApi.md#sandboxbanktransferfirewebhook) | **POST** /sandbox/bank_transfer/fire_webhook | Manually fire a Bank Transfer webhook\n*PlaidApi* | [**SandboxBankTransferSimulate**](docs/PlaidApi.md#sandboxbanktransfersimulate) | **POST** /sandbox/bank_transfer/simulate | Simulate a bank transfer event in Sandbox\n*PlaidApi* | [**SandboxIncomeFireWebhook**](docs/PlaidApi.md#sandboxincomefirewebhook) | **POST** /sandbox/income/fire_webhook | Manually fire an Income webhook\n*PlaidApi* | [**SandboxItemFireWebhook**](docs/PlaidApi.md#sandboxitemfirewebhook) | **POST** /sandbox/item/fire_webhook | Fire a test webhook\n*PlaidApi* | [**SandboxItemResetLogin**](docs/PlaidApi.md#sandboxitemresetlogin) | **POST** /sandbox/item/reset_login | Force a Sandbox Item into an error state\n*PlaidApi* | [**SandboxItemSetVerificationStatus**](docs/PlaidApi.md#sandboxitemsetverificationstatus) | **POST** /sandbox/item/set_verification_status | Set verification status for Sandbox account\n*PlaidApi* | [**SandboxOauthSelectAccounts**](docs/PlaidApi.md#sandboxoauthselectaccounts) | **POST** /sandbox/oauth/select_accounts | Save the selected accounts when connecting to the Platypus Oauth institution\n*PlaidApi* | [**SandboxProcessorTokenCreate**](docs/PlaidApi.md#sandboxprocessortokencreate) | **POST** /sandbox/processor_token/create | Create a test Item and processor token\n*PlaidApi* | [**SandboxPublicTokenCreate**](docs/PlaidApi.md#sandboxpublictokencreate) | **POST** /sandbox/public_token/create | Create a test Item\n*PlaidApi* | [**SandboxTransferRepaymentSimulate**](docs/PlaidApi.md#sandboxtransferrepaymentsimulate) | **POST** /sandbox/transfer/repayment/simulate | Trigger the creation of a repayment\n*PlaidApi* | [**SandboxTransferSimulate**](docs/PlaidApi.md#sandboxtransfersimulate) | **POST** /sandbox/transfer/simulate | Simulate a transfer event in Sandbox\n*PlaidApi* | [**SandboxTransferSweepSimulate**](docs/PlaidApi.md#sandboxtransfersweepsimulate) | **POST** /sandbox/transfer/sweep/simulate | Simulate creating a sweep\n*PlaidApi* | [**SignalDecisionReport**](docs/PlaidApi.md#signaldecisionreport) | **POST** /signal/decision/report | Report whether you initiated an ACH transaction\n*PlaidApi* | [**SignalEvaluate**](docs/PlaidApi.md#signalevaluate) | **POST** /signal/evaluate | Evaluate a planned ACH transaction\n*PlaidApi* | [**SignalReturnReport**](docs/PlaidApi.md#signalreturnreport) | **POST** /signal/return/report | Report a return for an ACH transaction\n*PlaidApi* | [**TransactionsGet**](docs/PlaidApi.md#transactionsget) | **POST** /transactions/get | Get transaction data\n*PlaidApi* | [**TransactionsRecurringGet**](docs/PlaidApi.md#transactionsrecurringget) | **POST** /transactions/recurring/get | Get streams of recurring transactions\n*PlaidApi* | [**TransactionsRefresh**](docs/PlaidApi.md#transactionsrefresh) | **POST** /transactions/refresh | Refresh transaction data\n*PlaidApi* | [**TransactionsSync**](docs/PlaidApi.md#transactionssync) | **POST** /transactions/sync | Get incremental transaction updates on an Item\n*PlaidApi* | [**TransferAuthorizationCreate**](docs/PlaidApi.md#transferauthorizationcreate) | **POST** /transfer/authorization/create | Create a transfer authorization\n*PlaidApi* | [**TransferCancel**](docs/PlaidApi.md#transfercancel) | **POST** /transfer/cancel | Cancel a transfer\n*PlaidApi* | [**TransferCreate**](docs/PlaidApi.md#transfercreate) | **POST** /transfer/create | Create a transfer\n*PlaidApi* | [**TransferEventList**](docs/PlaidApi.md#transfereventlist) | **POST** /transfer/event/list | List transfer events\n*PlaidApi* | [**TransferEventSync**](docs/PlaidApi.md#transfereventsync) | **POST** /transfer/event/sync | Sync transfer events\n*PlaidApi* | [**TransferGet**](docs/PlaidApi.md#transferget) | **POST** /transfer/get | Retrieve a transfer\n*PlaidApi* | [**TransferIntentCreate**](docs/PlaidApi.md#transferintentcreate) | **POST** /transfer/intent/create | Create a transfer intent object to invoke the Transfer UI\n*PlaidApi* | [**TransferIntentGet**](docs/PlaidApi.md#transferintentget) | **POST** /transfer/intent/get | Retrieve more information about a transfer intent\n*PlaidApi* | [**TransferList**](docs/PlaidApi.md#transferlist) | **POST** /transfer/list | List transfers\n*PlaidApi* | [**TransferRepaymentList**](docs/PlaidApi.md#transferrepaymentlist) | **POST** /transfer/repayment/list | Lists historical repayments\n*PlaidApi* | [**TransferRepaymentReturnList**](docs/PlaidApi.md#transferrepaymentreturnlist) | **POST** /transfer/repayment/return/list | List the returns included in a repayment\n*PlaidApi* | [**TransferSweepGet**](docs/PlaidApi.md#transfersweepget) | **POST** /transfer/sweep/get | Retrieve a sweep\n*PlaidApi* | [**TransferSweepList**](docs/PlaidApi.md#transfersweeplist) | **POST** /transfer/sweep/list | List sweeps\n*PlaidApi* | [**WalletGet**](docs/PlaidApi.md#walletget) | **POST** /wallet/get | Fetch an e-wallet\n*PlaidApi* | [**WalletTransactionExecute**](docs/PlaidApi.md#wallettransactionexecute) | **POST** /wallet/transaction/execute | Execute a transaction using an e-wallet\n*PlaidApi* | [**WalletTransactionsList**](docs/PlaidApi.md#wallettransactionslist) | **POST** /wallet/transactions/list | List e-wallet transactions\n*PlaidApi* | [**WebhookVerificationKeyGet**](docs/PlaidApi.md#webhookverificationkeyget) | **POST** /webhook_verification_key/get | Get webhook verification key\n\n\n\u003ca name=\"documentation-for-models\"\u003e\u003c/a\u003e\n## Documentation for Models\n\n - [Model.ACHClass](docs/ACHClass.md)\n - [Model.APR](docs/APR.md)\n - [Model.AccountAccess](docs/AccountAccess.md)\n - [Model.AccountAssets](docs/AccountAssets.md)\n - [Model.AccountAssetsAllOf](docs/AccountAssetsAllOf.md)\n - [Model.AccountBalance](docs/AccountBalance.md)\n - [Model.AccountBase](docs/AccountBase.md)\n - [Model.AccountFilter](docs/AccountFilter.md)\n - [Model.AccountFiltersResponse](docs/AccountFiltersResponse.md)\n - [Model.AccountIdentity](docs/AccountIdentity.md)\n - [Model.AccountIdentityAllOf](docs/AccountIdentityAllOf.md)\n - [Model.AccountProductAccess](docs/AccountProductAccess.md)\n - [Model.AccountProductAccessNullable](docs/AccountProductAccessNullable.md)\n - [Model.AccountSelectionCardinality](docs/AccountSelectionCardinality.md)\n - [Model.AccountSubtype](docs/AccountSubtype.md)\n - [Model.AccountType](docs/AccountType.md)\n - [Model.AccountsBalanceGetRequest](docs/AccountsBalanceGetRequest.md)\n - [Model.AccountsBalanceGetRequestOptions](docs/AccountsBalanceGetRequestOptions.md)\n - [Model.AccountsGetRequest](docs/AccountsGetRequest.md)\n - [Model.AccountsGetRequestOptions](docs/AccountsGetRequestOptions.md)\n - [Model.AccountsGetResponse](docs/AccountsGetResponse.md)\n - [Model.Address](docs/Address.md)\n - [Model.AddressData](docs/AddressData.md)\n - [Model.AddressDataNullable](docs/AddressDataNullable.md)\n - [Model.AddressNullable](docs/AddressNullable.md)\n - [Model.Application](docs/Application.md)\n - [Model.ApplicationGetRequest](docs/ApplicationGetRequest.md)\n - [Model.ApplicationGetResponse](docs/ApplicationGetResponse.md)\n - [Model.AssetReport](docs/AssetReport.md)\n - [Model.AssetReportAuditCopyCreateRequest](docs/AssetReportAuditCopyCreateRequest.md)\n - [Model.AssetReportAuditCopyCreateResponse](docs/AssetReportAuditCopyCreateResponse.md)\n - [Model.AssetReportAuditCopyGetRequest](docs/AssetReportAuditCopyGetRequest.md)\n - [Model.AssetReportAuditCopyRemoveRequest](docs/AssetReportAuditCopyRemoveRequest.md)\n - [Model.AssetReportAuditCopyRemoveResponse](docs/AssetReportAuditCopyRemoveResponse.md)\n - [Model.AssetReportCreateRequest](docs/AssetReportCreateRequest.md)\n - [Model.AssetReportCreateRequestOptions](docs/AssetReportCreateRequestOptions.md)\n - [Model.AssetReportCreateResponse](docs/AssetReportCreateResponse.md)\n - [Model.AssetReportFilterRequest](docs/AssetReportFilterRequest.md)\n - [Model.AssetReportFilterResponse](docs/AssetReportFilterResponse.md)\n - [Model.AssetReportGetRequest](docs/AssetReportGetRequest.md)\n - [Model.AssetReportGetResponse](docs/AssetReportGetResponse.md)\n - [Model.AssetReportItem](docs/AssetReportItem.md)\n - [Model.AssetReportPDFGetRequest](docs/AssetReportPDFGetRequest.md)\n - [Model.AssetReportRefreshRequest](docs/AssetReportRefreshRequest.md)\n - [Model.AssetReportRefreshRequestOptions](docs/AssetReportRefreshRequestOptions.md)\n - [Model.AssetReportRefreshResponse](docs/AssetReportRefreshResponse.md)\n - [Model.AssetReportRemoveRequest](docs/AssetReportRemoveRequest.md)\n - [Model.AssetReportRemoveResponse](docs/AssetReportRemoveResponse.md)\n - [Model.AssetReportTransaction](docs/AssetReportTransaction.md)\n - [Model.AssetReportTransactionAllOf](docs/AssetReportTransactionAllOf.md)\n - [Model.AssetReportUser](docs/AssetReportUser.md)\n - [Model.AssetsErrorWebhook](docs/AssetsErrorWebhook.md)\n - [Model.AssetsProductReadyWebhook](docs/AssetsProductReadyWebhook.md)\n - [Model.AuthGetNumbers](docs/AuthGetNumbers.md)\n - [Model.AuthGetRequest](docs/AuthGetRequest.md)\n - [Model.AuthGetRequestOptions](docs/AuthGetRequestOptions.md)\n - [Model.AuthGetResponse](docs/AuthGetResponse.md)\n - [Model.AuthMetadata](docs/AuthMetadata.md)\n - [Model.AuthSupportedMethods](docs/AuthSupportedMethods.md)\n - [Model.AutomaticallyVerifiedWebhook](docs/AutomaticallyVerifiedWebhook.md)\n - [Model.BankInitiatedReturnRisk](docs/BankInitiatedReturnRisk.md)\n - [Model.BankTransfer](docs/BankTransfer.md)\n - [Model.BankTransferBalance](docs/BankTransferBalance.md)\n - [Model.BankTransferBalanceGetRequest](docs/BankTransferBalanceGetRequest.md)\n - [Model.BankTransferBalanceGetResponse](docs/BankTransferBalanceGetResponse.md)\n - [Model.BankTransferCancelRequest](docs/BankTransferCancelRequest.md)\n - [Model.BankTransferCancelResponse](docs/BankTransferCancelResponse.md)\n - [Model.BankTransferCreateRequest](docs/BankTransferCreateRequest.md)\n - [Model.BankTransferCreateResponse](docs/BankTransferCreateResponse.md)\n - [Model.BankTransferDirection](docs/BankTransferDirection.md)\n - [Model.BankTransferEvent](docs/BankTransferEvent.md)\n - [Model.BankTransferEventListRequest](docs/BankTransferEventListRequest.md)\n - [Model.BankTransferEventListResponse](docs/BankTransferEventListResponse.md)\n - [Model.BankTransferEventSyncRequest](docs/BankTransferEventSyncRequest.md)\n - [Model.BankTransferEventSyncResponse](docs/BankTransferEventSyncResponse.md)\n - [Model.BankTransferEventType](docs/BankTransferEventType.md)\n - [Model.BankTransferFailure](docs/BankTransferFailure.md)\n - [Model.BankTransferGetRequest](docs/BankTransferGetRequest.md)\n - [Model.BankTransferGetResponse](docs/BankTransferGetResponse.md)\n - [Model.BankTransferListRequest](docs/BankTransferListRequest.md)\n - [Model.BankTransferListResponse](docs/BankTransferListResponse.md)\n - [Model.BankTransferMigrateAccountRequest](docs/BankTransferMigrateAccountRequest.md)\n - [Model.BankTransferMigrateAccountResponse](docs/BankTransferMigrateAccountResponse.md)\n - [Model.BankTransferNetwork](docs/BankTransferNetwork.md)\n - [Model.BankTransferStatus](docs/BankTransferStatus.md)\n - [Model.BankTransferSweep](docs/BankTransferSweep.md)\n - [Model.BankTransferSweepGetRequest](docs/BankTransferSweepGetRequest.md)\n - [Model.BankTransferSweepGetResponse](docs/BankTransferSweepGetResponse.md)\n - [Model.BankTransferSweepListRequest](docs/BankTransferSweepListRequest.md)\n - [Model.BankTransferSweepListResponse](docs/BankTransferSweepListResponse.md)\n - [Model.BankTransferType](docs/BankTransferType.md)\n - [Model.BankTransferUser](docs/BankTransferUser.md)\n - [Model.BankTransfersEventsUpdateWebhook](docs/BankTransfersEventsUpdateWebhook.md)\n - [Model.CategoriesGetResponse](docs/CategoriesGetResponse.md)\n - [Model.Category](docs/Category.md)\n - [Model.Cause](docs/Cause.md)\n - [Model.ConnectedApplication](docs/ConnectedApplication.md)\n - [Model.CountryCode](docs/CountryCode.md)\n - [Model.CreditAccountSubtype](docs/CreditAccountSubtype.md)\n - [Model.CreditCardLiability](docs/CreditCardLiability.md)\n - [Model.CreditFilter](docs/CreditFilter.md)\n - [Model.CustomerInitiatedReturnRisk](docs/CustomerInitiatedReturnRisk.md)\n - [Model.Deductions](docs/Deductions.md)\n - [Model.DeductionsBreakdown](docs/DeductionsBreakdown.md)\n - [Model.DeductionsTotal](docs/DeductionsTotal.md)\n - [Model.DefaultUpdateWebhook](docs/DefaultUpdateWebhook.md)\n - [Model.DepositSwitchAddressData](docs/DepositSwitchAddressData.md)\n - [Model.DepositSwitchAltCreateRequest](docs/DepositSwitchAltCreateRequest.md)\n - [Model.DepositSwitchAltCreateResponse](docs/DepositSwitchAltCreateResponse.md)\n - [Model.DepositSwitchCreateRequest](docs/DepositSwitchCreateRequest.md)\n - [Model.DepositSwitchCreateRequestOptions](docs/DepositSwitchCreateRequestOptions.md)\n - [Model.DepositSwitchCreateResponse](docs/DepositSwitchCreateResponse.md)\n - [Model.DepositSwitchGetRequest](docs/DepositSwitchGetRequest.md)\n - [Model.DepositSwitchGetResponse](docs/DepositSwitchGetResponse.md)\n - [Model.DepositSwitchStateUpdateWebhook](docs/DepositSwitchStateUpdateWebhook.md)\n - [Model.DepositSwitchTargetAccount](docs/DepositSwitchTargetAccount.md)\n - [Model.DepositSwitchTargetUser](docs/DepositSwitchTargetUser.md)\n - [Model.DepositSwitchTokenCreateRequest](docs/DepositSwitchTokenCreateRequest.md)\n - [Model.DepositSwitchTokenCreateResponse](docs/DepositSwitchTokenCreateResponse.md)\n - [Model.DepositoryAccountSubtype](docs/DepositoryAccountSubtype.md)\n - [Model.DepositoryFilter](docs/DepositoryFilter.md)\n - [Model.DistributionBreakdown](docs/DistributionBreakdown.md)\n - [Model.DocType](docs/DocType.md)\n - [Model.DocumentMetadata](docs/DocumentMetadata.md)\n - [Model.Earnings](docs/Earnings.md)\n - [Model.EarningsBreakdown](docs/EarningsBreakdown.md)\n - [Model.EarningsBreakdownCanonicalDescription](docs/EarningsBreakdownCanonicalDescription.md)\n - [Model.EarningsTotal](docs/EarningsTotal.md)\n - [Model.Email](docs/Email.md)\n - [Model.Employee](docs/Employee.md)\n - [Model.EmployeeIncomeSummaryFieldString](docs/EmployeeIncomeSummaryFieldString.md)\n - [Model.Employer](docs/Employer.md)\n - [Model.EmployerIncomeSummaryFieldString](docs/EmployerIncomeSummaryFieldString.md)\n - [Model.EmployerVerification](docs/EmployerVerification.md)\n - [Model.EmployersSearchRequest](docs/EmployersSearchRequest.md)\n - [Model.EmployersSearchResponse](docs/EmployersSearchResponse.md)\n - [Model.EmploymentDetails](docs/EmploymentDetails.md)\n - [Model.EmploymentVerification](docs/EmploymentVerification.md)\n - [Model.EmploymentVerificationGetRequest](docs/EmploymentVerificationGetRequest.md)\n - [Model.EmploymentVerificationGetResponse](docs/EmploymentVerificationGetResponse.md)\n - [Model.EmploymentVerificationStatus](docs/EmploymentVerificationStatus.md)\n - [Model.Error](docs/Error.md)\n - [Model.ExternalPaymentOptions](docs/ExternalPaymentOptions.md)\n - [Model.ExternalPaymentRefundDetails](docs/ExternalPaymentRefundDetails.md)\n - [Model.ExternalPaymentScheduleBase](docs/ExternalPaymentScheduleBase.md)\n - [Model.ExternalPaymentScheduleGet](docs/ExternalPaymentScheduleGet.md)\n - [Model.ExternalPaymentScheduleRequest](docs/ExternalPaymentScheduleRequest.md)\n - [Model.HealthIncident](docs/HealthIncident.md)\n - [Model.HistoricalBalance](docs/HistoricalBalance.md)\n - [Model.HistoricalUpdateWebhook](docs/HistoricalUpdateWebhook.md)\n - [Model.Holding](docs/Holding.md)\n - [Model.HoldingsDefaultUpdateWebhook](docs/HoldingsDefaultUpdateWebhook.md)\n - [Model.HoldingsOverride](docs/HoldingsOverride.md)\n - [Model.IdentityGetRequest](docs/IdentityGetRequest.md)\n - [Model.IdentityGetRequestOptions](docs/IdentityGetRequestOptions.md)\n - [Model.IdentityGetResponse](docs/IdentityGetResponse.md)\n - [Model.IncidentUpdate](docs/IncidentUpdate.md)\n - [Model.IncomeBreakdown](docs/IncomeBreakdown.md)\n - [Model.IncomeBreakdownType](docs/IncomeBreakdownType.md)\n - [Model.IncomeOverride](docs/IncomeOverride.md)\n - [Model.IncomeSummary](docs/IncomeSummary.md)\n - [Model.IncomeSummaryFieldNumber](docs/IncomeSummaryFieldNumber.md)\n - [Model.IncomeSummaryFieldString](docs/IncomeSummaryFieldString.md)\n - [Model.IncomeVerificationCreateRequest](docs/IncomeVerificationCreateRequest.md)\n - [Model.IncomeVerificationCreateRequestOptions](docs/IncomeVerificationCreateRequestOptions.md)\n - [Model.IncomeVerificationCreateResponse](docs/IncomeVerificationCreateResponse.md)\n - [Model.IncomeVerificationDocumentsDownloadRequest](docs/IncomeVerificationDocumentsDownloadRequest.md)\n - [Model.IncomeVerificationPaystubGetRequest](docs/IncomeVerificationPaystubGetRequest.md)\n - [Model.IncomeVerificationPaystubGetResponse](docs/IncomeVerificationPaystubGetResponse.md)\n - [Model.IncomeVerificationPaystubsGetRequest](docs/IncomeVerificationPaystubsGetRequest.md)\n - [Model.IncomeVerificationPaystubsGetResponse](docs/IncomeVerificationPaystubsGetResponse.md)\n - [Model.IncomeVerificationPrecheckConfidence](docs/IncomeVerificationPrecheckConfidence.md)\n - [Model.IncomeVerificationPrecheckEmployer](docs/IncomeVerificationPrecheckEmployer.md)\n - [Model.IncomeVerificationPrecheckEmployerAddress](docs/IncomeVerificationPrecheckEmployerAddress.md)\n - [Model.IncomeVerificationPrecheckEmployerAddressData](docs/IncomeVerificationPrecheckEmployerAddressData.md)\n - [Model.IncomeVerificationPrecheckMilitaryInfo](docs/IncomeVerificationPrecheckMilitaryInfo.md)\n - [Model.IncomeVerificationPrecheckRequest](docs/IncomeVerificationPrecheckRequest.md)\n - [Model.IncomeVerificationPrecheckResponse](docs/IncomeVerificationPrecheckResponse.md)\n - [Model.IncomeVerificationPrecheckUser](docs/IncomeVerificationPrecheckUser.md)\n - [Model.IncomeVerificationRefreshRequest](docs/IncomeVerificationRefreshRequest.md)\n - [Model.IncomeVerificationRefreshResponse](docs/IncomeVerificationRefreshResponse.md)\n - [Model.IncomeVerificationStatusWebhook](docs/IncomeVerificationStatusWebhook.md)\n - [Model.IncomeVerificationSummaryGetRequest](docs/IncomeVerificationSummaryGetRequest.md)\n - [Model.IncomeVerificationSummaryGetResponse](docs/IncomeVerificationSummaryGetResponse.md)\n - [Model.IncomeVerificationTaxformsGetRequest](docs/IncomeVerificationTaxformsGetRequest.md)\n - [Model.IncomeVerificationTaxformsGetResponse](docs/IncomeVerificationTaxformsGetResponse.md)\n - [Model.IncomeVerificationWebhookStatus](docs/IncomeVerificationWebhookStatus.md)\n - [Model.InflowModel](docs/InflowModel.md)\n - [Model.InitialUpdateWebhook](docs/InitialUpdateWebhook.md)\n - [Model.Institution](docs/Institution.md)\n - [Model.InstitutionStatus](docs/InstitutionStatus.md)\n - [Model.InstitutionsGetByIdRequest](docs/InstitutionsGetByIdRequest.md)\n - [Model.InstitutionsGetByIdRequestOptions](docs/InstitutionsGetByIdRequestOptions.md)\n - [Model.InstitutionsGetByIdResponse](docs/InstitutionsGetByIdResponse.md)\n - [Model.InstitutionsGetRequest](docs/InstitutionsGetRequest.md)\n - [Model.InstitutionsGetRequestOptions](docs/InstitutionsGetRequestOptions.md)\n - [Model.InstitutionsGetResponse](docs/InstitutionsGetResponse.md)\n - [Model.InstitutionsSearchAccountFilter](docs/InstitutionsSearchAccountFilter.md)\n - [Model.InstitutionsSearchPaymentInitiationOptions](docs/InstitutionsSearchPaymentInitiationOptions.md)\n - [Model.InstitutionsSearchRequest](docs/InstitutionsSearchRequest.md)\n - [Model.InstitutionsSearchRequestOptions](docs/InstitutionsSearchRequestOptions.md)\n - [Model.InstitutionsSearchResponse](docs/InstitutionsSearchResponse.md)\n - [Model.InvestmentAccountSubtype](docs/InvestmentAccountSubtype.md)\n - [Model.InvestmentFilter](docs/InvestmentFilter.md)\n - [Model.InvestmentHoldingsGetRequestOptions](docs/InvestmentHoldingsGetRequestOptions.md)\n - [Model.InvestmentTransaction](docs/InvestmentTransaction.md)\n - [Model.InvestmentsDefaultUpdateWebhook](docs/InvestmentsDefaultUpdateWebhook.md)\n - [Model.InvestmentsHoldingsGetRequest](docs/InvestmentsHoldingsGetRequest.md)\n - [Model.InvestmentsHoldingsGetResponse](docs/InvestmentsHoldingsGetResponse.md)\n - [Model.InvestmentsTransactionsGetRequest](docs/InvestmentsTransactionsGetRequest.md)\n - [Model.InvestmentsTransactionsGetRequestOptions](docs/InvestmentsTransactionsGetRequestOptions.md)\n - [Model.InvestmentsTransactionsGetResponse](docs/InvestmentsTransactionsGetResponse.md)\n - [Model.InvestmentsTransactionsOverride](docs/InvestmentsTransactionsOverride.md)\n - [Model.Item](docs/Item.md)\n - [Model.ItemAccessTokenInvalidateRequest](docs/ItemAccessTokenInvalidateRequest.md)\n - [Model.ItemAccessTokenInvalidateResponse](docs/ItemAccessTokenInvalidateResponse.md)\n - [Model.ItemApplicationListRequest](docs/ItemApplicationListRequest.md)\n - [Model.ItemApplicationListResponse](docs/ItemApplicationListResponse.md)\n - [Model.ItemApplicationListUserAuth](docs/ItemApplicationListUserAuth.md)\n - [Model.ItemApplicationScopesUpdateRequest](docs/ItemApplicationScopesUpdateRequest.md)\n - [Model.ItemApplicationScopesUpdateResponse](docs/ItemApplicationScopesUpdateResponse.md)\n - [Model.ItemErrorWebhook](docs/ItemErrorWebhook.md)\n - [Model.ItemGetRequest](docs/ItemGetRequest.md)\n - [Model.ItemGetResponse](docs/ItemGetResponse.md)\n - [Model.ItemImportRequest](docs/ItemImportRequest.md)\n - [Model.ItemImportRequestOptions](docs/ItemImportRequestOptions.md)\n - [Model.ItemImportRequestUserAuth](docs/ItemImportRequestUserAuth.md)\n - [Model.ItemImportResponse](docs/ItemImportResponse.md)\n - [Model.ItemProductReadyWebhook](docs/ItemProductReadyWebhook.md)\n - [Model.ItemPublicTokenCreateRequest](docs/ItemPublicTokenCreateRequest.md)\n - [Model.ItemPublicTokenCreateResponse](docs/ItemPublicTokenCreateResponse.md)\n - [Model.ItemPublicTokenExchangeRequest](docs/ItemPublicTokenExchangeRequest.md)\n - [Model.ItemPublicTokenExchangeResponse](docs/ItemPublicTokenExchangeResponse.md)\n - [Model.ItemRemoveRequest](docs/ItemRemoveRequest.md)\n - [Model.ItemRemoveResponse](docs/ItemRemoveResponse.md)\n - [Model.ItemStatus](docs/ItemStatus.md)\n - [Model.ItemStatusInvestments](docs/ItemStatusInvestments.md)\n - [Model.ItemStatusLastWebhook](docs/ItemStatusLastWebhook.md)\n - [Model.ItemStatusNullable](docs/ItemStatusNullable.md)\n - [Model.ItemStatusTransactions](docs/ItemStatusTransactions.md)\n - [Model.ItemWebhookUpdateRequest](docs/ItemWebhookUpdateRequest.md)\n - [Model.ItemWebhookUpdateResponse](docs/ItemWebhookUpdateResponse.md)\n - [Model.JWKPublicKey](docs/JWKPublicKey.md)\n - [Model.JWTHeader](docs/JWTHeader.md)\n - [Model.LiabilitiesDefaultUpdateWebhook](docs/LiabilitiesDefaultUpdateWebhook.md)\n - [Model.LiabilitiesGetRequest](docs/LiabilitiesGetRequest.md)\n - [Model.LiabilitiesGetRequestOptions](docs/LiabilitiesGetRequestOptions.md)\n - [Model.LiabilitiesGetResponse](docs/LiabilitiesGetResponse.md)\n - [Model.LiabilitiesObject](docs/LiabilitiesObject.md)\n - [Model.LiabilityOverride](docs/LiabilityOverride.md)\n - [Model.LinkTokenAccountFilters](docs/LinkTokenAccountFilters.md)\n - [Model.LinkTokenCreateCreditFilter](docs/LinkTokenCreateCreditFilter.md)\n - [Model.LinkTokenCreateDepositoryFilter](docs/LinkTokenCreateDepositoryFilter.md)\n - [Model.LinkTokenCreateInvestmentFilter](docs/LinkTokenCreateInvestmentFilter.md)\n - [Model.LinkTokenCreateLoanFilter](docs/LinkTokenCreateLoanFilter.md)\n - [Model.LinkTokenCreateRequest](docs/LinkTokenCreateRequest.md)\n - [Model.LinkTokenCreateRequestAccountSubtypes](docs/LinkTokenCreateRequestAccountSubtypes.md)\n - [Model.LinkTokenCreateRequestAuth](docs/LinkTokenCreateRequestAuth.md)\n - [Model.LinkTokenCreateRequestDepositSwitch](docs/LinkTokenCreateRequestDepositSwitch.md)\n - [Model.LinkTokenCreateRequestIncomeVerification](docs/LinkTokenCreateRequestIncomeVerification.md)\n - [Model.LinkTokenCreateRequestPaymentInitiation](docs/LinkTokenCreateRequestPaymentInitiation.md)\n - [Model.LinkTokenCreateRequestTransfer](docs/LinkTokenCreateRequestTransfer.md)\n - [Model.LinkTokenCreateRequestUpdate](docs/LinkTokenCreateRequestUpdate.md)\n - [Model.LinkTokenCreateRequestUser](docs/LinkTokenCreateRequestUser.md)\n - [Model.LinkTokenCreateResponse](docs/LinkTokenCreateResponse.md)\n - [Model.LinkTokenEUConfig](docs/LinkTokenEUConfig.md)\n - [Model.LinkTokenGetMetadataResponse](docs/LinkTokenGetMetadataResponse.md)\n - [Model.LinkTokenGetRequest](docs/LinkTokenGetRequest.md)\n - [Model.LinkTokenGetResponse](docs/LinkTokenGetResponse.md)\n - [Model.LoanAccountSubtype](docs/LoanAccountSubtype.md)\n - [Model.LoanFilter](docs/LoanFilter.md)\n - [Model.Location](docs/Location.md)\n - [Model.MFA](docs/MFA.md)\n - [Model.Meta](docs/Meta.md)\n - [Model.MortgageInterestRate](docs/MortgageInterestRate.md)\n - [Model.MortgageLiability](docs/MortgageLiability.md)\n - [Model.MortgagePropertyAddress](docs/MortgagePropertyAddress.md)\n - [Model.NetPay](docs/NetPay.md)\n - [Model.NewAccountsAvailableWebhook](docs/NewAccountsAvailableWebhook.md)\n - [Model.Numbers](docs/Numbers.md)\n - [Model.NumbersACH](docs/NumbersACH.md)\n - [Model.NumbersACHNullable](docs/NumbersACHNullable.md)\n - [Model.NumbersBACS](docs/NumbersBACS.md)\n - [Model.NumbersBACSNullable](docs/NumbersBACSNullable.md)\n - [Model.NumbersEFT](docs/NumbersEFT.md)\n - [Model.NumbersEFTNullable](docs/NumbersEFTNullable.md)\n - [Model.NumbersInternational](docs/NumbersInternational.md)\n - [Model.NumbersInternationalNullable](docs/NumbersInternationalNullable.md)\n - [Model.OverrideAccountType](docs/OverrideAccountType.md)\n - [Model.OverrideAccounts](docs/OverrideAccounts.md)\n - [Model.Owner](docs/Owner.md)\n - [Model.OwnerOverride](docs/OwnerOverride.md)\n - [Model.PSLFStatus](docs/PSLFStatus.md)\n - [Model.Pay](docs/Pay.md)\n - [Model.PayFrequency](docs/PayFrequency.md)\n - [Model.PayFrequencyValue](docs/PayFrequencyValue.md)\n - [Model.PayPeriodDetails](docs/PayPeriodDetails.md)\n - [Model.PaymentAmount](docs/PaymentAmount.md)\n - [Model.PaymentInitiationAddress](docs/PaymentInitiationAddress.md)\n - [Model.PaymentInitiationMetadata](docs/PaymentInitiationMetadata.md)\n - [Model.PaymentInitiationOptionalRestrictionBacs](docs/PaymentInitiationOptionalRestrictionBacs.md)\n - [Model.PaymentInitiationPayment](docs/PaymentInitiationPayment.md)\n - [Model.PaymentInitiationPaymentCreateRequest](docs/PaymentInitiationPaymentCreateRequest.md)\n - [Model.PaymentInitiationPaymentCreateResponse](docs/PaymentInitiationPaymentCreateResponse.md)\n - [Model.PaymentInitiationPaymentGetRequest](docs/PaymentInitiationPaymentGetRequest.md)\n - [Model.PaymentInitiationPaymentGetResponse](docs/PaymentInitiationPaymentGetResponse.md)\n - [Model.PaymentInitiationPaymentListRequest](docs/PaymentInitiationPaymentListRequest.md)\n - [Model.PaymentInitiationPaymentListResponse](docs/PaymentInitiationPaymentListResponse.md)\n - [Model.PaymentInitiationPaymentReverseRequest](docs/PaymentInitiationPaymentReverseRequest.md)\n - [Model.PaymentInitiationPaymentReverseResponse](docs/PaymentInitiationPaymentReverseResponse.md)\n - [Model.PaymentInitiationPaymentStatus](docs/PaymentInitiationPaymentStatus.md)\n - [Model.PaymentInitiationPaymentTokenCreateRequest](docs/PaymentInitiationPaymentTokenCreateRequest.md)\n - [Model.PaymentInitiationPaymentTokenCreateResponse](docs/PaymentInitiationPaymentTokenCreateResponse.md)\n - [Model.PaymentInitiationRecipient](docs/PaymentInitiationRecipient.md)\n - [Model.PaymentInitiationRecipientCreateRequest](docs/PaymentInitiationRecipientCreateRequest.md)\n - [Model.PaymentInitiationRecipientCreateResponse](docs/PaymentInitiationRecipientCreateResponse.md)\n - [Model.PaymentInitiationRecipientGetRequest](docs/PaymentInitiationRecipientGetRequest.md)\n - [Model.PaymentInitiationRecipientGetResponse](docs/PaymentInitiationRecipientGetResponse.md)\n - [Model.PaymentInitiationRecipientGetResponseAllOf](docs/PaymentInitiationRecipientGetResponseAllOf.md)\n - [Model.PaymentInitiationRecipientListRequest](docs/PaymentInitiationRecipientListRequest.md)\n - [Model.PaymentInitiationRecipientListResponse](docs/PaymentInitiationRecipientListResponse.md)\n - [Model.PaymentInitiationRefund](docs/PaymentInitiationRefund.md)\n - [Model.PaymentInitiationStandingOrderMetadata](docs/PaymentInitiationStandingOrderMetadata.md)\n - [Model.PaymentMeta](docs/PaymentMeta.md)\n - [Model.PaymentScheduleInterval](docs/PaymentScheduleInterval.md)\n - [Model.PaymentScheme](docs/PaymentScheme.md)\n - [Model.PaymentStatusUpdateWebhook](docs/PaymentStatusUpdateWebhook.md)\n - [Model.Paystub](docs/Paystub.md)\n - [Model.PaystubAddress](docs/PaystubAddress.md)\n - [Model.PaystubDeduction](docs/PaystubDeduction.md)\n - [Model.PaystubDetails](docs/PaystubDetails.md)\n - [Model.PaystubEmployer](docs/PaystubEmployer.md)\n - [Model.PaystubOverride](docs/PaystubOverride.md)\n - [Model.PaystubOverrideEmployee](docs/PaystubOverrideEmployee.md)\n - [Model.PaystubOverrideEmployeeAddress](docs/PaystubOverrideEmployeeAddress.md)\n - [Model.PaystubOverrideEmployer](docs/PaystubOverrideEmployer.md)\n - [Model.PaystubPayFrequency](docs/PaystubPayFrequency.md)\n - [Model.PaystubVerification](docs/PaystubVerification.md)\n - [Model.PaystubVerificationStatus](docs/PaystubVerificationStatus.md)\n - [Model.PaystubYTDDetails](docs/PaystubYTDDetails.md)\n - [Model.PendingExpirationWebhook](docs/PendingExpirationWebhook.md)\n - [Model.PersonalFinanceCategory](docs/PersonalFinanceCategory.md)\n - [Model.PhoneNumber](docs/PhoneNumber.md)\n - [Model.PlaidError](docs/PlaidError.md)\n - [Model.PlatformIds](docs/PlatformIds.md)\n - [Model.ProcessorApexProcessorTokenCreateRequest](docs/ProcessorApexProcessorTokenCreateRequest.md)\n - [Model.ProcessorAuthGetRequest](docs/ProcessorAuthGetRequest.md)\n - [Model.ProcessorAuthGetResponse](docs/ProcessorAuthGetResponse.md)\n - [Model.ProcessorBalanceGetRequest](docs/ProcessorBalanceGetRequest.md)\n - [Model.ProcessorBalanceGetRequestOptions](docs/ProcessorBalanceGetRequestOptions.md)\n - [Model.ProcessorBalanceGetResponse](docs/ProcessorBalanceGetResponse.md)\n - [Model.ProcessorBankTransferCreateRequest](docs/ProcessorBankTransferCreateRequest.md)\n - [Model.ProcessorBankTransferCreateResponse](docs/ProcessorBankTransferCreateResponse.md)\n - [Model.ProcessorIdentityGetRequest](docs/ProcessorIdentityGetRequest.md)\n - [Model.ProcessorIdentityGetResponse](docs/ProcessorIdentityGetResponse.md)\n - [Model.ProcessorNumber](docs/ProcessorNumber.md)\n - [Model.ProcessorStripeBankAccountTokenCreateRequest](docs/ProcessorStripeBankAccountTokenCreateRequest.md)\n - [Model.ProcessorStripeBankAccountTokenCreateResponse](docs/ProcessorStripeBankAccountTokenCreateResponse.md)\n - [Model.ProcessorTokenCreateRequest](docs/ProcessorTokenCreateRequest.md)\n - [Model.ProcessorTokenCreateResponse](docs/ProcessorTokenCreateResponse.md)\n - [Model.ProductAccess](docs/ProductAccess.md)\n - [Model.ProductStatus](docs/ProductStatus.md)\n - [Model.ProductStatusBreakdown](docs/ProductStatusBreakdown.md)\n - [Model.Products](docs/Products.md)\n - [Model.ProjectedIncomeSummaryFieldNumber](docs/ProjectedIncomeSummaryFieldNumber.md)\n - [Model.RecaptchaRequiredError](docs/RecaptchaRequiredError.md)\n - [Model.RecipientBACS](docs/RecipientBACS.md)\n - [Model.RecipientBACSNullable](docs/RecipientBACSNullable.md)\n - [Model.RecurringTransactionFrequency](docs/RecurringTransactionFrequency.md)\n - [Model.RemovedTransaction](docs/RemovedTransaction.md)\n - [Model.RequestedScopes](docs/RequestedScopes.md)\n - [Model.SandboxBankTransferFireWebhookRequest](docs/SandboxBankTransferFireWebhookRequest.md)\n - [Model.SandboxBankTransferFireWebhookResponse](docs/SandboxBankTransferFireWebhookResponse.md)\n - [Model.SandboxBankTransferSimulateRequest](docs/SandboxBankTransferSimulateRequest.md)\n - [Model.SandboxBankTransferSimulateResponse](docs/SandboxBankTransferSimulateResponse.md)\n - [Model.SandboxIncomeFireWebhookRequest](docs/SandboxIncomeFireWebhookRequest.md)\n - [Model.SandboxIncomeFireWebhookResponse](docs/SandboxIncomeFireWebhookResponse.md)\n - [Model.SandboxItemFireWebhookRequest](docs/SandboxItemFireWebhookRequest.md)\n - [Model.SandboxItemFireWebhookResponse](docs/SandboxItemFireWebhookResponse.md)\n - [Model.SandboxItemResetLoginRequest](docs/SandboxItemResetLoginRequest.md)\n - [Model.SandboxItemResetLoginResponse](docs/SandboxItemResetLoginResponse.md)\n - [Model.SandboxItemSetVerificationStatusRequest](docs/SandboxItemSetVerificationStatusRequest.md)\n - [Model.SandboxItemSetVerificationStatusResponse](docs/SandboxItemSetVerificationStatusResponse.md)\n - [Model.SandboxOauthSelectAccountsRequest](docs/SandboxOauthSelectAccountsRequest.md)\n - [Model.SandboxProcessorTokenCreateRequest](docs/SandboxProcessorTokenCreateRequest.md)\n - [Model.SandboxProcessorTokenCreateRequestOptions](docs/SandboxProcessorTokenCreateRequestOptions.md)\n - [Model.SandboxProcessorTokenCreateResponse](docs/SandboxProcessorTokenCreateResponse.md)\n - [Model.SandboxPublicTokenCreateRequest](docs/SandboxPublicTokenCreateRequest.md)\n - [Model.SandboxPublicTokenCreateRequestOptions](docs/SandboxPublicTokenCreateRequestOptions.md)\n - [Model.SandboxPublicTokenCreateRequestOptionsTransactions](docs/SandboxPublicTokenCreateRequestOptionsTransactions.md)\n - [Model.SandboxPublicTokenCreateResponse](docs/SandboxPublicTokenCreateResponse.md)\n - [Model.SandboxTransferRepaymentSimulateRequest](docs/SandboxTransferRepaymentSimulateRequest.md)\n - [Model.SandboxTransferRepaymentSimulateResponse](docs/SandboxTransferRepaymentSimulateResponse.md)\n - [Model.SandboxTransferSimulateRequest](docs/SandboxTransferSimulateRequest.md)\n - [Model.SandboxTransferSimulateResponse](docs/SandboxTransferSimulateResponse.md)\n - [Model.SandboxTransferSweepSimulateRequest](docs/SandboxTransferSweepSimulateRequest.md)\n - [Model.SandboxTransferSweepSimulateResponse](docs/SandboxTransferSweepSimulateResponse.md)\n - [Model.Scopes](docs/Scopes.md)\n - [Model.ScopesContext](docs/ScopesContext.md)\n - [Model.ScopesNullable](docs/ScopesNullable.md)\n - [Model.Security](docs/Security.md)\n - [Model.SecurityOverride](docs/SecurityOverride.md)\n - [Model.SenderBACSNullable](docs/SenderBACSNullable.md)\n - [Model.ServicerAddressData](docs/ServicerAddressData.md)\n - [Model.SignalAddressData](docs/SignalAddressData.md)\n - [Model.SignalDecisionReportRequest](docs/SignalDecisionReportRequest.md)\n - [Model.SignalDecisionReportResponse](docs/SignalDecisionReportResponse.md)\n - [Model.SignalDevice](docs/SignalDevice.md)\n - [Model.SignalEvaluateCoreAttributes](docs/SignalEvaluateCoreAttributes.md)\n - [Model.SignalEvaluateRequest](docs/SignalEvaluateRequest.md)\n - [Model.SignalEvaluateResponse](docs/SignalEvaluateResponse.md)\n - [Model.SignalPersonName](docs/SignalPersonName.md)\n - [Model.SignalReturnReportRequest](docs/SignalReturnReportRequest.md)\n - [Model.SignalReturnReportResponse](docs/SignalReturnReportResponse.md)\n - [Model.SignalScores](docs/SignalScores.md)\n - [Model.SignalUser](docs/SignalUser.md)\n - [Model.SimulatedTransferSweep](docs/SimulatedTransferSweep.md)\n - [Model.StandaloneAccountType](docs/StandaloneAccountType.md)\n - [Model.StandaloneCurrencyCodeList](docs/StandaloneCurrencyCodeList.md)\n - [Model.StandaloneInvestmentTransactionType](docs/StandaloneInvestmentTransactionType.md)\n - [Model.StudentLoan](docs/StudentLoan.md)\n - [Model.StudentLoanRepaymentModel](docs/StudentLoanRepaymentModel.md)\n - [Model.StudentLoanStatus](docs/StudentLoanStatus.md)\n - [Model.StudentRepaymentPlan](docs/StudentRepaymentPlan.md)\n - [Model.Taxform](docs/Taxform.md)\n - [Model.TaxpayerID](docs/TaxpayerID.md)\n - [Model.Total](docs/Total.md)\n - [Model.TotalCanonicalDescription](docs/TotalCanonicalDescription.md)\n - [Model.Transaction](docs/Transaction.md)\n - [Model.TransactionAllOf](docs/TransactionAllOf.md)\n - [Model.TransactionBase](docs/TransactionBase.md)\n - [Model.TransactionCode](docs/TransactionCode.md)\n - [Model.TransactionData](docs/TransactionData.md)\n - [Model.TransactionOverride](docs/TransactionOverride.md)\n - [Model.TransactionStream](docs/TransactionStream.md)\n - [Model.TransactionStreamAmount](docs/TransactionStreamAmount.md)\n - [Model.TransactionsGetRequest](docs/TransactionsGetRequest.md)\n - [Model.TransactionsGetRequestOptions](docs/TransactionsGetRequestOptions.md)\n - [Model.TransactionsGetResponse](docs/TransactionsGetResponse.md)\n - [Model.TransactionsRecurringGetRequest](docs/TransactionsRecurringGetRequest.md)\n - [Model.TransactionsRecurringGetResponse](docs/TransactionsRecurringGetResponse.md)\n - [Model.TransactionsRefreshRequest](docs/TransactionsRefreshRequest.md)\n - [Model.TransactionsRefreshResponse](docs/TransactionsRefreshResponse.md)\n - [Model.TransactionsRemovedWebhook](docs/TransactionsRemovedWebhook.md)\n - [Model.TransactionsSyncRequest](docs/TransactionsSyncRequest.md)\n - [Model.TransactionsSyncResponse](docs/TransactionsSyncResponse.md)\n - [Model.Transfer](docs/Transfer.md)\n - [Model.TransferAuthorization](docs/TransferAuthorization.md)\n - [Model.TransferAuthorizationCreateRequest](docs/TransferAuthorizationCreateRequest.md)\n - [Model.TransferAuthorizationCreateResponse](docs/TransferAuthorizationCreateResponse.md)\n - [Model.TransferAuthorizationDecisionRationale](docs/TransferAuthorizationDecisionRationale.md)\n - [Model.TransferAuthorizationDevice](docs/TransferAuthorizationDevice.md)\n - [Model.TransferAuthorizationGuaranteeDecision](docs/TransferAuthorizationGuaranteeDecision.md)\n - [Model.TransferAuthorizationGuaranteeDecisionRationale](docs/TransferAuthorizationGuaranteeDecisionRationale.md)\n - [Model.TransferAuthorizationProposedTransfer](docs/TransferAuthorizationProposedTransfer.md)\n - [Model.TransferCancelRequest](docs/TransferCancelRequest.md)\n - [Model.TransferCancelResponse](docs/TransferCancelResponse.md)\n - [Model.TransferCreateRequest](docs/TransferCreateRequest.md)\n - [Model.TransferCreateResponse](docs/TransferCreateResponse.md)\n - [Model.TransferEvent](docs/TransferEvent.md)\n - [Model.TransferEventListRequest](docs/TransferEventListRequest.md)\n - [Model.TransferEventListResponse](docs/TransferEventListResponse.md)\n - [Model.TransferEventSyncRequest](docs/TransferEventSyncRequest.md)\n - [Model.TransferEventSyncResponse](docs/TransferEventSyncResponse.md)\n - [Model.TransferEventType](docs/TransferEventType.md)\n - [Model.TransferFailure](docs/TransferFailure.md)\n - [Model.TransferGetRequest](docs/TransferGetRequest.md)\n - [Model.TransferGetResponse](docs/TransferGetResponse.md)\n - [Model.TransferIntentCreate](docs/TransferIntentCreate.md)\n - [Model.TransferIntentCreateMode](docs/TransferIntentCreateMode.md)\n - [Model.TransferIntentCreateRequest](docs/TransferIntentCreateRequest.md)\n - [Model.TransferIntentCreateResponse](docs/TransferIntentCreateResponse.md)\n - [Model.TransferIntentGet](docs/TransferIntentGet.md)\n - [Model.TransferIntentGetFailureReason](docs/TransferIntentGetFailureReason.md)\n - [Model.TransferIntentGetRequest](docs/TransferIntentGetRequest.md)\n - [Model.TransferIntentGetResponse](docs/TransferIntentGetResponse.md)\n - [Model.TransferListRequest](docs/TransferListRequest.md)\n - [Model.TransferListResponse](docs/TransferListResponse.md)\n - [Model.TransferNetwork](docs/TransferNetwork.md)\n - [Model.TransferRepayment](docs/TransferRepayment.md)\n - [Model.TransferRepaymentListRequest](docs/TransferRepaymentListRequest.md)\n - [Model.TransferRepaymentListResponse](docs/TransferRepaymentListResponse.md)\n - [Model.TransferRepaymentReturn](docs/TransferRepaymentReturn.md)\n - [Model.TransferRepaymentReturnListRequest](docs/TransferRepaymentReturnListRequest.md)\n - [Model.TransferRepaymentReturnListResponse](docs/TransferRepaymentReturnListResponse.md)\n - [Model.TransferStatus](docs/TransferStatus.md)\n - [Model.TransferSweep](docs/TransferSweep.md)\n - [Model.TransferSweepGetRequest](docs/TransferSweepGetRequest.md)\n - [Model.TransferSweepGetResponse](docs/TransferSweepGetResponse.md)\n - [Model.TransferSweepListRequest](docs/TransferSweepListRequest.md)\n - [Model.TransferSweepListResponse](docs/TransferSweepListResponse.md)\n - [Model.TransferSweepStatus](docs/TransferSweepStatus.md)\n - [Model.TransferType](docs/TransferType.md)\n - [Model.TransferUserAddressInRequest](docs/TransferUserAddressInRequest.md)\n - [Model.TransferUserAddressInResponse](docs/TransferUserAddressInResponse.md)\n - [Model.TransferUserInRequest](docs/TransferUserInRequest.md)\n - [Model.TransferUserInResponse](docs/TransferUserInResponse.md)\n - [Model.UserCustomPassword](docs/UserCustomPassword.md)\n - [Model.UserPermissionRevokedWebhook](docs/UserPermissionRevokedWebhook.md)\n - [Model.VerificationAttribute](docs/VerificationAttribute.md)\n - [Model.VerificationExpiredWebhook](docs/VerificationExpiredWebhook.md)\n - [Model.VerificationRefreshStatus](docs/VerificationRefreshStatus.md)\n - [Model.VerificationStatus](docs/VerificationStatus.md)\n - [Model.W2](docs/W2.md)\n - [Model.W2Box12](docs/W2Box12.md)\n - [Model.W2StateAndLocalWages](docs/W2StateAndLocalWages.md)\n - [Model.WalletBalance](docs/WalletBalance.md)\n - [Model.WalletGetRequest](docs/WalletGetRequest.md)\n - [Model.WalletGetResponse](docs/WalletGetResponse.md)\n - [Model.WalletTransaction](docs/WalletTransaction.md)\n - [Model.WalletTransactionAmount](docs/WalletTransactionAmount.md)\n - [Model.WalletTransactionCounterparty](docs/WalletTransactionCounterparty.md)\n - [Model.WalletTransactionCounterpartyBACS](docs/WalletTransactionCounterpartyBACS.md)\n - [Model.WalletTransactionCounterpartyNumbers](docs/WalletTransactionCounterpartyNumbers.md)\n - [Model.WalletTransactionExecuteRequest](docs/WalletTransactionExecuteRequest.md)\n - [Model.WalletTransactionExecuteResponse](docs/WalletTransactionExecuteResponse.md)\n - [Model.WalletTransactionStatus](docs/WalletTransactionStatus.md)\n - [Model.WalletTransactionsListRequest](docs/WalletTransactionsListRequest.md)\n - [Model.WalletTransactionsListResponse](docs/WalletTransactionsListResponse.md)\n - [Model.Warning](docs/Warning.md)\n - [Model.WebhookUpdateAcknowledgedWebhook](docs/WebhookUpdateAcknowledgedWebhook.md)\n - [Model.WebhookVerificationKeyGetRequest](docs/WebhookVerificationKeyGetRequest.md)\n - [Model.WebhookVerificationKeyGetResponse](docs/WebhookVerificationKeyGetResponse.md)\n - [Model.YTDGrossIncomeSummaryFieldNumber](docs/YTDGrossIncomeSummaryFieldNumber.md)\n - [Model.YTDNetIncomeSummaryFieldNumber](docs/YTDNetIncomeSummaryFieldNumber.md)\n\n\n\u003ca name=\"documentation-for-authorization\"\u003e\u003c/a\u003e\n## Documentation for Authorization\n\n\u003ca name=\"clientId\"\u003e\u003c/a\u003e\n### clientId\n\n- **Type**: API key\n- **API key parameter name**: PLAID-CLIENT-ID\n- **Location**: HTTP header\n\n\u003ca name=\"plaidVersion\"\u003e\u003c/a\u003e\n### plaidVersion\n\n- **Type**: API key\n- **API key parameter name**: Plaid-Version\n- **Location**: HTTP header\n\n\u003ca name=\"secret\"\u003e\u003c/a\u003e\n### secret\n\n- **Type**: API key\n- **API key parameter name**: PLAID-SECRET\n- **Location**: HTTP header\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibninjacom%2Fopenapi-generator-plaid-csharp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibninjacom%2Fopenapi-generator-plaid-csharp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibninjacom%2Fopenapi-generator-plaid-csharp/lists"}