├── .github └── workflows │ ├── coinapi-exchange-rates-api-historical-rest-openapi-to-sdk.yaml │ ├── coinapi-exchange-rates-api-realtime-rest-openapi-to-sdk.yaml │ ├── coinapi-indexes-api-rest-openapi-to-sdk.yaml │ ├── coinapi-market-data-api-rest-csharp-publish-nuget.yml │ ├── coinapi-market-data-api-rest-java-publish-github.yml │ ├── coinapi-market-data-api-rest-openapi-to-sdk.yaml │ ├── coinapi-market-data-api-rest-python-publish-pypi.yml │ ├── coinapi-market-data-api-ws-csharp-publish-nuget.yml │ ├── coinapi-market-data-api-ws-java-publish-github.yml │ ├── finfeedapi-currencies-api-historical-rest-openapi-to-sdk.yaml │ ├── finfeedapi-currencies-api-realtime-rest-openapi-to-sdk.yaml │ ├── finfeedapi-prediction-markets-api-rest-openapi-to-sdk.yaml │ ├── finfeedapi-sec-api-rest-openapi-to-sdk.yaml │ ├── finfeedapi-sec-api-rest-publish-pypi-legacy.yaml │ ├── finfeedapi-sec-api-rest-publish-pypi.yaml │ ├── finfeedapi-stock-api-rest-openapi-to-sdk.yaml │ └── reusable-openapi-to-sdk.yaml ├── .gitignore ├── LICENSE ├── README.md ├── coinapi ├── ems-api-fix │ ├── sdk │ │ └── csharp-netcore │ │ │ └── CoinAPI.OEML.FixClient │ │ │ ├── .gitignore │ │ │ ├── CoinAPI.OEML.FixClient.csproj │ │ │ ├── CoinAPI.OEML.FixClient.sln │ │ │ ├── ESymbolSource.cs │ │ │ ├── FIX │ │ │ ├── FIX44.xml │ │ │ ├── FIX50.xml │ │ │ └── FIXT11.xml │ │ │ ├── FixSettings.cfg │ │ │ ├── OmsFix44Client.cs │ │ │ ├── OmsFix50Client.cs │ │ │ └── Program.cs │ └── spec │ │ ├── FIX44.xml │ │ ├── FIX50.xml │ │ ├── FIXT11.xml │ │ └── README.md ├── ems-api-rest │ └── sdk │ │ ├── ada │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── config.gpr │ │ ├── defaultpackage.gpr │ │ └── src │ │ │ ├── -client.adb │ │ │ ├── .ads │ │ │ ├── client │ │ │ ├── -clients.adb │ │ │ └── -clients.ads │ │ │ └── model │ │ │ ├── -models.adb │ │ │ └── -models.ads │ │ ├── android │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── build.gradle │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── org │ │ │ └── openapitools │ │ │ └── client │ │ │ ├── ApiException.java │ │ │ ├── ApiInvoker.java │ │ │ ├── JsonUtil.java │ │ │ ├── Pair.java │ │ │ ├── api │ │ │ ├── BalancesApi.java │ │ │ ├── OrdersApi.java │ │ │ └── PositionsApi.java │ │ │ ├── auth │ │ │ ├── ApiKeyAuth.java │ │ │ ├── Authentication.java │ │ │ └── HttpBasicAuth.java │ │ │ ├── model │ │ │ ├── Balance.java │ │ │ ├── BalanceDataInner.java │ │ │ ├── Fills.java │ │ │ ├── MessageError.java │ │ │ ├── MessageReject.java │ │ │ ├── OrdSide.java │ │ │ ├── OrdStatus.java │ │ │ ├── OrdType.java │ │ │ ├── OrderCancelAllRequest.java │ │ │ ├── OrderCancelSingleRequest.java │ │ │ ├── OrderExecutionReport.java │ │ │ ├── OrderExecutionReportAllOf.java │ │ │ ├── OrderHistory.java │ │ │ ├── OrderNewSingleRequest.java │ │ │ ├── Position.java │ │ │ ├── PositionDataInner.java │ │ │ ├── RejectReason.java │ │ │ ├── TimeInForce.java │ │ │ └── ValidationError.java │ │ │ └── request │ │ │ ├── DeleteRequest.java │ │ │ ├── GetRequest.java │ │ │ ├── PatchRequest.java │ │ │ ├── PostRequest.java │ │ │ └── PutRequest.java │ │ ├── apex │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── config │ │ │ └── project-scratch-def.json │ │ ├── force-app │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── classes │ │ │ │ ├── OAS.cls │ │ │ │ ├── OAS.cls-meta.xml │ │ │ │ ├── OASBalance.cls │ │ │ │ ├── OASBalance.cls-meta.xml │ │ │ │ ├── OASBalanceDataInner.cls │ │ │ │ ├── OASBalanceDataInner.cls-meta.xml │ │ │ │ ├── OASBalanceDataInnerTest.cls │ │ │ │ ├── OASBalanceDataInnerTest.cls-meta.xml │ │ │ │ ├── OASBalanceTest.cls │ │ │ │ ├── OASBalanceTest.cls-meta.xml │ │ │ │ ├── OASBalancesApi.cls │ │ │ │ ├── OASBalancesApi.cls-meta.xml │ │ │ │ ├── OASBalancesApiTest.cls │ │ │ │ ├── OASBalancesApiTest.cls-meta.xml │ │ │ │ ├── OASClient.cls │ │ │ │ ├── OASClient.cls-meta.xml │ │ │ │ ├── OASFills.cls │ │ │ │ ├── OASFills.cls-meta.xml │ │ │ │ ├── OASFillsTest.cls │ │ │ │ ├── OASFillsTest.cls-meta.xml │ │ │ │ ├── OASMessageError.cls │ │ │ │ ├── OASMessageError.cls-meta.xml │ │ │ │ ├── OASMessageErrorTest.cls │ │ │ │ ├── OASMessageErrorTest.cls-meta.xml │ │ │ │ ├── OASMessageReject.cls │ │ │ │ ├── OASMessageReject.cls-meta.xml │ │ │ │ ├── OASMessageRejectTest.cls │ │ │ │ ├── OASMessageRejectTest.cls-meta.xml │ │ │ │ ├── OASOrdSide.cls │ │ │ │ ├── OASOrdSide.cls-meta.xml │ │ │ │ ├── OASOrdSideTest.cls │ │ │ │ ├── OASOrdSideTest.cls-meta.xml │ │ │ │ ├── OASOrdStatus.cls │ │ │ │ ├── OASOrdStatus.cls-meta.xml │ │ │ │ ├── OASOrdStatusTest.cls │ │ │ │ ├── OASOrdStatusTest.cls-meta.xml │ │ │ │ ├── OASOrdType.cls │ │ │ │ ├── OASOrdType.cls-meta.xml │ │ │ │ ├── OASOrdTypeTest.cls │ │ │ │ ├── OASOrdTypeTest.cls-meta.xml │ │ │ │ ├── OASOrderCancelAllRequest.cls │ │ │ │ ├── OASOrderCancelAllRequest.cls-meta.xml │ │ │ │ ├── OASOrderCancelAllRequestTest.cls │ │ │ │ ├── OASOrderCancelAllRequestTest.cls-meta.xml │ │ │ │ ├── OASOrderCancelSingleRequest.cls │ │ │ │ ├── OASOrderCancelSingleRequest.cls-meta.xml │ │ │ │ ├── OASOrderCancelSingleRequestTest.cls │ │ │ │ ├── OASOrderCancelSingleRequestTest.cls-meta.xml │ │ │ │ ├── OASOrderExecutionReport.cls │ │ │ │ ├── OASOrderExecutionReport.cls-meta.xml │ │ │ │ ├── OASOrderExecutionReportAllOf.cls │ │ │ │ ├── OASOrderExecutionReportAllOf.cls-meta.xml │ │ │ │ ├── OASOrderExecutionReportAllOfTest.cls │ │ │ │ ├── OASOrderExecutionReportAllOfTest.cls-meta.xml │ │ │ │ ├── OASOrderExecutionReportTest.cls │ │ │ │ ├── OASOrderExecutionReportTest.cls-meta.xml │ │ │ │ ├── OASOrderHistory.cls │ │ │ │ ├── OASOrderHistory.cls-meta.xml │ │ │ │ ├── OASOrderHistoryTest.cls │ │ │ │ ├── OASOrderHistoryTest.cls-meta.xml │ │ │ │ ├── OASOrderNewSingleRequest.cls │ │ │ │ ├── OASOrderNewSingleRequest.cls-meta.xml │ │ │ │ ├── OASOrderNewSingleRequestTest.cls │ │ │ │ ├── OASOrderNewSingleRequestTest.cls-meta.xml │ │ │ │ ├── OASOrdersApi.cls │ │ │ │ ├── OASOrdersApi.cls-meta.xml │ │ │ │ ├── OASOrdersApiTest.cls │ │ │ │ ├── OASOrdersApiTest.cls-meta.xml │ │ │ │ ├── OASPosition.cls │ │ │ │ ├── OASPosition.cls-meta.xml │ │ │ │ ├── OASPositionDataInner.cls │ │ │ │ ├── OASPositionDataInner.cls-meta.xml │ │ │ │ ├── OASPositionDataInnerTest.cls │ │ │ │ ├── OASPositionDataInnerTest.cls-meta.xml │ │ │ │ ├── OASPositionTest.cls │ │ │ │ ├── OASPositionTest.cls-meta.xml │ │ │ │ ├── OASPositionsApi.cls │ │ │ │ ├── OASPositionsApi.cls-meta.xml │ │ │ │ ├── OASPositionsApiTest.cls │ │ │ │ ├── OASPositionsApiTest.cls-meta.xml │ │ │ │ ├── OASRejectReason.cls │ │ │ │ ├── OASRejectReason.cls-meta.xml │ │ │ │ ├── OASRejectReasonTest.cls │ │ │ │ ├── OASRejectReasonTest.cls-meta.xml │ │ │ │ ├── OASResponseMock.cls │ │ │ │ ├── OASResponseMock.cls-meta.xml │ │ │ │ ├── OASTest.cls │ │ │ │ ├── OASTest.cls-meta.xml │ │ │ │ ├── OASTimeInForce.cls │ │ │ │ ├── OASTimeInForce.cls-meta.xml │ │ │ │ ├── OASTimeInForceTest.cls │ │ │ │ ├── OASTimeInForceTest.cls-meta.xml │ │ │ │ ├── OASValidationError.cls │ │ │ │ ├── OASValidationError.cls-meta.xml │ │ │ │ ├── OASValidationErrorTest.cls │ │ │ │ └── OASValidationErrorTest.cls-meta.xml │ │ │ │ └── namedCredentials │ │ │ │ └── EMS__REST_API.namedCredential-meta.xml │ │ └── sfdx-project.json │ │ ├── bash │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── _client.sh │ │ ├── client.sh │ │ ├── client.sh.bash-completion │ │ └── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── c │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── CMakeLists.txt │ │ ├── Packing.cmake │ │ ├── README.md │ │ ├── api │ │ │ ├── BalancesAPI.c │ │ │ ├── BalancesAPI.h │ │ │ ├── OrdersAPI.c │ │ │ ├── OrdersAPI.h │ │ │ ├── PositionsAPI.c │ │ │ └── PositionsAPI.h │ │ ├── docs │ │ │ ├── BalancesAPI.md │ │ │ ├── OrdersAPI.md │ │ │ ├── PositionsAPI.md │ │ │ ├── balance.md │ │ │ ├── balance_data_inner.md │ │ │ ├── fills.md │ │ │ ├── message_error.md │ │ │ ├── message_reject.md │ │ │ ├── ord_side.md │ │ │ ├── ord_status.md │ │ │ ├── ord_type.md │ │ │ ├── order_cancel_all_request.md │ │ │ ├── order_cancel_single_request.md │ │ │ ├── order_execution_report.md │ │ │ ├── order_execution_report_all_of.md │ │ │ ├── order_history.md │ │ │ ├── order_new_single_request.md │ │ │ ├── position.md │ │ │ ├── position_data_inner.md │ │ │ ├── reject_reason.md │ │ │ ├── time_in_force.md │ │ │ └── validation_error.md │ │ ├── external │ │ │ ├── cJSON.c │ │ │ ├── cJSON.h │ │ │ └── cJSON.licence │ │ ├── include │ │ │ ├── apiClient.h │ │ │ ├── binary.h │ │ │ ├── keyValuePair.h │ │ │ └── list.h │ │ ├── libcurl.licence │ │ ├── model │ │ │ ├── balance.c │ │ │ ├── balance.h │ │ │ ├── balance_data_inner.c │ │ │ ├── balance_data_inner.h │ │ │ ├── fills.c │ │ │ ├── fills.h │ │ │ ├── message_error.c │ │ │ ├── message_error.h │ │ │ ├── message_reject.c │ │ │ ├── message_reject.h │ │ │ ├── object.c │ │ │ ├── object.h │ │ │ ├── ord_side.c │ │ │ ├── ord_side.h │ │ │ ├── ord_status.c │ │ │ ├── ord_status.h │ │ │ ├── ord_type.c │ │ │ ├── ord_type.h │ │ │ ├── order_cancel_all_request.c │ │ │ ├── order_cancel_all_request.h │ │ │ ├── order_cancel_single_request.c │ │ │ ├── order_cancel_single_request.h │ │ │ ├── order_execution_report.c │ │ │ ├── order_execution_report.h │ │ │ ├── order_execution_report_all_of.c │ │ │ ├── order_execution_report_all_of.h │ │ │ ├── order_history.c │ │ │ ├── order_history.h │ │ │ ├── order_new_single_request.c │ │ │ ├── order_new_single_request.h │ │ │ ├── position.c │ │ │ ├── position.h │ │ │ ├── position_data_inner.c │ │ │ ├── position_data_inner.h │ │ │ ├── reject_reason.c │ │ │ ├── reject_reason.h │ │ │ ├── time_in_force.c │ │ │ ├── time_in_force.h │ │ │ ├── validation_error.c │ │ │ └── validation_error.h │ │ ├── src │ │ │ ├── apiClient.c │ │ │ ├── apiKey.c │ │ │ ├── binary.c │ │ │ └── list.c │ │ ├── uncrustify-rules.cfg │ │ └── unit-test │ │ │ ├── test_balance.c │ │ │ ├── test_balance_data_inner.c │ │ │ ├── test_fills.c │ │ │ ├── test_message_error.c │ │ │ ├── test_message_reject.c │ │ │ ├── test_ord_side.c │ │ │ ├── test_ord_status.c │ │ │ ├── test_ord_type.c │ │ │ ├── test_order_cancel_all_request.c │ │ │ ├── test_order_cancel_single_request.c │ │ │ ├── test_order_execution_report.c │ │ │ ├── test_order_execution_report_all_of.c │ │ │ ├── test_order_history.c │ │ │ ├── test_order_new_single_request.c │ │ │ ├── test_position.c │ │ │ ├── test_position_data_inner.c │ │ │ ├── test_reject_reason.c │ │ │ ├── test_time_in_force.c │ │ │ └── test_validation_error.c │ │ ├── clojure │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── git_push.sh │ │ ├── project.clj │ │ └── src │ │ │ └── ems_rest_api │ │ │ ├── api │ │ │ ├── balances.clj │ │ │ ├── orders.clj │ │ │ └── positions.clj │ │ │ ├── core.clj │ │ │ └── specs │ │ │ ├── balance.clj │ │ │ ├── balance_data_inner.clj │ │ │ ├── fills.clj │ │ │ ├── message_error.clj │ │ │ ├── message_reject.clj │ │ │ ├── ord_side.clj │ │ │ ├── ord_status.clj │ │ │ ├── ord_type.clj │ │ │ ├── order_cancel_all_request.clj │ │ │ ├── order_cancel_single_request.clj │ │ │ ├── order_execution_report.clj │ │ │ ├── order_execution_report_all_of.clj │ │ │ ├── order_history.clj │ │ │ ├── order_new_single_request.clj │ │ │ ├── position.clj │ │ │ ├── position_data_inner.clj │ │ │ ├── reject_reason.clj │ │ │ ├── time_in_force.clj │ │ │ └── validation_error.clj │ │ ├── cpp-restsdk │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── CMakeLists.txt │ │ ├── Config.cmake.in │ │ ├── README.md │ │ ├── git_push.sh │ │ ├── include │ │ │ └── CppRestOpenAPIClient │ │ │ │ ├── ApiClient.h │ │ │ │ ├── ApiConfiguration.h │ │ │ │ ├── ApiException.h │ │ │ │ ├── HttpContent.h │ │ │ │ ├── IHttpBody.h │ │ │ │ ├── JsonBody.h │ │ │ │ ├── ModelBase.h │ │ │ │ ├── MultipartFormData.h │ │ │ │ ├── Object.h │ │ │ │ ├── api │ │ │ │ ├── BalancesApi.h │ │ │ │ ├── OrdersApi.h │ │ │ │ └── PositionsApi.h │ │ │ │ └── model │ │ │ │ ├── Balance.h │ │ │ │ ├── Balance_data_inner.h │ │ │ │ ├── Fills.h │ │ │ │ ├── MessageError.h │ │ │ │ ├── MessageReject.h │ │ │ │ ├── OrdSide.h │ │ │ │ ├── OrdStatus.h │ │ │ │ ├── OrdType.h │ │ │ │ ├── OrderCancelAllRequest.h │ │ │ │ ├── OrderCancelSingleRequest.h │ │ │ │ ├── OrderExecutionReport.h │ │ │ │ ├── OrderExecutionReport_allOf.h │ │ │ │ ├── OrderHistory.h │ │ │ │ ├── OrderNewSingleRequest.h │ │ │ │ ├── Position.h │ │ │ │ ├── Position_data_inner.h │ │ │ │ ├── RejectReason.h │ │ │ │ ├── TimeInForce.h │ │ │ │ └── ValidationError.h │ │ └── src │ │ │ ├── ApiClient.cpp │ │ │ ├── ApiConfiguration.cpp │ │ │ ├── ApiException.cpp │ │ │ ├── HttpContent.cpp │ │ │ ├── JsonBody.cpp │ │ │ ├── ModelBase.cpp │ │ │ ├── MultipartFormData.cpp │ │ │ ├── Object.cpp │ │ │ ├── api │ │ │ ├── BalancesApi.cpp │ │ │ ├── OrdersApi.cpp │ │ │ └── PositionsApi.cpp │ │ │ └── model │ │ │ ├── Balance.cpp │ │ │ ├── Balance_data_inner.cpp │ │ │ ├── Fills.cpp │ │ │ ├── MessageError.cpp │ │ │ ├── MessageReject.cpp │ │ │ ├── OrdSide.cpp │ │ │ ├── OrdStatus.cpp │ │ │ ├── OrdType.cpp │ │ │ ├── OrderCancelAllRequest.cpp │ │ │ ├── OrderCancelSingleRequest.cpp │ │ │ ├── OrderExecutionReport.cpp │ │ │ ├── OrderExecutionReport_allOf.cpp │ │ │ ├── OrderHistory.cpp │ │ │ ├── OrderNewSingleRequest.cpp │ │ │ ├── Position.cpp │ │ │ ├── Position_data_inner.cpp │ │ │ ├── RejectReason.cpp │ │ │ ├── TimeInForce.cpp │ │ │ └── ValidationError.cpp │ │ ├── cpp-tizen │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── doc │ │ │ ├── Doxyfile │ │ │ ├── README.md │ │ │ └── generateDocumentation.sh │ │ └── src │ │ │ ├── Balance.cpp │ │ │ ├── Balance.h │ │ │ ├── BalanceDataInner.cpp │ │ │ ├── BalanceDataInner.h │ │ │ ├── BalancesManager.cpp │ │ │ ├── BalancesManager.h │ │ │ ├── Error.cpp │ │ │ ├── Error.h │ │ │ ├── Fills.cpp │ │ │ ├── Fills.h │ │ │ ├── Helpers.cpp │ │ │ ├── Helpers.h │ │ │ ├── MessageError.cpp │ │ │ ├── MessageError.h │ │ │ ├── MessageReject.cpp │ │ │ ├── MessageReject.h │ │ │ ├── NetClient.cpp │ │ │ ├── NetClient.h │ │ │ ├── Object.h │ │ │ ├── OrdSide.cpp │ │ │ ├── OrdSide.h │ │ │ ├── OrdStatus.cpp │ │ │ ├── OrdStatus.h │ │ │ ├── OrdType.cpp │ │ │ ├── OrdType.h │ │ │ ├── OrderCancelAllRequest.cpp │ │ │ ├── OrderCancelAllRequest.h │ │ │ ├── OrderCancelSingleRequest.cpp │ │ │ ├── OrderCancelSingleRequest.h │ │ │ ├── OrderExecutionReport.cpp │ │ │ ├── OrderExecutionReport.h │ │ │ ├── OrderExecutionReportAllOf.cpp │ │ │ ├── OrderExecutionReportAllOf.h │ │ │ ├── OrderHistory.cpp │ │ │ ├── OrderHistory.h │ │ │ ├── OrderNewSingleRequest.cpp │ │ │ ├── OrderNewSingleRequest.h │ │ │ ├── OrdersManager.cpp │ │ │ ├── OrdersManager.h │ │ │ ├── Position.cpp │ │ │ ├── Position.h │ │ │ ├── PositionDataInner.cpp │ │ │ ├── PositionDataInner.h │ │ │ ├── PositionsManager.cpp │ │ │ ├── PositionsManager.h │ │ │ ├── RejectReason.cpp │ │ │ ├── RejectReason.h │ │ │ ├── RequestInfo.h │ │ │ ├── TimeInForce.cpp │ │ │ ├── TimeInForce.h │ │ │ ├── ValidationError.cpp │ │ │ └── ValidationError.h │ │ ├── csharp-netcore │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── CoinAPI.EMS.REST.V1.sln │ │ ├── README.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── appveyor.yml │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ └── src │ │ │ ├── CoinAPI.EMS.REST.V1.Test │ │ │ ├── Api │ │ │ │ ├── BalancesApiTests.cs │ │ │ │ ├── OrdersApiTests.cs │ │ │ │ └── PositionsApiTests.cs │ │ │ ├── CoinAPI.EMS.REST.V1.Test.csproj │ │ │ └── Model │ │ │ │ ├── BalanceDataInnerTests.cs │ │ │ │ ├── BalanceTests.cs │ │ │ │ ├── FillsTests.cs │ │ │ │ ├── MessageErrorTests.cs │ │ │ │ ├── MessageRejectTests.cs │ │ │ │ ├── OrdSideTests.cs │ │ │ │ ├── OrdStatusTests.cs │ │ │ │ ├── OrdTypeTests.cs │ │ │ │ ├── OrderCancelAllRequestTests.cs │ │ │ │ ├── OrderCancelSingleRequestTests.cs │ │ │ │ ├── OrderExecutionReportAllOfTests.cs │ │ │ │ ├── OrderExecutionReportTests.cs │ │ │ │ ├── OrderHistoryTests.cs │ │ │ │ ├── OrderNewSingleRequestTests.cs │ │ │ │ ├── PositionDataInnerTests.cs │ │ │ │ ├── PositionTests.cs │ │ │ │ ├── RejectReasonTests.cs │ │ │ │ ├── TimeInForceTests.cs │ │ │ │ └── ValidationErrorTests.cs │ │ │ └── CoinAPI.EMS.REST.V1 │ │ │ ├── Api │ │ │ ├── BalancesApi.cs │ │ │ ├── OrdersApi.cs │ │ │ └── PositionsApi.cs │ │ │ ├── Client │ │ │ ├── ApiClient.cs │ │ │ ├── ApiException.cs │ │ │ ├── ApiResponse.cs │ │ │ ├── ClientUtils.cs │ │ │ ├── Configuration.cs │ │ │ ├── ExceptionFactory.cs │ │ │ ├── GlobalConfiguration.cs │ │ │ ├── HttpMethod.cs │ │ │ ├── IApiAccessor.cs │ │ │ ├── IAsynchronousClient.cs │ │ │ ├── IReadableConfiguration.cs │ │ │ ├── ISynchronousClient.cs │ │ │ ├── Multimap.cs │ │ │ ├── OpenAPIDateConverter.cs │ │ │ ├── RequestOptions.cs │ │ │ └── RetryConfiguration.cs │ │ │ ├── CoinAPI.EMS.REST.V1.csproj │ │ │ └── Model │ │ │ ├── AbstractOpenAPISchema.cs │ │ │ ├── Balance.cs │ │ │ ├── BalanceDataInner.cs │ │ │ ├── Fills.cs │ │ │ ├── MessageError.cs │ │ │ ├── MessageReject.cs │ │ │ ├── OrdSide.cs │ │ │ ├── OrdStatus.cs │ │ │ ├── OrdType.cs │ │ │ ├── OrderCancelAllRequest.cs │ │ │ ├── OrderCancelSingleRequest.cs │ │ │ ├── OrderExecutionReport.cs │ │ │ ├── OrderExecutionReportAllOf.cs │ │ │ ├── OrderHistory.cs │ │ │ ├── OrderNewSingleRequest.cs │ │ │ ├── Position.cs │ │ │ ├── PositionDataInner.cs │ │ │ ├── RejectReason.cs │ │ │ ├── TimeInForce.cs │ │ │ └── ValidationError.cs │ │ ├── csharp │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── CoinAPI.EMS.REST.V1.sln │ │ ├── README.md │ │ ├── build.bat │ │ ├── build.sh │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── mono_nunit_test.sh │ │ └── src │ │ │ ├── CoinAPI.EMS.REST.V1.Test │ │ │ ├── Api │ │ │ │ ├── BalancesApiTests.cs │ │ │ │ ├── OrdersApiTests.cs │ │ │ │ └── PositionsApiTests.cs │ │ │ ├── CoinAPI.EMS.REST.V1.Test.csproj │ │ │ ├── Model │ │ │ │ ├── BalanceDataInnerTests.cs │ │ │ │ ├── BalanceTests.cs │ │ │ │ ├── FillsTests.cs │ │ │ │ ├── MessageErrorTests.cs │ │ │ │ ├── MessageRejectTests.cs │ │ │ │ ├── OrdSideTests.cs │ │ │ │ ├── OrdStatusTests.cs │ │ │ │ ├── OrdTypeTests.cs │ │ │ │ ├── OrderCancelAllRequestTests.cs │ │ │ │ ├── OrderCancelSingleRequestTests.cs │ │ │ │ ├── OrderExecutionReportAllOfTests.cs │ │ │ │ ├── OrderExecutionReportTests.cs │ │ │ │ ├── OrderHistoryTests.cs │ │ │ │ ├── OrderNewSingleRequestTests.cs │ │ │ │ ├── PositionDataInnerTests.cs │ │ │ │ ├── PositionTests.cs │ │ │ │ ├── RejectReasonTests.cs │ │ │ │ ├── TimeInForceTests.cs │ │ │ │ └── ValidationErrorTests.cs │ │ │ └── packages.config │ │ │ └── CoinAPI.EMS.REST.V1 │ │ │ ├── Api │ │ │ ├── BalancesApi.cs │ │ │ ├── OrdersApi.cs │ │ │ └── PositionsApi.cs │ │ │ ├── Client │ │ │ ├── ApiClient.cs │ │ │ ├── ApiException.cs │ │ │ ├── ApiResponse.cs │ │ │ ├── Configuration.cs │ │ │ ├── ExceptionFactory.cs │ │ │ ├── GlobalConfiguration.cs │ │ │ ├── IApiAccessor.cs │ │ │ ├── IReadableConfiguration.cs │ │ │ └── OpenAPIDateConverter.cs │ │ │ ├── CoinAPI.EMS.REST.V1.csproj │ │ │ ├── CoinAPI.EMS.REST.V1.nuspec │ │ │ ├── Model │ │ │ ├── Balance.cs │ │ │ ├── BalanceDataInner.cs │ │ │ ├── Fills.cs │ │ │ ├── MessageError.cs │ │ │ ├── MessageReject.cs │ │ │ ├── OrdSide.cs │ │ │ ├── OrdStatus.cs │ │ │ ├── OrdType.cs │ │ │ ├── OrderCancelAllRequest.cs │ │ │ ├── OrderCancelSingleRequest.cs │ │ │ ├── OrderExecutionReport.cs │ │ │ ├── OrderExecutionReportAllOf.cs │ │ │ ├── OrderHistory.cs │ │ │ ├── OrderNewSingleRequest.cs │ │ │ ├── Position.cs │ │ │ ├── PositionDataInner.cs │ │ │ ├── RejectReason.cs │ │ │ ├── TimeInForce.cs │ │ │ └── ValidationError.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ │ ├── dart-dio │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── doc │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── lib │ │ │ ├── openapi.dart │ │ │ └── src │ │ │ │ ├── api.dart │ │ │ │ ├── api │ │ │ │ ├── balances_api.dart │ │ │ │ ├── orders_api.dart │ │ │ │ └── positions_api.dart │ │ │ │ ├── api_util.dart │ │ │ │ ├── auth │ │ │ │ ├── api_key_auth.dart │ │ │ │ ├── auth.dart │ │ │ │ ├── basic_auth.dart │ │ │ │ ├── bearer_auth.dart │ │ │ │ └── oauth.dart │ │ │ │ ├── date_serializer.dart │ │ │ │ ├── model │ │ │ │ ├── balance.dart │ │ │ │ ├── balance_data_inner.dart │ │ │ │ ├── date.dart │ │ │ │ ├── fills.dart │ │ │ │ ├── message_error.dart │ │ │ │ ├── message_reject.dart │ │ │ │ ├── ord_side.dart │ │ │ │ ├── ord_status.dart │ │ │ │ ├── ord_type.dart │ │ │ │ ├── order_cancel_all_request.dart │ │ │ │ ├── order_cancel_single_request.dart │ │ │ │ ├── order_execution_report.dart │ │ │ │ ├── order_execution_report_all_of.dart │ │ │ │ ├── order_history.dart │ │ │ │ ├── order_new_single_request.dart │ │ │ │ ├── position.dart │ │ │ │ ├── position_data_inner.dart │ │ │ │ ├── reject_reason.dart │ │ │ │ ├── time_in_force.dart │ │ │ │ └── validation_error.dart │ │ │ │ └── serializers.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── balance_data_inner_test.dart │ │ │ ├── balance_test.dart │ │ │ ├── balances_api_test.dart │ │ │ ├── fills_test.dart │ │ │ ├── message_error_test.dart │ │ │ ├── message_reject_test.dart │ │ │ ├── ord_side_test.dart │ │ │ ├── ord_status_test.dart │ │ │ ├── ord_type_test.dart │ │ │ ├── order_cancel_all_request_test.dart │ │ │ ├── order_cancel_single_request_test.dart │ │ │ ├── order_execution_report_all_of_test.dart │ │ │ ├── order_execution_report_test.dart │ │ │ ├── order_history_test.dart │ │ │ ├── order_new_single_request_test.dart │ │ │ ├── orders_api_test.dart │ │ │ ├── position_data_inner_test.dart │ │ │ ├── position_test.dart │ │ │ ├── positions_api_test.dart │ │ │ ├── reject_reason_test.dart │ │ │ ├── time_in_force_test.dart │ │ │ └── validation_error_test.dart │ │ ├── dart │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── doc │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── lib │ │ │ ├── api.dart │ │ │ ├── api │ │ │ │ ├── balances_api.dart │ │ │ │ ├── orders_api.dart │ │ │ │ └── positions_api.dart │ │ │ ├── api_client.dart │ │ │ ├── api_exception.dart │ │ │ ├── api_helper.dart │ │ │ ├── auth │ │ │ │ ├── api_key_auth.dart │ │ │ │ ├── authentication.dart │ │ │ │ ├── http_basic_auth.dart │ │ │ │ ├── http_bearer_auth.dart │ │ │ │ └── oauth.dart │ │ │ └── model │ │ │ │ ├── balance.dart │ │ │ │ ├── balance_data_inner.dart │ │ │ │ ├── fills.dart │ │ │ │ ├── message_error.dart │ │ │ │ ├── message_reject.dart │ │ │ │ ├── ord_side.dart │ │ │ │ ├── ord_status.dart │ │ │ │ ├── ord_type.dart │ │ │ │ ├── order_cancel_all_request.dart │ │ │ │ ├── order_cancel_single_request.dart │ │ │ │ ├── order_execution_report.dart │ │ │ │ ├── order_execution_report_all_of.dart │ │ │ │ ├── order_history.dart │ │ │ │ ├── order_new_single_request.dart │ │ │ │ ├── position.dart │ │ │ │ ├── position_data_inner.dart │ │ │ │ ├── reject_reason.dart │ │ │ │ ├── time_in_force.dart │ │ │ │ └── validation_error.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── balance_data_inner_test.dart │ │ │ ├── balance_test.dart │ │ │ ├── balances_api_test.dart │ │ │ ├── fills_test.dart │ │ │ ├── message_error_test.dart │ │ │ ├── message_reject_test.dart │ │ │ ├── ord_side_test.dart │ │ │ ├── ord_status_test.dart │ │ │ ├── ord_type_test.dart │ │ │ ├── order_cancel_all_request_test.dart │ │ │ ├── order_cancel_single_request_test.dart │ │ │ ├── order_execution_report_all_of_test.dart │ │ │ ├── order_execution_report_test.dart │ │ │ ├── order_history_test.dart │ │ │ ├── order_new_single_request_test.dart │ │ │ ├── orders_api_test.dart │ │ │ ├── position_data_inner_test.dart │ │ │ ├── position_test.dart │ │ │ ├── positions_api_test.dart │ │ │ ├── reject_reason_test.dart │ │ │ ├── time_in_force_test.dart │ │ │ └── validation_error_test.dart │ │ ├── eiffel │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── api_client.ecf │ │ ├── docs │ │ │ ├── BALANCE.md │ │ │ ├── BALANCES_API.md │ │ │ ├── BALANCE_DATA_INNER.md │ │ │ ├── FILLS.md │ │ │ ├── MESSAGE_ERROR.md │ │ │ ├── MESSAGE_REJECT.md │ │ │ ├── ORDERS_API.md │ │ │ ├── ORDER_CANCEL_ALL_REQUEST.md │ │ │ ├── ORDER_CANCEL_SINGLE_REQUEST.md │ │ │ ├── ORDER_EXECUTION_REPORT.md │ │ │ ├── ORDER_EXECUTION_REPORT_ALL_OF.md │ │ │ ├── ORDER_HISTORY.md │ │ │ ├── ORDER_NEW_SINGLE_REQUEST.md │ │ │ ├── ORD_SIDE.md │ │ │ ├── ORD_STATUS.md │ │ │ ├── ORD_TYPE.md │ │ │ ├── POSITION.md │ │ │ ├── POSITIONS_API.md │ │ │ ├── POSITION_DATA_INNER.md │ │ │ ├── REJECT_REASON.md │ │ │ ├── TIME_IN_FORCE.md │ │ │ └── VALIDATION_ERROR.md │ │ ├── src │ │ │ ├── api │ │ │ │ ├── balances_api.e │ │ │ │ ├── orders_api.e │ │ │ │ └── positions_api.e │ │ │ ├── api_client.e │ │ │ ├── domain │ │ │ │ ├── balance.e │ │ │ │ ├── balance_data_inner.e │ │ │ │ ├── fills.e │ │ │ │ ├── message_error.e │ │ │ │ ├── message_reject.e │ │ │ │ ├── ord_side.e │ │ │ │ ├── ord_status.e │ │ │ │ ├── ord_type.e │ │ │ │ ├── order_cancel_all_request.e │ │ │ │ ├── order_cancel_single_request.e │ │ │ │ ├── order_execution_report.e │ │ │ │ ├── order_execution_report_all_of.e │ │ │ │ ├── order_history.e │ │ │ │ ├── order_new_single_request.e │ │ │ │ ├── position.e │ │ │ │ ├── position_data_inner.e │ │ │ │ ├── reject_reason.e │ │ │ │ ├── time_in_force.e │ │ │ │ └── validation_error.e │ │ │ └── framework │ │ │ │ ├── api_client_request.e │ │ │ │ ├── api_client_response.e │ │ │ │ ├── api_error.e │ │ │ │ ├── api_i.e │ │ │ │ ├── auth │ │ │ │ ├── api_key_auth.e │ │ │ │ ├── authentication.e │ │ │ │ ├── http_basic_auth.e │ │ │ │ └── oauth.e │ │ │ │ ├── configuration.e │ │ │ │ └── serialization │ │ │ │ ├── api_deserializer.e │ │ │ │ ├── api_json_deserializer.e │ │ │ │ ├── api_json_serializer.e │ │ │ │ ├── api_serializer.e │ │ │ │ ├── json_basic_reflector_deserializer.e │ │ │ │ └── json_type_utilities_ext.e │ │ └── test │ │ │ ├── api_test.ecf │ │ │ ├── apis │ │ │ ├── balances_api_test.e │ │ │ ├── orders_api_test.e │ │ │ └── positions_api_test.e │ │ │ └── application.e │ │ ├── elixir │ │ ├── .formatter.exs │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── config │ │ │ ├── config.exs │ │ │ └── runtime.exs │ │ ├── lib │ │ │ └── ems_restapi │ │ │ │ ├── api │ │ │ │ ├── balances.ex │ │ │ │ ├── orders.ex │ │ │ │ └── positions.ex │ │ │ │ ├── connection.ex │ │ │ │ ├── deserializer.ex │ │ │ │ ├── model │ │ │ │ ├── balance.ex │ │ │ │ ├── balance_data_inner.ex │ │ │ │ ├── fills.ex │ │ │ │ ├── message_error.ex │ │ │ │ ├── message_reject.ex │ │ │ │ ├── ord_side.ex │ │ │ │ ├── ord_status.ex │ │ │ │ ├── ord_type.ex │ │ │ │ ├── order_cancel_all_request.ex │ │ │ │ ├── order_cancel_single_request.ex │ │ │ │ ├── order_execution_report.ex │ │ │ │ ├── order_execution_report_all_of.ex │ │ │ │ ├── order_history.ex │ │ │ │ ├── order_new_single_request.ex │ │ │ │ ├── position.ex │ │ │ │ ├── position_data_inner.ex │ │ │ │ ├── reject_reason.ex │ │ │ │ ├── time_in_force.ex │ │ │ │ └── validation_error.ex │ │ │ │ └── request_builder.ex │ │ ├── mix.exs │ │ └── test │ │ │ └── test_helper.exs │ │ ├── elm │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── elm.json │ │ └── src │ │ │ ├── Api.elm │ │ │ └── Api │ │ │ ├── Data.elm │ │ │ ├── Request │ │ │ ├── Balances.elm │ │ │ ├── Orders.elm │ │ │ └── Positions.elm │ │ │ └── Time.elm │ │ ├── erlang-client │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── rebar.config │ │ └── src │ │ │ ├── openapi.app.src │ │ │ ├── openapi_balance.erl │ │ │ ├── openapi_balance_data_inner.erl │ │ │ ├── openapi_balances_api.erl │ │ │ ├── openapi_fills.erl │ │ │ ├── openapi_message_error.erl │ │ │ ├── openapi_message_reject.erl │ │ │ ├── openapi_ord_side.erl │ │ │ ├── openapi_ord_status.erl │ │ │ ├── openapi_ord_type.erl │ │ │ ├── openapi_order_cancel_all_request.erl │ │ │ ├── openapi_order_cancel_single_request.erl │ │ │ ├── openapi_order_execution_report.erl │ │ │ ├── openapi_order_execution_report_all_of.erl │ │ │ ├── openapi_order_history.erl │ │ │ ├── openapi_order_new_single_request.erl │ │ │ ├── openapi_orders_api.erl │ │ │ ├── openapi_position.erl │ │ │ ├── openapi_position_data_inner.erl │ │ │ ├── openapi_positions_api.erl │ │ │ ├── openapi_reject_reason.erl │ │ │ ├── openapi_time_in_force.erl │ │ │ ├── openapi_utils.erl │ │ │ └── openapi_validation_error.erl │ │ ├── erlang-proper │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── rebar.config │ │ ├── src │ │ │ ├── model │ │ │ │ ├── openapi_balance.erl │ │ │ │ ├── openapi_balance_data_inner.erl │ │ │ │ ├── openapi_fills.erl │ │ │ │ ├── openapi_message_error.erl │ │ │ │ ├── openapi_message_reject.erl │ │ │ │ ├── openapi_ord_side.erl │ │ │ │ ├── openapi_ord_status.erl │ │ │ │ ├── openapi_ord_type.erl │ │ │ │ ├── openapi_order_cancel_all_request.erl │ │ │ │ ├── openapi_order_cancel_single_request.erl │ │ │ │ ├── openapi_order_execution_report.erl │ │ │ │ ├── openapi_order_execution_report_all_of.erl │ │ │ │ ├── openapi_order_history.erl │ │ │ │ ├── openapi_order_new_single_request.erl │ │ │ │ ├── openapi_position.erl │ │ │ │ ├── openapi_position_data_inner.erl │ │ │ │ ├── openapi_reject_reason.erl │ │ │ │ ├── openapi_time_in_force.erl │ │ │ │ └── openapi_validation_error.erl │ │ │ ├── openapi.app.src │ │ │ ├── openapi.hrl │ │ │ ├── openapi_api.erl │ │ │ ├── openapi_gen.erl │ │ │ ├── openapi_statem.erl │ │ │ ├── openapi_statem.hrl │ │ │ └── openapi_utils.erl │ │ └── test │ │ │ └── prop_openapi.erl │ │ ├── go │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_balances.go │ │ ├── api_orders.go │ │ ├── api_positions.go │ │ ├── client.go │ │ ├── configuration.go │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── model_balance.go │ │ ├── model_balance_data_inner.go │ │ ├── model_fills.go │ │ ├── model_message_error.go │ │ ├── model_message_reject.go │ │ ├── model_ord_side.go │ │ ├── model_ord_status.go │ │ ├── model_ord_type.go │ │ ├── model_order_cancel_all_request.go │ │ ├── model_order_cancel_single_request.go │ │ ├── model_order_execution_report.go │ │ ├── model_order_execution_report_all_of.go │ │ ├── model_order_history.go │ │ ├── model_order_new_single_request.go │ │ ├── model_position.go │ │ ├── model_position_data_inner.go │ │ ├── model_reject_reason.go │ │ ├── model_time_in_force.go │ │ ├── model_validation_error.go │ │ ├── response.go │ │ ├── test │ │ │ ├── api_balances_test.go │ │ │ ├── api_orders_test.go │ │ │ └── api_positions_test.go │ │ └── utils.go │ │ ├── groovy │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── groovy │ │ │ └── org │ │ │ └── openapitools │ │ │ ├── api │ │ │ ├── ApiUtils.groovy │ │ │ ├── BalancesApi.groovy │ │ │ ├── OrdersApi.groovy │ │ │ └── PositionsApi.groovy │ │ │ └── model │ │ │ ├── Balance.groovy │ │ │ ├── BalanceDataInner.groovy │ │ │ ├── Fills.groovy │ │ │ ├── MessageError.groovy │ │ │ ├── MessageReject.groovy │ │ │ ├── OrdSide.groovy │ │ │ ├── OrdStatus.groovy │ │ │ ├── OrdType.groovy │ │ │ ├── OrderCancelAllRequest.groovy │ │ │ ├── OrderCancelSingleRequest.groovy │ │ │ ├── OrderExecutionReport.groovy │ │ │ ├── OrderExecutionReportAllOf.groovy │ │ │ ├── OrderHistory.groovy │ │ │ ├── OrderNewSingleRequest.groovy │ │ │ ├── Position.groovy │ │ │ ├── PositionDataInner.groovy │ │ │ ├── RejectReason.groovy │ │ │ ├── TimeInForce.groovy │ │ │ └── ValidationError.groovy │ │ ├── haskell-http-client │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── Setup.hs │ │ ├── ems---rest.cabal │ │ ├── git_push.sh │ │ ├── lib │ │ │ ├── EMS-REST.hs │ │ │ └── EMS-REST │ │ │ │ ├── API.hs │ │ │ │ ├── API │ │ │ │ ├── Balances.hs │ │ │ │ ├── Orders.hs │ │ │ │ └── Positions.hs │ │ │ │ ├── Client.hs │ │ │ │ ├── Core.hs │ │ │ │ ├── Logging.hs │ │ │ │ ├── LoggingKatip.hs │ │ │ │ ├── LoggingMonadLogger.hs │ │ │ │ ├── MimeTypes.hs │ │ │ │ ├── Model.hs │ │ │ │ └── ModelLens.hs │ │ ├── openapi.yaml │ │ ├── stack.yaml │ │ └── tests │ │ │ ├── ApproxEq.hs │ │ │ ├── Instances.hs │ │ │ ├── PropMime.hs │ │ │ └── Test.hs │ │ ├── java │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── maven.yml │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── build.gradle │ │ ├── build.sbt │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── pom.xml │ │ ├── settings.gradle │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── ApiCallback.java │ │ │ │ ├── ApiClient.java │ │ │ │ ├── ApiException.java │ │ │ │ ├── ApiResponse.java │ │ │ │ ├── Configuration.java │ │ │ │ ├── GzipRequestInterceptor.java │ │ │ │ ├── JSON.java │ │ │ │ ├── Pair.java │ │ │ │ ├── ProgressRequestBody.java │ │ │ │ ├── ProgressResponseBody.java │ │ │ │ ├── ServerConfiguration.java │ │ │ │ ├── ServerVariable.java │ │ │ │ ├── StringUtil.java │ │ │ │ ├── api │ │ │ │ ├── BalancesApi.java │ │ │ │ ├── OrdersApi.java │ │ │ │ └── PositionsApi.java │ │ │ │ ├── auth │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ ├── Authentication.java │ │ │ │ ├── HttpBasicAuth.java │ │ │ │ └── HttpBearerAuth.java │ │ │ │ └── model │ │ │ │ ├── AbstractOpenApiSchema.java │ │ │ │ ├── Balance.java │ │ │ │ ├── BalanceDataInner.java │ │ │ │ ├── Fills.java │ │ │ │ ├── MessageError.java │ │ │ │ ├── MessageReject.java │ │ │ │ ├── OrdSide.java │ │ │ │ ├── OrdStatus.java │ │ │ │ ├── OrdType.java │ │ │ │ ├── OrderCancelAllRequest.java │ │ │ │ ├── OrderCancelSingleRequest.java │ │ │ │ ├── OrderExecutionReport.java │ │ │ │ ├── OrderExecutionReportAllOf.java │ │ │ │ ├── OrderHistory.java │ │ │ │ ├── OrderNewSingleRequest.java │ │ │ │ ├── Position.java │ │ │ │ ├── PositionDataInner.java │ │ │ │ ├── RejectReason.java │ │ │ │ ├── TimeInForce.java │ │ │ │ └── ValidationError.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── openapitools │ │ │ └── client │ │ │ ├── api │ │ │ ├── BalancesApiTest.java │ │ │ ├── OrdersApiTest.java │ │ │ └── PositionsApiTest.java │ │ │ └── model │ │ │ ├── BalanceDataInnerTest.java │ │ │ ├── BalanceTest.java │ │ │ ├── FillsTest.java │ │ │ ├── MessageErrorTest.java │ │ │ ├── MessageRejectTest.java │ │ │ ├── OrdSideTest.java │ │ │ ├── OrdStatusTest.java │ │ │ ├── OrdTypeTest.java │ │ │ ├── OrderCancelAllRequestTest.java │ │ │ ├── OrderCancelSingleRequestTest.java │ │ │ ├── OrderExecutionReportAllOfTest.java │ │ │ ├── OrderExecutionReportTest.java │ │ │ ├── OrderHistoryTest.java │ │ │ ├── OrderNewSingleRequestTest.java │ │ │ ├── PositionDataInnerTest.java │ │ │ ├── PositionTest.java │ │ │ ├── RejectReasonTest.java │ │ │ ├── TimeInForceTest.java │ │ │ └── ValidationErrorTest.java │ │ ├── javascript-closure-angular │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ └── API │ │ │ └── Client │ │ │ ├── Balance.js │ │ │ ├── BalanceDataInner.js │ │ │ ├── BalancesApi.js │ │ │ ├── Fills.js │ │ │ ├── MessageError.js │ │ │ ├── MessageReject.js │ │ │ ├── OrdSide.js │ │ │ ├── OrdStatus.js │ │ │ ├── OrdType.js │ │ │ ├── OrderCancelAllRequest.js │ │ │ ├── OrderCancelSingleRequest.js │ │ │ ├── OrderExecutionReport.js │ │ │ ├── OrderExecutionReportAllOf.js │ │ │ ├── OrderHistory.js │ │ │ ├── OrderNewSingleRequest.js │ │ │ ├── OrdersApi.js │ │ │ ├── Position.js │ │ │ ├── PositionDataInner.js │ │ │ ├── PositionsApi.js │ │ │ ├── RejectReason.js │ │ │ ├── TimeInForce.js │ │ │ └── ValidationError.js │ │ ├── javascript-flowtyped │ │ ├── .babelrc │ │ ├── .flowconfig │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ ├── api.js │ │ │ ├── configuration.js │ │ │ └── index.js │ │ ├── javascript │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── mocha.opts │ │ ├── package.json │ │ ├── src │ │ │ ├── ApiClient.js │ │ │ ├── api │ │ │ │ ├── BalancesApi.js │ │ │ │ ├── OrdersApi.js │ │ │ │ └── PositionsApi.js │ │ │ ├── index.js │ │ │ └── model │ │ │ │ ├── Balance.js │ │ │ │ ├── BalanceDataInner.js │ │ │ │ ├── Fills.js │ │ │ │ ├── MessageError.js │ │ │ │ ├── MessageReject.js │ │ │ │ ├── OrdSide.js │ │ │ │ ├── OrdStatus.js │ │ │ │ ├── OrdType.js │ │ │ │ ├── OrderCancelAllRequest.js │ │ │ │ ├── OrderCancelSingleRequest.js │ │ │ │ ├── OrderExecutionReport.js │ │ │ │ ├── OrderExecutionReportAllOf.js │ │ │ │ ├── OrderHistory.js │ │ │ │ ├── OrderNewSingleRequest.js │ │ │ │ ├── Position.js │ │ │ │ ├── PositionDataInner.js │ │ │ │ ├── RejectReason.js │ │ │ │ ├── TimeInForce.js │ │ │ │ └── ValidationError.js │ │ └── test │ │ │ ├── api │ │ │ ├── BalancesApi.spec.js │ │ │ ├── OrdersApi.spec.js │ │ │ └── PositionsApi.spec.js │ │ │ └── model │ │ │ ├── Balance.spec.js │ │ │ ├── BalanceDataInner.spec.js │ │ │ ├── Fills.spec.js │ │ │ ├── MessageError.spec.js │ │ │ ├── MessageReject.spec.js │ │ │ ├── OrdSide.spec.js │ │ │ ├── OrdStatus.spec.js │ │ │ ├── OrdType.spec.js │ │ │ ├── OrderCancelAllRequest.spec.js │ │ │ ├── OrderCancelSingleRequest.spec.js │ │ │ ├── OrderExecutionReport.spec.js │ │ │ ├── OrderExecutionReportAllOf.spec.js │ │ │ ├── OrderHistory.spec.js │ │ │ ├── OrderNewSingleRequest.spec.js │ │ │ ├── Position.spec.js │ │ │ ├── PositionDataInner.spec.js │ │ │ ├── RejectReason.spec.js │ │ │ ├── TimeInForce.spec.js │ │ │ └── ValidationError.spec.js │ │ ├── kotlin │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── build.gradle │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── org │ │ │ └── openapitools │ │ │ └── client │ │ │ ├── apis │ │ │ ├── BalancesApi.kt │ │ │ ├── OrdersApi.kt │ │ │ └── PositionsApi.kt │ │ │ ├── infrastructure │ │ │ ├── ApiAbstractions.kt │ │ │ ├── ApiClient.kt │ │ │ ├── ApiResponse.kt │ │ │ ├── BigDecimalAdapter.kt │ │ │ ├── BigIntegerAdapter.kt │ │ │ ├── ByteArrayAdapter.kt │ │ │ ├── Errors.kt │ │ │ ├── LocalDateAdapter.kt │ │ │ ├── LocalDateTimeAdapter.kt │ │ │ ├── OffsetDateTimeAdapter.kt │ │ │ ├── PartConfig.kt │ │ │ ├── RequestConfig.kt │ │ │ ├── RequestMethod.kt │ │ │ ├── ResponseExtensions.kt │ │ │ ├── Serializer.kt │ │ │ ├── URIAdapter.kt │ │ │ └── UUIDAdapter.kt │ │ │ └── models │ │ │ ├── Balance.kt │ │ │ ├── BalanceDataInner.kt │ │ │ ├── Fills.kt │ │ │ ├── MessageError.kt │ │ │ ├── MessageReject.kt │ │ │ ├── OrdSide.kt │ │ │ ├── OrdStatus.kt │ │ │ ├── OrdType.kt │ │ │ ├── OrderCancelAllRequest.kt │ │ │ ├── OrderCancelSingleRequest.kt │ │ │ ├── OrderExecutionReport.kt │ │ │ ├── OrderExecutionReportAllOf.kt │ │ │ ├── OrderHistory.kt │ │ │ ├── OrderNewSingleRequest.kt │ │ │ ├── Position.kt │ │ │ ├── PositionDataInner.kt │ │ │ ├── RejectReason.kt │ │ │ ├── TimeInForce.kt │ │ │ └── ValidationError.kt │ │ ├── lua │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── git_push.sh │ │ ├── openapiclient-1.0.0-1.rockspec │ │ ├── openapiclient │ │ │ ├── api │ │ │ │ ├── balances_api.lua │ │ │ │ ├── orders_api.lua │ │ │ │ └── positions_api.lua │ │ │ └── model │ │ │ │ ├── balance.lua │ │ │ │ ├── balance_data_inner.lua │ │ │ │ ├── fills.lua │ │ │ │ ├── message_error.lua │ │ │ │ ├── message_reject.lua │ │ │ │ ├── ord_side.lua │ │ │ │ ├── ord_status.lua │ │ │ │ ├── ord_type.lua │ │ │ │ ├── order_cancel_all_request.lua │ │ │ │ ├── order_cancel_single_request.lua │ │ │ │ ├── order_execution_report.lua │ │ │ │ ├── order_execution_report_all_of.lua │ │ │ │ ├── order_history.lua │ │ │ │ ├── order_new_single_request.lua │ │ │ │ ├── position.lua │ │ │ │ ├── position_data_inner.lua │ │ │ │ ├── reject_reason.lua │ │ │ │ ├── time_in_force.lua │ │ │ │ └── validation_error.lua │ │ └── spec │ │ │ ├── balance_data_inner_spec.lua │ │ │ ├── balance_spec.lua │ │ │ ├── balances_api_spec.lua │ │ │ ├── fills_spec.lua │ │ │ ├── message_error_spec.lua │ │ │ ├── message_reject_spec.lua │ │ │ ├── ord_side_spec.lua │ │ │ ├── ord_status_spec.lua │ │ │ ├── ord_type_spec.lua │ │ │ ├── order_cancel_all_request_spec.lua │ │ │ ├── order_cancel_single_request_spec.lua │ │ │ ├── order_execution_report_all_of_spec.lua │ │ │ ├── order_execution_report_spec.lua │ │ │ ├── order_history_spec.lua │ │ │ ├── order_new_single_request_spec.lua │ │ │ ├── orders_api_spec.lua │ │ │ ├── position_data_inner_spec.lua │ │ │ ├── position_spec.lua │ │ │ ├── positions_api_spec.lua │ │ │ ├── reject_reason_spec.lua │ │ │ ├── time_in_force_spec.lua │ │ │ └── validation_error_spec.lua │ │ ├── perl │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── bin │ │ │ └── autodoc │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── lib │ │ │ └── WWW │ │ │ │ └── OpenAPIClient │ │ │ │ ├── ApiClient.pm │ │ │ │ ├── ApiFactory.pm │ │ │ │ ├── BalancesApi.pm │ │ │ │ ├── Configuration.pm │ │ │ │ ├── Object │ │ │ │ ├── Balance.pm │ │ │ │ ├── BalanceDataInner.pm │ │ │ │ ├── Fills.pm │ │ │ │ ├── MessageError.pm │ │ │ │ ├── MessageReject.pm │ │ │ │ ├── OrdSide.pm │ │ │ │ ├── OrdStatus.pm │ │ │ │ ├── OrdType.pm │ │ │ │ ├── OrderCancelAllRequest.pm │ │ │ │ ├── OrderCancelSingleRequest.pm │ │ │ │ ├── OrderExecutionReport.pm │ │ │ │ ├── OrderExecutionReportAllOf.pm │ │ │ │ ├── OrderHistory.pm │ │ │ │ ├── OrderNewSingleRequest.pm │ │ │ │ ├── Position.pm │ │ │ │ ├── PositionDataInner.pm │ │ │ │ ├── RejectReason.pm │ │ │ │ ├── TimeInForce.pm │ │ │ │ └── ValidationError.pm │ │ │ │ ├── OrdersApi.pm │ │ │ │ ├── PositionsApi.pm │ │ │ │ ├── Role.pm │ │ │ │ └── Role │ │ │ │ └── AutoDoc.pm │ │ └── t │ │ │ ├── BalanceDataInnerTest.t │ │ │ ├── BalanceTest.t │ │ │ ├── BalancesApiTest.t │ │ │ ├── FillsTest.t │ │ │ ├── MessageErrorTest.t │ │ │ ├── MessageRejectTest.t │ │ │ ├── OrdSideTest.t │ │ │ ├── OrdStatusTest.t │ │ │ ├── OrdTypeTest.t │ │ │ ├── OrderCancelAllRequestTest.t │ │ │ ├── OrderCancelSingleRequestTest.t │ │ │ ├── OrderExecutionReportAllOfTest.t │ │ │ ├── OrderExecutionReportTest.t │ │ │ ├── OrderHistoryTest.t │ │ │ ├── OrderNewSingleRequestTest.t │ │ │ ├── OrdersApiTest.t │ │ │ ├── PositionDataInnerTest.t │ │ │ ├── PositionTest.t │ │ │ ├── PositionsApiTest.t │ │ │ ├── RejectReasonTest.t │ │ │ ├── TimeInForceTest.t │ │ │ └── ValidationErrorTest.t │ │ ├── php │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .php-cs-fixer.dist.php │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ ├── Api │ │ │ │ ├── BalancesApi.md │ │ │ │ ├── OrdersApi.md │ │ │ │ └── PositionsApi.md │ │ │ └── Model │ │ │ │ ├── Balance.md │ │ │ │ ├── BalanceDataInner.md │ │ │ │ ├── Fills.md │ │ │ │ ├── MessageError.md │ │ │ │ ├── MessageReject.md │ │ │ │ ├── OrdSide.md │ │ │ │ ├── OrdStatus.md │ │ │ │ ├── OrdType.md │ │ │ │ ├── OrderCancelAllRequest.md │ │ │ │ ├── OrderCancelSingleRequest.md │ │ │ │ ├── OrderExecutionReport.md │ │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ │ ├── OrderHistory.md │ │ │ │ ├── OrderNewSingleRequest.md │ │ │ │ ├── Position.md │ │ │ │ ├── PositionDataInner.md │ │ │ │ ├── RejectReason.md │ │ │ │ ├── TimeInForce.md │ │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── lib │ │ │ ├── Api │ │ │ │ ├── BalancesApi.php │ │ │ │ ├── OrdersApi.php │ │ │ │ └── PositionsApi.php │ │ │ ├── ApiException.php │ │ │ ├── Configuration.php │ │ │ ├── HeaderSelector.php │ │ │ ├── Model │ │ │ │ ├── Balance.php │ │ │ │ ├── BalanceDataInner.php │ │ │ │ ├── Fills.php │ │ │ │ ├── MessageError.php │ │ │ │ ├── MessageReject.php │ │ │ │ ├── ModelInterface.php │ │ │ │ ├── OrdSide.php │ │ │ │ ├── OrdStatus.php │ │ │ │ ├── OrdType.php │ │ │ │ ├── OrderCancelAllRequest.php │ │ │ │ ├── OrderCancelSingleRequest.php │ │ │ │ ├── OrderExecutionReport.php │ │ │ │ ├── OrderExecutionReportAllOf.php │ │ │ │ ├── OrderHistory.php │ │ │ │ ├── OrderNewSingleRequest.php │ │ │ │ ├── Position.php │ │ │ │ ├── PositionDataInner.php │ │ │ │ ├── RejectReason.php │ │ │ │ ├── TimeInForce.php │ │ │ │ └── ValidationError.php │ │ │ └── ObjectSerializer.php │ │ ├── phpunit.xml.dist │ │ └── test │ │ │ ├── Api │ │ │ ├── BalancesApiTest.php │ │ │ ├── OrdersApiTest.php │ │ │ └── PositionsApiTest.php │ │ │ └── Model │ │ │ ├── BalanceDataInnerTest.php │ │ │ ├── BalanceTest.php │ │ │ ├── FillsTest.php │ │ │ ├── MessageErrorTest.php │ │ │ ├── MessageRejectTest.php │ │ │ ├── OrdSideTest.php │ │ │ ├── OrdStatusTest.php │ │ │ ├── OrdTypeTest.php │ │ │ ├── OrderCancelAllRequestTest.php │ │ │ ├── OrderCancelSingleRequestTest.php │ │ │ ├── OrderExecutionReportAllOfTest.php │ │ │ ├── OrderExecutionReportTest.php │ │ │ ├── OrderHistoryTest.php │ │ │ ├── OrderNewSingleRequestTest.php │ │ │ ├── PositionDataInnerTest.php │ │ │ ├── PositionTest.php │ │ │ ├── RejectReasonTest.php │ │ │ ├── TimeInForceTest.php │ │ │ └── ValidationErrorTest.php │ │ ├── powershell │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── Build.ps1 │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── src │ │ │ └── PSOpenAPITools │ │ │ │ ├── Api │ │ │ │ ├── BalancesApi.ps1 │ │ │ │ ├── OrdersApi.ps1 │ │ │ │ └── PositionsApi.ps1 │ │ │ │ ├── Client │ │ │ │ └── Configuration.ps1 │ │ │ │ ├── Model │ │ │ │ ├── Balance.ps1 │ │ │ │ ├── BalanceDataInner.ps1 │ │ │ │ ├── Fills.ps1 │ │ │ │ ├── MessageError.ps1 │ │ │ │ ├── MessageReject.ps1 │ │ │ │ ├── OrdSide.ps1 │ │ │ │ ├── OrdStatus.ps1 │ │ │ │ ├── OrdType.ps1 │ │ │ │ ├── OrderCancelAllRequest.ps1 │ │ │ │ ├── OrderCancelSingleRequest.ps1 │ │ │ │ ├── OrderExecutionReport.ps1 │ │ │ │ ├── OrderExecutionReportAllOf.ps1 │ │ │ │ ├── OrderHistory.ps1 │ │ │ │ ├── OrderNewSingleRequest.ps1 │ │ │ │ ├── Position.ps1 │ │ │ │ ├── PositionDataInner.ps1 │ │ │ │ ├── RejectReason.ps1 │ │ │ │ ├── TimeInForce.ps1 │ │ │ │ └── ValidationError.ps1 │ │ │ │ ├── PSOpenAPITools.psm1 │ │ │ │ ├── Private │ │ │ │ ├── ApiClient.ps1 │ │ │ │ ├── Get-CommonParameters.ps1 │ │ │ │ ├── HttpSignatureAuth.ps1 │ │ │ │ ├── Out-DebugParameter.ps1 │ │ │ │ └── RSAEncryptionProvider.cs │ │ │ │ └── en-US │ │ │ │ └── about_PSOpenAPITools.help.txt │ │ └── tests │ │ │ ├── Api │ │ │ ├── BalancesApi.Tests.ps1 │ │ │ ├── OrdersApi.Tests.ps1 │ │ │ └── PositionsApi.Tests.ps1 │ │ │ └── Model │ │ │ ├── Balance.Tests.ps1 │ │ │ ├── BalanceDataInner.Tests.ps1 │ │ │ ├── Fills.Tests.ps1 │ │ │ ├── MessageError.Tests.ps1 │ │ │ ├── MessageReject.Tests.ps1 │ │ │ ├── OrdSide.Tests.ps1 │ │ │ ├── OrdStatus.Tests.ps1 │ │ │ ├── OrdType.Tests.ps1 │ │ │ ├── OrderCancelAllRequest.Tests.ps1 │ │ │ ├── OrderCancelSingleRequest.Tests.ps1 │ │ │ ├── OrderExecutionReport.Tests.ps1 │ │ │ ├── OrderExecutionReportAllOf.Tests.ps1 │ │ │ ├── OrderHistory.Tests.ps1 │ │ │ ├── OrderNewSingleRequest.Tests.ps1 │ │ │ ├── Position.Tests.ps1 │ │ │ ├── PositionDataInner.Tests.ps1 │ │ │ ├── RejectReason.Tests.ps1 │ │ │ ├── TimeInForce.Tests.ps1 │ │ │ └── ValidationError.Tests.ps1 │ │ ├── python │ │ ├── .gitignore │ │ ├── .gitlab-ci.yml │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── docs │ │ │ ├── apis │ │ │ │ └── tags │ │ │ │ │ ├── BalancesApi.md │ │ │ │ │ ├── OrdersApi.md │ │ │ │ │ └── PositionsApi.md │ │ │ └── models │ │ │ │ ├── Balance.md │ │ │ │ ├── Balances.md │ │ │ │ ├── ExecInst.md │ │ │ │ ├── Fills.md │ │ │ │ ├── MessageError.md │ │ │ │ ├── MessageReject.md │ │ │ │ ├── OrdSide.md │ │ │ │ ├── OrdStatus.md │ │ │ │ ├── OrdType.md │ │ │ │ ├── OrderCancelAllRequest.md │ │ │ │ ├── OrderCancelSingleRequest.md │ │ │ │ ├── OrderExecutionReport.md │ │ │ │ ├── OrderExecutionReports.md │ │ │ │ ├── OrderHistory.md │ │ │ │ ├── OrderHistoryArray.md │ │ │ │ ├── OrderNewSingleRequest.md │ │ │ │ ├── Position.md │ │ │ │ ├── Positions.md │ │ │ │ ├── RejectReason.md │ │ │ │ ├── TimeInForce.md │ │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── openapi_client │ │ │ ├── __init__.py │ │ │ ├── api_client.py │ │ │ ├── apis │ │ │ │ ├── __init__.py │ │ │ │ ├── path_to_api.py │ │ │ │ ├── paths │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── v1_balances.py │ │ │ │ │ ├── v1_orders.py │ │ │ │ │ ├── v1_orders_cancel.py │ │ │ │ │ ├── v1_orders_cancel_all.py │ │ │ │ │ ├── v1_orders_history.py │ │ │ │ │ ├── v1_orders_status_client_order_id.py │ │ │ │ │ └── v1_positions.py │ │ │ │ ├── tag_to_api.py │ │ │ │ └── tags │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── balances_api.py │ │ │ │ │ ├── orders_api.py │ │ │ │ │ └── positions_api.py │ │ │ ├── configuration.py │ │ │ ├── exceptions.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── balance.py │ │ │ │ ├── balance.pyi │ │ │ │ ├── balances.py │ │ │ │ ├── balances.pyi │ │ │ │ ├── exec_inst.py │ │ │ │ ├── exec_inst.pyi │ │ │ │ ├── fills.py │ │ │ │ ├── fills.pyi │ │ │ │ ├── message_error.py │ │ │ │ ├── message_error.pyi │ │ │ │ ├── message_reject.py │ │ │ │ ├── message_reject.pyi │ │ │ │ ├── ord_side.py │ │ │ │ ├── ord_side.pyi │ │ │ │ ├── ord_status.py │ │ │ │ ├── ord_status.pyi │ │ │ │ ├── ord_type.py │ │ │ │ ├── ord_type.pyi │ │ │ │ ├── order_cancel_all_request.py │ │ │ │ ├── order_cancel_all_request.pyi │ │ │ │ ├── order_cancel_single_request.py │ │ │ │ ├── order_cancel_single_request.pyi │ │ │ │ ├── order_execution_report.py │ │ │ │ ├── order_execution_report.pyi │ │ │ │ ├── order_execution_reports.py │ │ │ │ ├── order_execution_reports.pyi │ │ │ │ ├── order_history.py │ │ │ │ ├── order_history.pyi │ │ │ │ ├── order_history_array.py │ │ │ │ ├── order_history_array.pyi │ │ │ │ ├── order_new_single_request.py │ │ │ │ ├── order_new_single_request.pyi │ │ │ │ ├── position.py │ │ │ │ ├── position.pyi │ │ │ │ ├── positions.py │ │ │ │ ├── positions.pyi │ │ │ │ ├── reject_reason.py │ │ │ │ ├── reject_reason.pyi │ │ │ │ ├── time_in_force.py │ │ │ │ ├── time_in_force.pyi │ │ │ │ ├── validation_error.py │ │ │ │ └── validation_error.pyi │ │ │ ├── models │ │ │ │ └── __init__.py │ │ │ ├── paths │ │ │ │ ├── __init__.py │ │ │ │ ├── v1_balances │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── get.py │ │ │ │ │ └── get.pyi │ │ │ │ ├── v1_orders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── get.py │ │ │ │ │ ├── get.pyi │ │ │ │ │ ├── post.py │ │ │ │ │ └── post.pyi │ │ │ │ ├── v1_orders_cancel │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── post.py │ │ │ │ │ └── post.pyi │ │ │ │ ├── v1_orders_cancel_all │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── post.py │ │ │ │ │ └── post.pyi │ │ │ │ ├── v1_orders_history │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── get.py │ │ │ │ │ └── get.pyi │ │ │ │ ├── v1_orders_status_client_order_id │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── get.py │ │ │ │ │ └── get.pyi │ │ │ │ └── v1_positions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── get.py │ │ │ │ │ └── get.pyi │ │ │ ├── rest.py │ │ │ └── schemas.py │ │ ├── requirements.txt │ │ ├── setup.cfg │ │ ├── setup.py │ │ ├── test-requirements.txt │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_models │ │ │ │ ├── __init__.py │ │ │ │ ├── test_balance.py │ │ │ │ ├── test_balances.py │ │ │ │ ├── test_exec_inst.py │ │ │ │ ├── test_fills.py │ │ │ │ ├── test_message_error.py │ │ │ │ ├── test_message_reject.py │ │ │ │ ├── test_ord_side.py │ │ │ │ ├── test_ord_status.py │ │ │ │ ├── test_ord_type.py │ │ │ │ ├── test_order_cancel_all_request.py │ │ │ │ ├── test_order_cancel_single_request.py │ │ │ │ ├── test_order_execution_report.py │ │ │ │ ├── test_order_execution_reports.py │ │ │ │ ├── test_order_history.py │ │ │ │ ├── test_order_history_array.py │ │ │ │ ├── test_order_new_single_request.py │ │ │ │ ├── test_position.py │ │ │ │ ├── test_positions.py │ │ │ │ ├── test_reject_reason.py │ │ │ │ ├── test_time_in_force.py │ │ │ │ └── test_validation_error.py │ │ │ └── test_paths │ │ │ │ ├── __init__.py │ │ │ │ ├── test_v1_balances │ │ │ │ ├── __init__.py │ │ │ │ └── test_get.py │ │ │ │ ├── test_v1_orders │ │ │ │ ├── __init__.py │ │ │ │ ├── test_get.py │ │ │ │ └── test_post.py │ │ │ │ ├── test_v1_orders_cancel │ │ │ │ ├── __init__.py │ │ │ │ └── test_post.py │ │ │ │ ├── test_v1_orders_cancel_all │ │ │ │ ├── __init__.py │ │ │ │ └── test_post.py │ │ │ │ ├── test_v1_orders_history │ │ │ │ ├── __init__.py │ │ │ │ └── test_get.py │ │ │ │ ├── test_v1_orders_status_client_order_id │ │ │ │ ├── __init__.py │ │ │ │ └── test_get.py │ │ │ │ └── test_v1_positions │ │ │ │ ├── __init__.py │ │ │ │ └── test_get.py │ │ └── tox.ini │ │ ├── r │ │ ├── .Rbuildignore │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── r-client.yaml │ │ ├── .gitignore │ │ ├── .lintr │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── DESCRIPTION │ │ ├── NAMESPACE │ │ ├── R │ │ │ ├── api_client.R │ │ │ ├── api_response.R │ │ │ ├── balance.R │ │ │ ├── balance_data_inner.R │ │ │ ├── balances_api.R │ │ │ ├── fills.R │ │ │ ├── message_error.R │ │ │ ├── message_reject.R │ │ │ ├── ord_side.R │ │ │ ├── ord_status.R │ │ │ ├── ord_type.R │ │ │ ├── order_cancel_all_request.R │ │ │ ├── order_cancel_single_request.R │ │ │ ├── order_execution_report.R │ │ │ ├── order_execution_report_all_of.R │ │ │ ├── order_history.R │ │ │ ├── order_new_single_request.R │ │ │ ├── orders_api.R │ │ │ ├── position.R │ │ │ ├── position_data_inner.R │ │ │ ├── positions_api.R │ │ │ ├── reject_reason.R │ │ │ ├── time_in_force.R │ │ │ └── validation_error.R │ │ ├── README.md │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ └── tests │ │ │ ├── testthat.R │ │ │ └── testthat │ │ │ ├── test_balance.R │ │ │ ├── test_balance_data_inner.R │ │ │ ├── test_balances_api.R │ │ │ ├── test_fills.R │ │ │ ├── test_message_error.R │ │ │ ├── test_message_reject.R │ │ │ ├── test_ord_side.R │ │ │ ├── test_ord_status.R │ │ │ ├── test_ord_type.R │ │ │ ├── test_order_cancel_all_request.R │ │ │ ├── test_order_cancel_single_request.R │ │ │ ├── test_order_execution_report.R │ │ │ ├── test_order_execution_report_all_of.R │ │ │ ├── test_order_history.R │ │ │ ├── test_order_new_single_request.R │ │ │ ├── test_orders_api.R │ │ │ ├── test_position.R │ │ │ ├── test_position_data_inner.R │ │ │ ├── test_positions_api.R │ │ │ ├── test_reject_reason.R │ │ │ ├── test_time_in_force.R │ │ │ └── test_validation_error.R │ │ ├── ruby │ │ ├── .gitignore │ │ ├── .gitlab-ci.yml │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .rspec │ │ ├── .rubocop.yml │ │ ├── .travis.yml │ │ ├── Gemfile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── lib │ │ │ ├── openapi_client.rb │ │ │ └── openapi_client │ │ │ │ ├── api │ │ │ │ ├── balances_api.rb │ │ │ │ ├── orders_api.rb │ │ │ │ └── positions_api.rb │ │ │ │ ├── api_client.rb │ │ │ │ ├── api_error.rb │ │ │ │ ├── configuration.rb │ │ │ │ ├── models │ │ │ │ ├── balance.rb │ │ │ │ ├── balance_data_inner.rb │ │ │ │ ├── fills.rb │ │ │ │ ├── message_error.rb │ │ │ │ ├── message_reject.rb │ │ │ │ ├── ord_side.rb │ │ │ │ ├── ord_status.rb │ │ │ │ ├── ord_type.rb │ │ │ │ ├── order_cancel_all_request.rb │ │ │ │ ├── order_cancel_single_request.rb │ │ │ │ ├── order_execution_report.rb │ │ │ │ ├── order_execution_report_all_of.rb │ │ │ │ ├── order_history.rb │ │ │ │ ├── order_new_single_request.rb │ │ │ │ ├── position.rb │ │ │ │ ├── position_data_inner.rb │ │ │ │ ├── reject_reason.rb │ │ │ │ ├── time_in_force.rb │ │ │ │ └── validation_error.rb │ │ │ │ └── version.rb │ │ ├── openapi_client.gemspec │ │ └── spec │ │ │ ├── api │ │ │ ├── balances_api_spec.rb │ │ │ ├── orders_api_spec.rb │ │ │ └── positions_api_spec.rb │ │ │ ├── api_client_spec.rb │ │ │ ├── configuration_spec.rb │ │ │ ├── models │ │ │ ├── balance_data_inner_spec.rb │ │ │ ├── balance_spec.rb │ │ │ ├── fills_spec.rb │ │ │ ├── message_error_spec.rb │ │ │ ├── message_reject_spec.rb │ │ │ ├── ord_side_spec.rb │ │ │ ├── ord_status_spec.rb │ │ │ ├── ord_type_spec.rb │ │ │ ├── order_cancel_all_request_spec.rb │ │ │ ├── order_cancel_single_request_spec.rb │ │ │ ├── order_execution_report_all_of_spec.rb │ │ │ ├── order_execution_report_spec.rb │ │ │ ├── order_history_spec.rb │ │ │ ├── order_new_single_request_spec.rb │ │ │ ├── position_data_inner_spec.rb │ │ │ ├── position_spec.rb │ │ │ ├── reject_reason_spec.rb │ │ │ ├── time_in_force_spec.rb │ │ │ └── validation_error_spec.rb │ │ │ └── spec_helper.rb │ │ ├── scala-akka │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── build.sbt │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── pom.xml │ │ ├── project │ │ │ └── build.properties │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── reference.conf │ │ │ └── scala │ │ │ └── org │ │ │ └── openapitools │ │ │ └── client │ │ │ ├── api │ │ │ ├── BalancesApi.scala │ │ │ ├── EnumsSerializers.scala │ │ │ ├── OrdersApi.scala │ │ │ └── PositionsApi.scala │ │ │ ├── core │ │ │ ├── ApiInvoker.scala │ │ │ ├── ApiRequest.scala │ │ │ ├── ApiSettings.scala │ │ │ ├── Serializers.scala │ │ │ └── requests.scala │ │ │ └── model │ │ │ ├── Balance.scala │ │ │ ├── BalanceDataInner.scala │ │ │ ├── Fills.scala │ │ │ ├── MessageError.scala │ │ │ ├── MessageReject.scala │ │ │ ├── OrdSide.scala │ │ │ ├── OrdStatus.scala │ │ │ ├── OrdType.scala │ │ │ ├── OrderCancelAllRequest.scala │ │ │ ├── OrderCancelSingleRequest.scala │ │ │ ├── OrderExecutionReport.scala │ │ │ ├── OrderExecutionReportAllOf.scala │ │ │ ├── OrderHistory.scala │ │ │ ├── OrderNewSingleRequest.scala │ │ │ ├── Position.scala │ │ │ ├── PositionDataInner.scala │ │ │ ├── RejectReason.scala │ │ │ ├── TimeInForce.scala │ │ │ └── ValidationError.scala │ │ ├── typescript-angular │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── api.module.ts │ │ ├── api │ │ │ ├── api.ts │ │ │ ├── balances.service.ts │ │ │ ├── orders.service.ts │ │ │ └── positions.service.ts │ │ ├── configuration.ts │ │ ├── encoder.ts │ │ ├── git_push.sh │ │ ├── index.ts │ │ ├── model │ │ │ ├── balance.ts │ │ │ ├── balanceDataInner.ts │ │ │ ├── fills.ts │ │ │ ├── messageError.ts │ │ │ ├── messageReject.ts │ │ │ ├── models.ts │ │ │ ├── ordSide.ts │ │ │ ├── ordStatus.ts │ │ │ ├── ordType.ts │ │ │ ├── orderCancelAllRequest.ts │ │ │ ├── orderCancelSingleRequest.ts │ │ │ ├── orderExecutionReport.ts │ │ │ ├── orderExecutionReportAllOf.ts │ │ │ ├── orderHistory.ts │ │ │ ├── orderNewSingleRequest.ts │ │ │ ├── position.ts │ │ │ ├── positionDataInner.ts │ │ │ ├── rejectReason.ts │ │ │ ├── timeInForce.ts │ │ │ └── validationError.ts │ │ ├── param.ts │ │ └── variables.ts │ │ ├── typescript-jquery │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── api │ │ │ ├── BalancesApi.ts │ │ │ ├── OrdersApi.ts │ │ │ ├── PositionsApi.ts │ │ │ └── api.ts │ │ ├── configuration.ts │ │ ├── git_push.sh │ │ ├── index.ts │ │ ├── model │ │ │ ├── Balance.ts │ │ │ ├── BalanceDataInner.ts │ │ │ ├── Fills.ts │ │ │ ├── MessageError.ts │ │ │ ├── MessageReject.ts │ │ │ ├── OrdSide.ts │ │ │ ├── OrdStatus.ts │ │ │ ├── OrdType.ts │ │ │ ├── OrderCancelAllRequest.ts │ │ │ ├── OrderCancelSingleRequest.ts │ │ │ ├── OrderExecutionReport.ts │ │ │ ├── OrderExecutionReportAllOf.ts │ │ │ ├── OrderHistory.ts │ │ │ ├── OrderNewSingleRequest.ts │ │ │ ├── Position.ts │ │ │ ├── PositionDataInner.ts │ │ │ ├── RejectReason.ts │ │ │ ├── TimeInForce.ts │ │ │ ├── ValidationError.ts │ │ │ └── models.ts │ │ └── variables.ts │ │ ├── typescript-node │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── api.ts │ │ ├── api │ │ │ ├── apis.ts │ │ │ ├── balancesApi.ts │ │ │ ├── ordersApi.ts │ │ │ └── positionsApi.ts │ │ ├── git_push.sh │ │ └── model │ │ │ ├── balance.ts │ │ │ ├── balanceDataInner.ts │ │ │ ├── fills.ts │ │ │ ├── messageError.ts │ │ │ ├── messageReject.ts │ │ │ ├── models.ts │ │ │ ├── ordSide.ts │ │ │ ├── ordStatus.ts │ │ │ ├── ordType.ts │ │ │ ├── orderCancelAllRequest.ts │ │ │ ├── orderCancelSingleRequest.ts │ │ │ ├── orderExecutionReport.ts │ │ │ ├── orderExecutionReportAllOf.ts │ │ │ ├── orderHistory.ts │ │ │ ├── orderNewSingleRequest.ts │ │ │ ├── position.ts │ │ │ ├── positionDataInner.ts │ │ │ ├── rejectReason.ts │ │ │ ├── timeInForce.ts │ │ │ └── validationError.ts │ │ └── typescript-rxjs │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ ├── FILES │ │ └── VERSION │ │ ├── apis │ │ ├── BalancesApi.ts │ │ ├── OrdersApi.ts │ │ ├── PositionsApi.ts │ │ └── index.ts │ │ ├── index.ts │ │ ├── models │ │ ├── Balance.ts │ │ ├── BalanceDataInner.ts │ │ ├── Fills.ts │ │ ├── MessageError.ts │ │ ├── MessageReject.ts │ │ ├── OrdSide.ts │ │ ├── OrdStatus.ts │ │ ├── OrdType.ts │ │ ├── OrderCancelAllRequest.ts │ │ ├── OrderCancelSingleRequest.ts │ │ ├── OrderExecutionReport.ts │ │ ├── OrderExecutionReportAllOf.ts │ │ ├── OrderHistory.ts │ │ ├── OrderNewSingleRequest.ts │ │ ├── Position.ts │ │ ├── PositionDataInner.ts │ │ ├── RejectReason.ts │ │ ├── TimeInForce.ts │ │ ├── ValidationError.ts │ │ └── index.ts │ │ ├── runtime.ts │ │ ├── servers.ts │ │ └── tsconfig.json ├── ems-cloud-mgmt-api │ └── sdk │ │ ├── ada │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── config.gpr │ │ ├── defaultpackage.gpr │ │ └── src │ │ │ ├── -client.adb │ │ │ ├── .ads │ │ │ ├── client │ │ │ ├── -clients.adb │ │ │ └── -clients.ads │ │ │ └── model │ │ │ ├── -models.adb │ │ │ └── -models.ads │ │ ├── android │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── build.gradle │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── org │ │ │ └── openapitools │ │ │ └── client │ │ │ ├── ApiException.java │ │ │ ├── ApiInvoker.java │ │ │ ├── JsonUtil.java │ │ │ ├── Pair.java │ │ │ ├── api │ │ │ ├── BalancesApi.java │ │ │ ├── OrdersApi.java │ │ │ └── PositionsApi.java │ │ │ ├── auth │ │ │ ├── ApiKeyAuth.java │ │ │ ├── Authentication.java │ │ │ └── HttpBasicAuth.java │ │ │ ├── model │ │ │ ├── Balance.java │ │ │ ├── BalanceDataInner.java │ │ │ ├── Fills.java │ │ │ ├── MessageError.java │ │ │ ├── MessageReject.java │ │ │ ├── OrdSide.java │ │ │ ├── OrdStatus.java │ │ │ ├── OrdType.java │ │ │ ├── OrderCancelAllRequest.java │ │ │ ├── OrderCancelSingleRequest.java │ │ │ ├── OrderExecutionReport.java │ │ │ ├── OrderExecutionReportAllOf.java │ │ │ ├── OrderHistory.java │ │ │ ├── OrderNewSingleRequest.java │ │ │ ├── Position.java │ │ │ ├── PositionDataInner.java │ │ │ ├── RejectReason.java │ │ │ ├── TimeInForce.java │ │ │ └── ValidationError.java │ │ │ └── request │ │ │ ├── DeleteRequest.java │ │ │ ├── GetRequest.java │ │ │ ├── PatchRequest.java │ │ │ ├── PostRequest.java │ │ │ └── PutRequest.java │ │ ├── apex │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── config │ │ │ └── project-scratch-def.json │ │ ├── force-app │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── classes │ │ │ │ ├── OAS.cls │ │ │ │ ├── OAS.cls-meta.xml │ │ │ │ ├── OASBalance.cls │ │ │ │ ├── OASBalance.cls-meta.xml │ │ │ │ ├── OASBalanceDataInner.cls │ │ │ │ ├── OASBalanceDataInner.cls-meta.xml │ │ │ │ ├── OASBalanceDataInnerTest.cls │ │ │ │ ├── OASBalanceDataInnerTest.cls-meta.xml │ │ │ │ ├── OASBalanceTest.cls │ │ │ │ ├── OASBalanceTest.cls-meta.xml │ │ │ │ ├── OASBalancesApi.cls │ │ │ │ ├── OASBalancesApi.cls-meta.xml │ │ │ │ ├── OASBalancesApiTest.cls │ │ │ │ ├── OASBalancesApiTest.cls-meta.xml │ │ │ │ ├── OASClient.cls │ │ │ │ ├── OASClient.cls-meta.xml │ │ │ │ ├── OASFills.cls │ │ │ │ ├── OASFills.cls-meta.xml │ │ │ │ ├── OASFillsTest.cls │ │ │ │ ├── OASFillsTest.cls-meta.xml │ │ │ │ ├── OASMessageError.cls │ │ │ │ ├── OASMessageError.cls-meta.xml │ │ │ │ ├── OASMessageErrorTest.cls │ │ │ │ ├── OASMessageErrorTest.cls-meta.xml │ │ │ │ ├── OASMessageReject.cls │ │ │ │ ├── OASMessageReject.cls-meta.xml │ │ │ │ ├── OASMessageRejectTest.cls │ │ │ │ ├── OASMessageRejectTest.cls-meta.xml │ │ │ │ ├── OASOrdSide.cls │ │ │ │ ├── OASOrdSide.cls-meta.xml │ │ │ │ ├── OASOrdSideTest.cls │ │ │ │ ├── OASOrdSideTest.cls-meta.xml │ │ │ │ ├── OASOrdStatus.cls │ │ │ │ ├── OASOrdStatus.cls-meta.xml │ │ │ │ ├── OASOrdStatusTest.cls │ │ │ │ ├── OASOrdStatusTest.cls-meta.xml │ │ │ │ ├── OASOrdType.cls │ │ │ │ ├── OASOrdType.cls-meta.xml │ │ │ │ ├── OASOrdTypeTest.cls │ │ │ │ ├── OASOrdTypeTest.cls-meta.xml │ │ │ │ ├── OASOrderCancelAllRequest.cls │ │ │ │ ├── OASOrderCancelAllRequest.cls-meta.xml │ │ │ │ ├── OASOrderCancelAllRequestTest.cls │ │ │ │ ├── OASOrderCancelAllRequestTest.cls-meta.xml │ │ │ │ ├── OASOrderCancelSingleRequest.cls │ │ │ │ ├── OASOrderCancelSingleRequest.cls-meta.xml │ │ │ │ ├── OASOrderCancelSingleRequestTest.cls │ │ │ │ ├── OASOrderCancelSingleRequestTest.cls-meta.xml │ │ │ │ ├── OASOrderExecutionReport.cls │ │ │ │ ├── OASOrderExecutionReport.cls-meta.xml │ │ │ │ ├── OASOrderExecutionReportAllOf.cls │ │ │ │ ├── OASOrderExecutionReportAllOf.cls-meta.xml │ │ │ │ ├── OASOrderExecutionReportAllOfTest.cls │ │ │ │ ├── OASOrderExecutionReportAllOfTest.cls-meta.xml │ │ │ │ ├── OASOrderExecutionReportTest.cls │ │ │ │ ├── OASOrderExecutionReportTest.cls-meta.xml │ │ │ │ ├── OASOrderHistory.cls │ │ │ │ ├── OASOrderHistory.cls-meta.xml │ │ │ │ ├── OASOrderHistoryTest.cls │ │ │ │ ├── OASOrderHistoryTest.cls-meta.xml │ │ │ │ ├── OASOrderNewSingleRequest.cls │ │ │ │ ├── OASOrderNewSingleRequest.cls-meta.xml │ │ │ │ ├── OASOrderNewSingleRequestTest.cls │ │ │ │ ├── OASOrderNewSingleRequestTest.cls-meta.xml │ │ │ │ ├── OASOrdersApi.cls │ │ │ │ ├── OASOrdersApi.cls-meta.xml │ │ │ │ ├── OASOrdersApiTest.cls │ │ │ │ ├── OASOrdersApiTest.cls-meta.xml │ │ │ │ ├── OASPosition.cls │ │ │ │ ├── OASPosition.cls-meta.xml │ │ │ │ ├── OASPositionDataInner.cls │ │ │ │ ├── OASPositionDataInner.cls-meta.xml │ │ │ │ ├── OASPositionDataInnerTest.cls │ │ │ │ ├── OASPositionDataInnerTest.cls-meta.xml │ │ │ │ ├── OASPositionTest.cls │ │ │ │ ├── OASPositionTest.cls-meta.xml │ │ │ │ ├── OASPositionsApi.cls │ │ │ │ ├── OASPositionsApi.cls-meta.xml │ │ │ │ ├── OASPositionsApiTest.cls │ │ │ │ ├── OASPositionsApiTest.cls-meta.xml │ │ │ │ ├── OASRejectReason.cls │ │ │ │ ├── OASRejectReason.cls-meta.xml │ │ │ │ ├── OASRejectReasonTest.cls │ │ │ │ ├── OASRejectReasonTest.cls-meta.xml │ │ │ │ ├── OASResponseMock.cls │ │ │ │ ├── OASResponseMock.cls-meta.xml │ │ │ │ ├── OASTest.cls │ │ │ │ ├── OASTest.cls-meta.xml │ │ │ │ ├── OASTimeInForce.cls │ │ │ │ ├── OASTimeInForce.cls-meta.xml │ │ │ │ ├── OASTimeInForceTest.cls │ │ │ │ ├── OASTimeInForceTest.cls-meta.xml │ │ │ │ ├── OASValidationError.cls │ │ │ │ ├── OASValidationError.cls-meta.xml │ │ │ │ ├── OASValidationErrorTest.cls │ │ │ │ └── OASValidationErrorTest.cls-meta.xml │ │ │ │ └── namedCredentials │ │ │ │ └── EMS__REST_API.namedCredential-meta.xml │ │ └── sfdx-project.json │ │ ├── bash │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── _client.sh │ │ ├── client.sh │ │ ├── client.sh.bash-completion │ │ └── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── c │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── CMakeLists.txt │ │ ├── Packing.cmake │ │ ├── README.md │ │ ├── api │ │ │ ├── BalancesAPI.c │ │ │ ├── BalancesAPI.h │ │ │ ├── OrdersAPI.c │ │ │ ├── OrdersAPI.h │ │ │ ├── PositionsAPI.c │ │ │ └── PositionsAPI.h │ │ ├── docs │ │ │ ├── BalancesAPI.md │ │ │ ├── OrdersAPI.md │ │ │ ├── PositionsAPI.md │ │ │ ├── balance.md │ │ │ ├── balance_data_inner.md │ │ │ ├── fills.md │ │ │ ├── message_error.md │ │ │ ├── message_reject.md │ │ │ ├── ord_side.md │ │ │ ├── ord_status.md │ │ │ ├── ord_type.md │ │ │ ├── order_cancel_all_request.md │ │ │ ├── order_cancel_single_request.md │ │ │ ├── order_execution_report.md │ │ │ ├── order_execution_report_all_of.md │ │ │ ├── order_history.md │ │ │ ├── order_new_single_request.md │ │ │ ├── position.md │ │ │ ├── position_data_inner.md │ │ │ ├── reject_reason.md │ │ │ ├── time_in_force.md │ │ │ └── validation_error.md │ │ ├── external │ │ │ ├── cJSON.c │ │ │ ├── cJSON.h │ │ │ └── cJSON.licence │ │ ├── include │ │ │ ├── apiClient.h │ │ │ ├── binary.h │ │ │ ├── keyValuePair.h │ │ │ └── list.h │ │ ├── libcurl.licence │ │ ├── model │ │ │ ├── balance.c │ │ │ ├── balance.h │ │ │ ├── balance_data_inner.c │ │ │ ├── balance_data_inner.h │ │ │ ├── fills.c │ │ │ ├── fills.h │ │ │ ├── message_error.c │ │ │ ├── message_error.h │ │ │ ├── message_reject.c │ │ │ ├── message_reject.h │ │ │ ├── object.c │ │ │ ├── object.h │ │ │ ├── ord_side.c │ │ │ ├── ord_side.h │ │ │ ├── ord_status.c │ │ │ ├── ord_status.h │ │ │ ├── ord_type.c │ │ │ ├── ord_type.h │ │ │ ├── order_cancel_all_request.c │ │ │ ├── order_cancel_all_request.h │ │ │ ├── order_cancel_single_request.c │ │ │ ├── order_cancel_single_request.h │ │ │ ├── order_execution_report.c │ │ │ ├── order_execution_report.h │ │ │ ├── order_execution_report_all_of.c │ │ │ ├── order_execution_report_all_of.h │ │ │ ├── order_history.c │ │ │ ├── order_history.h │ │ │ ├── order_new_single_request.c │ │ │ ├── order_new_single_request.h │ │ │ ├── position.c │ │ │ ├── position.h │ │ │ ├── position_data_inner.c │ │ │ ├── position_data_inner.h │ │ │ ├── reject_reason.c │ │ │ ├── reject_reason.h │ │ │ ├── time_in_force.c │ │ │ ├── time_in_force.h │ │ │ ├── validation_error.c │ │ │ └── validation_error.h │ │ ├── src │ │ │ ├── apiClient.c │ │ │ ├── apiKey.c │ │ │ ├── binary.c │ │ │ └── list.c │ │ ├── uncrustify-rules.cfg │ │ └── unit-test │ │ │ ├── test_balance.c │ │ │ ├── test_balance_data_inner.c │ │ │ ├── test_fills.c │ │ │ ├── test_message_error.c │ │ │ ├── test_message_reject.c │ │ │ ├── test_ord_side.c │ │ │ ├── test_ord_status.c │ │ │ ├── test_ord_type.c │ │ │ ├── test_order_cancel_all_request.c │ │ │ ├── test_order_cancel_single_request.c │ │ │ ├── test_order_execution_report.c │ │ │ ├── test_order_execution_report_all_of.c │ │ │ ├── test_order_history.c │ │ │ ├── test_order_new_single_request.c │ │ │ ├── test_position.c │ │ │ ├── test_position_data_inner.c │ │ │ ├── test_reject_reason.c │ │ │ ├── test_time_in_force.c │ │ │ └── test_validation_error.c │ │ ├── clojure │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── git_push.sh │ │ ├── project.clj │ │ └── src │ │ │ └── ems_rest_api │ │ │ ├── api │ │ │ ├── balances.clj │ │ │ ├── orders.clj │ │ │ └── positions.clj │ │ │ ├── core.clj │ │ │ └── specs │ │ │ ├── balance.clj │ │ │ ├── balance_data_inner.clj │ │ │ ├── fills.clj │ │ │ ├── message_error.clj │ │ │ ├── message_reject.clj │ │ │ ├── ord_side.clj │ │ │ ├── ord_status.clj │ │ │ ├── ord_type.clj │ │ │ ├── order_cancel_all_request.clj │ │ │ ├── order_cancel_single_request.clj │ │ │ ├── order_execution_report.clj │ │ │ ├── order_execution_report_all_of.clj │ │ │ ├── order_history.clj │ │ │ ├── order_new_single_request.clj │ │ │ ├── position.clj │ │ │ ├── position_data_inner.clj │ │ │ ├── reject_reason.clj │ │ │ ├── time_in_force.clj │ │ │ └── validation_error.clj │ │ ├── cpp-restsdk │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── CMakeLists.txt │ │ ├── Config.cmake.in │ │ ├── README.md │ │ ├── git_push.sh │ │ ├── include │ │ │ └── CppRestOpenAPIClient │ │ │ │ ├── ApiClient.h │ │ │ │ ├── ApiConfiguration.h │ │ │ │ ├── ApiException.h │ │ │ │ ├── HttpContent.h │ │ │ │ ├── IHttpBody.h │ │ │ │ ├── JsonBody.h │ │ │ │ ├── ModelBase.h │ │ │ │ ├── MultipartFormData.h │ │ │ │ ├── Object.h │ │ │ │ ├── api │ │ │ │ ├── BalancesApi.h │ │ │ │ ├── OrdersApi.h │ │ │ │ └── PositionsApi.h │ │ │ │ └── model │ │ │ │ ├── Balance.h │ │ │ │ ├── Balance_data_inner.h │ │ │ │ ├── Fills.h │ │ │ │ ├── MessageError.h │ │ │ │ ├── MessageReject.h │ │ │ │ ├── OrdSide.h │ │ │ │ ├── OrdStatus.h │ │ │ │ ├── OrdType.h │ │ │ │ ├── OrderCancelAllRequest.h │ │ │ │ ├── OrderCancelSingleRequest.h │ │ │ │ ├── OrderExecutionReport.h │ │ │ │ ├── OrderExecutionReport_allOf.h │ │ │ │ ├── OrderHistory.h │ │ │ │ ├── OrderNewSingleRequest.h │ │ │ │ ├── Position.h │ │ │ │ ├── Position_data_inner.h │ │ │ │ ├── RejectReason.h │ │ │ │ ├── TimeInForce.h │ │ │ │ └── ValidationError.h │ │ └── src │ │ │ ├── ApiClient.cpp │ │ │ ├── ApiConfiguration.cpp │ │ │ ├── ApiException.cpp │ │ │ ├── HttpContent.cpp │ │ │ ├── JsonBody.cpp │ │ │ ├── ModelBase.cpp │ │ │ ├── MultipartFormData.cpp │ │ │ ├── Object.cpp │ │ │ ├── api │ │ │ ├── BalancesApi.cpp │ │ │ ├── OrdersApi.cpp │ │ │ └── PositionsApi.cpp │ │ │ └── model │ │ │ ├── Balance.cpp │ │ │ ├── Balance_data_inner.cpp │ │ │ ├── Fills.cpp │ │ │ ├── MessageError.cpp │ │ │ ├── MessageReject.cpp │ │ │ ├── OrdSide.cpp │ │ │ ├── OrdStatus.cpp │ │ │ ├── OrdType.cpp │ │ │ ├── OrderCancelAllRequest.cpp │ │ │ ├── OrderCancelSingleRequest.cpp │ │ │ ├── OrderExecutionReport.cpp │ │ │ ├── OrderExecutionReport_allOf.cpp │ │ │ ├── OrderHistory.cpp │ │ │ ├── OrderNewSingleRequest.cpp │ │ │ ├── Position.cpp │ │ │ ├── Position_data_inner.cpp │ │ │ ├── RejectReason.cpp │ │ │ ├── TimeInForce.cpp │ │ │ └── ValidationError.cpp │ │ ├── cpp-tizen │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── doc │ │ │ ├── Doxyfile │ │ │ ├── README.md │ │ │ └── generateDocumentation.sh │ │ └── src │ │ │ ├── Balance.cpp │ │ │ ├── Balance.h │ │ │ ├── BalanceDataInner.cpp │ │ │ ├── BalanceDataInner.h │ │ │ ├── BalancesManager.cpp │ │ │ ├── BalancesManager.h │ │ │ ├── Error.cpp │ │ │ ├── Error.h │ │ │ ├── Fills.cpp │ │ │ ├── Fills.h │ │ │ ├── Helpers.cpp │ │ │ ├── Helpers.h │ │ │ ├── MessageError.cpp │ │ │ ├── MessageError.h │ │ │ ├── MessageReject.cpp │ │ │ ├── MessageReject.h │ │ │ ├── NetClient.cpp │ │ │ ├── NetClient.h │ │ │ ├── Object.h │ │ │ ├── OrdSide.cpp │ │ │ ├── OrdSide.h │ │ │ ├── OrdStatus.cpp │ │ │ ├── OrdStatus.h │ │ │ ├── OrdType.cpp │ │ │ ├── OrdType.h │ │ │ ├── OrderCancelAllRequest.cpp │ │ │ ├── OrderCancelAllRequest.h │ │ │ ├── OrderCancelSingleRequest.cpp │ │ │ ├── OrderCancelSingleRequest.h │ │ │ ├── OrderExecutionReport.cpp │ │ │ ├── OrderExecutionReport.h │ │ │ ├── OrderExecutionReportAllOf.cpp │ │ │ ├── OrderExecutionReportAllOf.h │ │ │ ├── OrderHistory.cpp │ │ │ ├── OrderHistory.h │ │ │ ├── OrderNewSingleRequest.cpp │ │ │ ├── OrderNewSingleRequest.h │ │ │ ├── OrdersManager.cpp │ │ │ ├── OrdersManager.h │ │ │ ├── Position.cpp │ │ │ ├── Position.h │ │ │ ├── PositionDataInner.cpp │ │ │ ├── PositionDataInner.h │ │ │ ├── PositionsManager.cpp │ │ │ ├── PositionsManager.h │ │ │ ├── RejectReason.cpp │ │ │ ├── RejectReason.h │ │ │ ├── RequestInfo.h │ │ │ ├── TimeInForce.cpp │ │ │ ├── TimeInForce.h │ │ │ ├── ValidationError.cpp │ │ │ └── ValidationError.h │ │ ├── csharp-netcore │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── CoinAPI.EMS.REST.V1.sln │ │ ├── README.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── appveyor.yml │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ └── src │ │ │ ├── CoinAPI.EMS.REST.V1.Test │ │ │ ├── Api │ │ │ │ ├── BalancesApiTests.cs │ │ │ │ ├── OrdersApiTests.cs │ │ │ │ └── PositionsApiTests.cs │ │ │ ├── CoinAPI.EMS.REST.V1.Test.csproj │ │ │ └── Model │ │ │ │ ├── BalanceDataInnerTests.cs │ │ │ │ ├── BalanceTests.cs │ │ │ │ ├── FillsTests.cs │ │ │ │ ├── MessageErrorTests.cs │ │ │ │ ├── MessageRejectTests.cs │ │ │ │ ├── OrdSideTests.cs │ │ │ │ ├── OrdStatusTests.cs │ │ │ │ ├── OrdTypeTests.cs │ │ │ │ ├── OrderCancelAllRequestTests.cs │ │ │ │ ├── OrderCancelSingleRequestTests.cs │ │ │ │ ├── OrderExecutionReportAllOfTests.cs │ │ │ │ ├── OrderExecutionReportTests.cs │ │ │ │ ├── OrderHistoryTests.cs │ │ │ │ ├── OrderNewSingleRequestTests.cs │ │ │ │ ├── PositionDataInnerTests.cs │ │ │ │ ├── PositionTests.cs │ │ │ │ ├── RejectReasonTests.cs │ │ │ │ ├── TimeInForceTests.cs │ │ │ │ └── ValidationErrorTests.cs │ │ │ └── CoinAPI.EMS.REST.V1 │ │ │ ├── Api │ │ │ ├── BalancesApi.cs │ │ │ ├── OrdersApi.cs │ │ │ └── PositionsApi.cs │ │ │ ├── Client │ │ │ ├── ApiClient.cs │ │ │ ├── ApiException.cs │ │ │ ├── ApiResponse.cs │ │ │ ├── ClientUtils.cs │ │ │ ├── Configuration.cs │ │ │ ├── ExceptionFactory.cs │ │ │ ├── GlobalConfiguration.cs │ │ │ ├── HttpMethod.cs │ │ │ ├── IApiAccessor.cs │ │ │ ├── IAsynchronousClient.cs │ │ │ ├── IReadableConfiguration.cs │ │ │ ├── ISynchronousClient.cs │ │ │ ├── Multimap.cs │ │ │ ├── OpenAPIDateConverter.cs │ │ │ ├── RequestOptions.cs │ │ │ └── RetryConfiguration.cs │ │ │ ├── CoinAPI.EMS.REST.V1.csproj │ │ │ └── Model │ │ │ ├── AbstractOpenAPISchema.cs │ │ │ ├── Balance.cs │ │ │ ├── BalanceDataInner.cs │ │ │ ├── Fills.cs │ │ │ ├── MessageError.cs │ │ │ ├── MessageReject.cs │ │ │ ├── OrdSide.cs │ │ │ ├── OrdStatus.cs │ │ │ ├── OrdType.cs │ │ │ ├── OrderCancelAllRequest.cs │ │ │ ├── OrderCancelSingleRequest.cs │ │ │ ├── OrderExecutionReport.cs │ │ │ ├── OrderExecutionReportAllOf.cs │ │ │ ├── OrderHistory.cs │ │ │ ├── OrderNewSingleRequest.cs │ │ │ ├── Position.cs │ │ │ ├── PositionDataInner.cs │ │ │ ├── RejectReason.cs │ │ │ ├── TimeInForce.cs │ │ │ └── ValidationError.cs │ │ ├── csharp │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── CoinAPI.EMS.REST.V1.sln │ │ ├── README.md │ │ ├── build.bat │ │ ├── build.sh │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── mono_nunit_test.sh │ │ └── src │ │ │ ├── CoinAPI.EMS.REST.V1.Test │ │ │ ├── Api │ │ │ │ ├── BalancesApiTests.cs │ │ │ │ ├── OrdersApiTests.cs │ │ │ │ └── PositionsApiTests.cs │ │ │ ├── CoinAPI.EMS.REST.V1.Test.csproj │ │ │ ├── Model │ │ │ │ ├── BalanceDataInnerTests.cs │ │ │ │ ├── BalanceTests.cs │ │ │ │ ├── FillsTests.cs │ │ │ │ ├── MessageErrorTests.cs │ │ │ │ ├── MessageRejectTests.cs │ │ │ │ ├── OrdSideTests.cs │ │ │ │ ├── OrdStatusTests.cs │ │ │ │ ├── OrdTypeTests.cs │ │ │ │ ├── OrderCancelAllRequestTests.cs │ │ │ │ ├── OrderCancelSingleRequestTests.cs │ │ │ │ ├── OrderExecutionReportAllOfTests.cs │ │ │ │ ├── OrderExecutionReportTests.cs │ │ │ │ ├── OrderHistoryTests.cs │ │ │ │ ├── OrderNewSingleRequestTests.cs │ │ │ │ ├── PositionDataInnerTests.cs │ │ │ │ ├── PositionTests.cs │ │ │ │ ├── RejectReasonTests.cs │ │ │ │ ├── TimeInForceTests.cs │ │ │ │ └── ValidationErrorTests.cs │ │ │ └── packages.config │ │ │ └── CoinAPI.EMS.REST.V1 │ │ │ ├── Api │ │ │ ├── BalancesApi.cs │ │ │ ├── OrdersApi.cs │ │ │ └── PositionsApi.cs │ │ │ ├── Client │ │ │ ├── ApiClient.cs │ │ │ ├── ApiException.cs │ │ │ ├── ApiResponse.cs │ │ │ ├── Configuration.cs │ │ │ ├── ExceptionFactory.cs │ │ │ ├── GlobalConfiguration.cs │ │ │ ├── IApiAccessor.cs │ │ │ ├── IReadableConfiguration.cs │ │ │ └── OpenAPIDateConverter.cs │ │ │ ├── CoinAPI.EMS.REST.V1.csproj │ │ │ ├── CoinAPI.EMS.REST.V1.nuspec │ │ │ ├── Model │ │ │ ├── Balance.cs │ │ │ ├── BalanceDataInner.cs │ │ │ ├── Fills.cs │ │ │ ├── MessageError.cs │ │ │ ├── MessageReject.cs │ │ │ ├── OrdSide.cs │ │ │ ├── OrdStatus.cs │ │ │ ├── OrdType.cs │ │ │ ├── OrderCancelAllRequest.cs │ │ │ ├── OrderCancelSingleRequest.cs │ │ │ ├── OrderExecutionReport.cs │ │ │ ├── OrderExecutionReportAllOf.cs │ │ │ ├── OrderHistory.cs │ │ │ ├── OrderNewSingleRequest.cs │ │ │ ├── Position.cs │ │ │ ├── PositionDataInner.cs │ │ │ ├── RejectReason.cs │ │ │ ├── TimeInForce.cs │ │ │ └── ValidationError.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ │ ├── dart-dio │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── doc │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── lib │ │ │ ├── openapi.dart │ │ │ └── src │ │ │ │ ├── api.dart │ │ │ │ ├── api │ │ │ │ ├── balances_api.dart │ │ │ │ ├── orders_api.dart │ │ │ │ └── positions_api.dart │ │ │ │ ├── api_util.dart │ │ │ │ ├── auth │ │ │ │ ├── api_key_auth.dart │ │ │ │ ├── auth.dart │ │ │ │ ├── basic_auth.dart │ │ │ │ ├── bearer_auth.dart │ │ │ │ └── oauth.dart │ │ │ │ ├── date_serializer.dart │ │ │ │ ├── model │ │ │ │ ├── balance.dart │ │ │ │ ├── balance_data_inner.dart │ │ │ │ ├── date.dart │ │ │ │ ├── fills.dart │ │ │ │ ├── message_error.dart │ │ │ │ ├── message_reject.dart │ │ │ │ ├── ord_side.dart │ │ │ │ ├── ord_status.dart │ │ │ │ ├── ord_type.dart │ │ │ │ ├── order_cancel_all_request.dart │ │ │ │ ├── order_cancel_single_request.dart │ │ │ │ ├── order_execution_report.dart │ │ │ │ ├── order_execution_report_all_of.dart │ │ │ │ ├── order_history.dart │ │ │ │ ├── order_new_single_request.dart │ │ │ │ ├── position.dart │ │ │ │ ├── position_data_inner.dart │ │ │ │ ├── reject_reason.dart │ │ │ │ ├── time_in_force.dart │ │ │ │ └── validation_error.dart │ │ │ │ └── serializers.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── balance_data_inner_test.dart │ │ │ ├── balance_test.dart │ │ │ ├── balances_api_test.dart │ │ │ ├── fills_test.dart │ │ │ ├── message_error_test.dart │ │ │ ├── message_reject_test.dart │ │ │ ├── ord_side_test.dart │ │ │ ├── ord_status_test.dart │ │ │ ├── ord_type_test.dart │ │ │ ├── order_cancel_all_request_test.dart │ │ │ ├── order_cancel_single_request_test.dart │ │ │ ├── order_execution_report_all_of_test.dart │ │ │ ├── order_execution_report_test.dart │ │ │ ├── order_history_test.dart │ │ │ ├── order_new_single_request_test.dart │ │ │ ├── orders_api_test.dart │ │ │ ├── position_data_inner_test.dart │ │ │ ├── position_test.dart │ │ │ ├── positions_api_test.dart │ │ │ ├── reject_reason_test.dart │ │ │ ├── time_in_force_test.dart │ │ │ └── validation_error_test.dart │ │ ├── dart │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── doc │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── lib │ │ │ ├── api.dart │ │ │ ├── api │ │ │ │ ├── balances_api.dart │ │ │ │ ├── orders_api.dart │ │ │ │ └── positions_api.dart │ │ │ ├── api_client.dart │ │ │ ├── api_exception.dart │ │ │ ├── api_helper.dart │ │ │ ├── auth │ │ │ │ ├── api_key_auth.dart │ │ │ │ ├── authentication.dart │ │ │ │ ├── http_basic_auth.dart │ │ │ │ ├── http_bearer_auth.dart │ │ │ │ └── oauth.dart │ │ │ └── model │ │ │ │ ├── balance.dart │ │ │ │ ├── balance_data_inner.dart │ │ │ │ ├── fills.dart │ │ │ │ ├── message_error.dart │ │ │ │ ├── message_reject.dart │ │ │ │ ├── ord_side.dart │ │ │ │ ├── ord_status.dart │ │ │ │ ├── ord_type.dart │ │ │ │ ├── order_cancel_all_request.dart │ │ │ │ ├── order_cancel_single_request.dart │ │ │ │ ├── order_execution_report.dart │ │ │ │ ├── order_execution_report_all_of.dart │ │ │ │ ├── order_history.dart │ │ │ │ ├── order_new_single_request.dart │ │ │ │ ├── position.dart │ │ │ │ ├── position_data_inner.dart │ │ │ │ ├── reject_reason.dart │ │ │ │ ├── time_in_force.dart │ │ │ │ └── validation_error.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── balance_data_inner_test.dart │ │ │ ├── balance_test.dart │ │ │ ├── balances_api_test.dart │ │ │ ├── fills_test.dart │ │ │ ├── message_error_test.dart │ │ │ ├── message_reject_test.dart │ │ │ ├── ord_side_test.dart │ │ │ ├── ord_status_test.dart │ │ │ ├── ord_type_test.dart │ │ │ ├── order_cancel_all_request_test.dart │ │ │ ├── order_cancel_single_request_test.dart │ │ │ ├── order_execution_report_all_of_test.dart │ │ │ ├── order_execution_report_test.dart │ │ │ ├── order_history_test.dart │ │ │ ├── order_new_single_request_test.dart │ │ │ ├── orders_api_test.dart │ │ │ ├── position_data_inner_test.dart │ │ │ ├── position_test.dart │ │ │ ├── positions_api_test.dart │ │ │ ├── reject_reason_test.dart │ │ │ ├── time_in_force_test.dart │ │ │ └── validation_error_test.dart │ │ ├── eiffel │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── api_client.ecf │ │ ├── docs │ │ │ ├── BALANCE.md │ │ │ ├── BALANCES_API.md │ │ │ ├── BALANCE_DATA_INNER.md │ │ │ ├── FILLS.md │ │ │ ├── MESSAGE_ERROR.md │ │ │ ├── MESSAGE_REJECT.md │ │ │ ├── ORDERS_API.md │ │ │ ├── ORDER_CANCEL_ALL_REQUEST.md │ │ │ ├── ORDER_CANCEL_SINGLE_REQUEST.md │ │ │ ├── ORDER_EXECUTION_REPORT.md │ │ │ ├── ORDER_EXECUTION_REPORT_ALL_OF.md │ │ │ ├── ORDER_HISTORY.md │ │ │ ├── ORDER_NEW_SINGLE_REQUEST.md │ │ │ ├── ORD_SIDE.md │ │ │ ├── ORD_STATUS.md │ │ │ ├── ORD_TYPE.md │ │ │ ├── POSITION.md │ │ │ ├── POSITIONS_API.md │ │ │ ├── POSITION_DATA_INNER.md │ │ │ ├── REJECT_REASON.md │ │ │ ├── TIME_IN_FORCE.md │ │ │ └── VALIDATION_ERROR.md │ │ ├── src │ │ │ ├── api │ │ │ │ ├── balances_api.e │ │ │ │ ├── orders_api.e │ │ │ │ └── positions_api.e │ │ │ ├── api_client.e │ │ │ ├── domain │ │ │ │ ├── balance.e │ │ │ │ ├── balance_data_inner.e │ │ │ │ ├── fills.e │ │ │ │ ├── message_error.e │ │ │ │ ├── message_reject.e │ │ │ │ ├── ord_side.e │ │ │ │ ├── ord_status.e │ │ │ │ ├── ord_type.e │ │ │ │ ├── order_cancel_all_request.e │ │ │ │ ├── order_cancel_single_request.e │ │ │ │ ├── order_execution_report.e │ │ │ │ ├── order_execution_report_all_of.e │ │ │ │ ├── order_history.e │ │ │ │ ├── order_new_single_request.e │ │ │ │ ├── position.e │ │ │ │ ├── position_data_inner.e │ │ │ │ ├── reject_reason.e │ │ │ │ ├── time_in_force.e │ │ │ │ └── validation_error.e │ │ │ └── framework │ │ │ │ ├── api_client_request.e │ │ │ │ ├── api_client_response.e │ │ │ │ ├── api_error.e │ │ │ │ ├── api_i.e │ │ │ │ ├── auth │ │ │ │ ├── api_key_auth.e │ │ │ │ ├── authentication.e │ │ │ │ ├── http_basic_auth.e │ │ │ │ └── oauth.e │ │ │ │ ├── configuration.e │ │ │ │ └── serialization │ │ │ │ ├── api_deserializer.e │ │ │ │ ├── api_json_deserializer.e │ │ │ │ ├── api_json_serializer.e │ │ │ │ ├── api_serializer.e │ │ │ │ ├── json_basic_reflector_deserializer.e │ │ │ │ └── json_type_utilities_ext.e │ │ └── test │ │ │ ├── api_test.ecf │ │ │ ├── apis │ │ │ ├── balances_api_test.e │ │ │ ├── orders_api_test.e │ │ │ └── positions_api_test.e │ │ │ └── application.e │ │ ├── elixir │ │ ├── .formatter.exs │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── config │ │ │ ├── config.exs │ │ │ └── runtime.exs │ │ ├── lib │ │ │ └── ems_restapi │ │ │ │ ├── api │ │ │ │ ├── balances.ex │ │ │ │ ├── orders.ex │ │ │ │ └── positions.ex │ │ │ │ ├── connection.ex │ │ │ │ ├── deserializer.ex │ │ │ │ ├── model │ │ │ │ ├── balance.ex │ │ │ │ ├── balance_data_inner.ex │ │ │ │ ├── fills.ex │ │ │ │ ├── message_error.ex │ │ │ │ ├── message_reject.ex │ │ │ │ ├── ord_side.ex │ │ │ │ ├── ord_status.ex │ │ │ │ ├── ord_type.ex │ │ │ │ ├── order_cancel_all_request.ex │ │ │ │ ├── order_cancel_single_request.ex │ │ │ │ ├── order_execution_report.ex │ │ │ │ ├── order_execution_report_all_of.ex │ │ │ │ ├── order_history.ex │ │ │ │ ├── order_new_single_request.ex │ │ │ │ ├── position.ex │ │ │ │ ├── position_data_inner.ex │ │ │ │ ├── reject_reason.ex │ │ │ │ ├── time_in_force.ex │ │ │ │ └── validation_error.ex │ │ │ │ └── request_builder.ex │ │ ├── mix.exs │ │ └── test │ │ │ └── test_helper.exs │ │ ├── elm │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── elm.json │ │ └── src │ │ │ ├── Api.elm │ │ │ └── Api │ │ │ ├── Data.elm │ │ │ ├── Request │ │ │ ├── Balances.elm │ │ │ ├── Orders.elm │ │ │ └── Positions.elm │ │ │ └── Time.elm │ │ ├── erlang-client │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── rebar.config │ │ └── src │ │ │ ├── openapi.app.src │ │ │ ├── openapi_balance.erl │ │ │ ├── openapi_balance_data_inner.erl │ │ │ ├── openapi_balances_api.erl │ │ │ ├── openapi_fills.erl │ │ │ ├── openapi_message_error.erl │ │ │ ├── openapi_message_reject.erl │ │ │ ├── openapi_ord_side.erl │ │ │ ├── openapi_ord_status.erl │ │ │ ├── openapi_ord_type.erl │ │ │ ├── openapi_order_cancel_all_request.erl │ │ │ ├── openapi_order_cancel_single_request.erl │ │ │ ├── openapi_order_execution_report.erl │ │ │ ├── openapi_order_execution_report_all_of.erl │ │ │ ├── openapi_order_history.erl │ │ │ ├── openapi_order_new_single_request.erl │ │ │ ├── openapi_orders_api.erl │ │ │ ├── openapi_position.erl │ │ │ ├── openapi_position_data_inner.erl │ │ │ ├── openapi_positions_api.erl │ │ │ ├── openapi_reject_reason.erl │ │ │ ├── openapi_time_in_force.erl │ │ │ ├── openapi_utils.erl │ │ │ └── openapi_validation_error.erl │ │ ├── erlang-proper │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── rebar.config │ │ ├── src │ │ │ ├── model │ │ │ │ ├── openapi_balance.erl │ │ │ │ ├── openapi_balance_data_inner.erl │ │ │ │ ├── openapi_fills.erl │ │ │ │ ├── openapi_message_error.erl │ │ │ │ ├── openapi_message_reject.erl │ │ │ │ ├── openapi_ord_side.erl │ │ │ │ ├── openapi_ord_status.erl │ │ │ │ ├── openapi_ord_type.erl │ │ │ │ ├── openapi_order_cancel_all_request.erl │ │ │ │ ├── openapi_order_cancel_single_request.erl │ │ │ │ ├── openapi_order_execution_report.erl │ │ │ │ ├── openapi_order_execution_report_all_of.erl │ │ │ │ ├── openapi_order_history.erl │ │ │ │ ├── openapi_order_new_single_request.erl │ │ │ │ ├── openapi_position.erl │ │ │ │ ├── openapi_position_data_inner.erl │ │ │ │ ├── openapi_reject_reason.erl │ │ │ │ ├── openapi_time_in_force.erl │ │ │ │ └── openapi_validation_error.erl │ │ │ ├── openapi.app.src │ │ │ ├── openapi.hrl │ │ │ ├── openapi_api.erl │ │ │ ├── openapi_gen.erl │ │ │ ├── openapi_statem.erl │ │ │ ├── openapi_statem.hrl │ │ │ └── openapi_utils.erl │ │ └── test │ │ │ └── prop_openapi.erl │ │ ├── go │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_balances.go │ │ ├── api_orders.go │ │ ├── api_positions.go │ │ ├── client.go │ │ ├── configuration.go │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── model_balance.go │ │ ├── model_balance_data_inner.go │ │ ├── model_fills.go │ │ ├── model_message_error.go │ │ ├── model_message_reject.go │ │ ├── model_ord_side.go │ │ ├── model_ord_status.go │ │ ├── model_ord_type.go │ │ ├── model_order_cancel_all_request.go │ │ ├── model_order_cancel_single_request.go │ │ ├── model_order_execution_report.go │ │ ├── model_order_execution_report_all_of.go │ │ ├── model_order_history.go │ │ ├── model_order_new_single_request.go │ │ ├── model_position.go │ │ ├── model_position_data_inner.go │ │ ├── model_reject_reason.go │ │ ├── model_time_in_force.go │ │ ├── model_validation_error.go │ │ ├── response.go │ │ ├── test │ │ │ ├── api_balances_test.go │ │ │ ├── api_orders_test.go │ │ │ └── api_positions_test.go │ │ └── utils.go │ │ ├── groovy │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── groovy │ │ │ └── org │ │ │ └── openapitools │ │ │ ├── api │ │ │ ├── ApiUtils.groovy │ │ │ ├── BalancesApi.groovy │ │ │ ├── OrdersApi.groovy │ │ │ └── PositionsApi.groovy │ │ │ └── model │ │ │ ├── Balance.groovy │ │ │ ├── BalanceDataInner.groovy │ │ │ ├── Fills.groovy │ │ │ ├── MessageError.groovy │ │ │ ├── MessageReject.groovy │ │ │ ├── OrdSide.groovy │ │ │ ├── OrdStatus.groovy │ │ │ ├── OrdType.groovy │ │ │ ├── OrderCancelAllRequest.groovy │ │ │ ├── OrderCancelSingleRequest.groovy │ │ │ ├── OrderExecutionReport.groovy │ │ │ ├── OrderExecutionReportAllOf.groovy │ │ │ ├── OrderHistory.groovy │ │ │ ├── OrderNewSingleRequest.groovy │ │ │ ├── Position.groovy │ │ │ ├── PositionDataInner.groovy │ │ │ ├── RejectReason.groovy │ │ │ ├── TimeInForce.groovy │ │ │ └── ValidationError.groovy │ │ ├── haskell-http-client │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── Setup.hs │ │ ├── ems---rest.cabal │ │ ├── git_push.sh │ │ ├── lib │ │ │ ├── EMS-REST.hs │ │ │ └── EMS-REST │ │ │ │ ├── API.hs │ │ │ │ ├── API │ │ │ │ ├── Balances.hs │ │ │ │ ├── Orders.hs │ │ │ │ └── Positions.hs │ │ │ │ ├── Client.hs │ │ │ │ ├── Core.hs │ │ │ │ ├── Logging.hs │ │ │ │ ├── LoggingKatip.hs │ │ │ │ ├── LoggingMonadLogger.hs │ │ │ │ ├── MimeTypes.hs │ │ │ │ ├── Model.hs │ │ │ │ └── ModelLens.hs │ │ ├── openapi.yaml │ │ ├── stack.yaml │ │ └── tests │ │ │ ├── ApproxEq.hs │ │ │ ├── Instances.hs │ │ │ ├── PropMime.hs │ │ │ └── Test.hs │ │ ├── java │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── maven.yml │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── build.gradle │ │ ├── build.sbt │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── pom.xml │ │ ├── settings.gradle │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── ApiCallback.java │ │ │ │ ├── ApiClient.java │ │ │ │ ├── ApiException.java │ │ │ │ ├── ApiResponse.java │ │ │ │ ├── Configuration.java │ │ │ │ ├── GzipRequestInterceptor.java │ │ │ │ ├── JSON.java │ │ │ │ ├── Pair.java │ │ │ │ ├── ProgressRequestBody.java │ │ │ │ ├── ProgressResponseBody.java │ │ │ │ ├── ServerConfiguration.java │ │ │ │ ├── ServerVariable.java │ │ │ │ ├── StringUtil.java │ │ │ │ ├── api │ │ │ │ ├── BalancesApi.java │ │ │ │ ├── OrdersApi.java │ │ │ │ └── PositionsApi.java │ │ │ │ ├── auth │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ ├── Authentication.java │ │ │ │ ├── HttpBasicAuth.java │ │ │ │ └── HttpBearerAuth.java │ │ │ │ └── model │ │ │ │ ├── AbstractOpenApiSchema.java │ │ │ │ ├── Balance.java │ │ │ │ ├── BalanceDataInner.java │ │ │ │ ├── Fills.java │ │ │ │ ├── MessageError.java │ │ │ │ ├── MessageReject.java │ │ │ │ ├── OrdSide.java │ │ │ │ ├── OrdStatus.java │ │ │ │ ├── OrdType.java │ │ │ │ ├── OrderCancelAllRequest.java │ │ │ │ ├── OrderCancelSingleRequest.java │ │ │ │ ├── OrderExecutionReport.java │ │ │ │ ├── OrderExecutionReportAllOf.java │ │ │ │ ├── OrderHistory.java │ │ │ │ ├── OrderNewSingleRequest.java │ │ │ │ ├── Position.java │ │ │ │ ├── PositionDataInner.java │ │ │ │ ├── RejectReason.java │ │ │ │ ├── TimeInForce.java │ │ │ │ └── ValidationError.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── openapitools │ │ │ └── client │ │ │ ├── api │ │ │ ├── BalancesApiTest.java │ │ │ ├── OrdersApiTest.java │ │ │ └── PositionsApiTest.java │ │ │ └── model │ │ │ ├── BalanceDataInnerTest.java │ │ │ ├── BalanceTest.java │ │ │ ├── FillsTest.java │ │ │ ├── MessageErrorTest.java │ │ │ ├── MessageRejectTest.java │ │ │ ├── OrdSideTest.java │ │ │ ├── OrdStatusTest.java │ │ │ ├── OrdTypeTest.java │ │ │ ├── OrderCancelAllRequestTest.java │ │ │ ├── OrderCancelSingleRequestTest.java │ │ │ ├── OrderExecutionReportAllOfTest.java │ │ │ ├── OrderExecutionReportTest.java │ │ │ ├── OrderHistoryTest.java │ │ │ ├── OrderNewSingleRequestTest.java │ │ │ ├── PositionDataInnerTest.java │ │ │ ├── PositionTest.java │ │ │ ├── RejectReasonTest.java │ │ │ ├── TimeInForceTest.java │ │ │ └── ValidationErrorTest.java │ │ ├── javascript-closure-angular │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ └── API │ │ │ └── Client │ │ │ ├── Balance.js │ │ │ ├── BalanceDataInner.js │ │ │ ├── BalancesApi.js │ │ │ ├── Fills.js │ │ │ ├── MessageError.js │ │ │ ├── MessageReject.js │ │ │ ├── OrdSide.js │ │ │ ├── OrdStatus.js │ │ │ ├── OrdType.js │ │ │ ├── OrderCancelAllRequest.js │ │ │ ├── OrderCancelSingleRequest.js │ │ │ ├── OrderExecutionReport.js │ │ │ ├── OrderExecutionReportAllOf.js │ │ │ ├── OrderHistory.js │ │ │ ├── OrderNewSingleRequest.js │ │ │ ├── OrdersApi.js │ │ │ ├── Position.js │ │ │ ├── PositionDataInner.js │ │ │ ├── PositionsApi.js │ │ │ ├── RejectReason.js │ │ │ ├── TimeInForce.js │ │ │ └── ValidationError.js │ │ ├── javascript-flowtyped │ │ ├── .babelrc │ │ ├── .flowconfig │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ ├── api.js │ │ │ ├── configuration.js │ │ │ └── index.js │ │ ├── javascript │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── mocha.opts │ │ ├── package.json │ │ ├── src │ │ │ ├── ApiClient.js │ │ │ ├── api │ │ │ │ ├── BalancesApi.js │ │ │ │ ├── OrdersApi.js │ │ │ │ └── PositionsApi.js │ │ │ ├── index.js │ │ │ └── model │ │ │ │ ├── Balance.js │ │ │ │ ├── BalanceDataInner.js │ │ │ │ ├── Fills.js │ │ │ │ ├── MessageError.js │ │ │ │ ├── MessageReject.js │ │ │ │ ├── OrdSide.js │ │ │ │ ├── OrdStatus.js │ │ │ │ ├── OrdType.js │ │ │ │ ├── OrderCancelAllRequest.js │ │ │ │ ├── OrderCancelSingleRequest.js │ │ │ │ ├── OrderExecutionReport.js │ │ │ │ ├── OrderExecutionReportAllOf.js │ │ │ │ ├── OrderHistory.js │ │ │ │ ├── OrderNewSingleRequest.js │ │ │ │ ├── Position.js │ │ │ │ ├── PositionDataInner.js │ │ │ │ ├── RejectReason.js │ │ │ │ ├── TimeInForce.js │ │ │ │ └── ValidationError.js │ │ └── test │ │ │ ├── api │ │ │ ├── BalancesApi.spec.js │ │ │ ├── OrdersApi.spec.js │ │ │ └── PositionsApi.spec.js │ │ │ └── model │ │ │ ├── Balance.spec.js │ │ │ ├── BalanceDataInner.spec.js │ │ │ ├── Fills.spec.js │ │ │ ├── MessageError.spec.js │ │ │ ├── MessageReject.spec.js │ │ │ ├── OrdSide.spec.js │ │ │ ├── OrdStatus.spec.js │ │ │ ├── OrdType.spec.js │ │ │ ├── OrderCancelAllRequest.spec.js │ │ │ ├── OrderCancelSingleRequest.spec.js │ │ │ ├── OrderExecutionReport.spec.js │ │ │ ├── OrderExecutionReportAllOf.spec.js │ │ │ ├── OrderHistory.spec.js │ │ │ ├── OrderNewSingleRequest.spec.js │ │ │ ├── Position.spec.js │ │ │ ├── PositionDataInner.spec.js │ │ │ ├── RejectReason.spec.js │ │ │ ├── TimeInForce.spec.js │ │ │ └── ValidationError.spec.js │ │ ├── kotlin │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── build.gradle │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── org │ │ │ └── openapitools │ │ │ └── client │ │ │ ├── apis │ │ │ ├── BalancesApi.kt │ │ │ ├── OrdersApi.kt │ │ │ └── PositionsApi.kt │ │ │ ├── infrastructure │ │ │ ├── ApiAbstractions.kt │ │ │ ├── ApiClient.kt │ │ │ ├── ApiResponse.kt │ │ │ ├── BigDecimalAdapter.kt │ │ │ ├── BigIntegerAdapter.kt │ │ │ ├── ByteArrayAdapter.kt │ │ │ ├── Errors.kt │ │ │ ├── LocalDateAdapter.kt │ │ │ ├── LocalDateTimeAdapter.kt │ │ │ ├── OffsetDateTimeAdapter.kt │ │ │ ├── PartConfig.kt │ │ │ ├── RequestConfig.kt │ │ │ ├── RequestMethod.kt │ │ │ ├── ResponseExtensions.kt │ │ │ ├── Serializer.kt │ │ │ ├── URIAdapter.kt │ │ │ └── UUIDAdapter.kt │ │ │ └── models │ │ │ ├── Balance.kt │ │ │ ├── BalanceDataInner.kt │ │ │ ├── Fills.kt │ │ │ ├── MessageError.kt │ │ │ ├── MessageReject.kt │ │ │ ├── OrdSide.kt │ │ │ ├── OrdStatus.kt │ │ │ ├── OrdType.kt │ │ │ ├── OrderCancelAllRequest.kt │ │ │ ├── OrderCancelSingleRequest.kt │ │ │ ├── OrderExecutionReport.kt │ │ │ ├── OrderExecutionReportAllOf.kt │ │ │ ├── OrderHistory.kt │ │ │ ├── OrderNewSingleRequest.kt │ │ │ ├── Position.kt │ │ │ ├── PositionDataInner.kt │ │ │ ├── RejectReason.kt │ │ │ ├── TimeInForce.kt │ │ │ └── ValidationError.kt │ │ ├── lua │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── git_push.sh │ │ ├── openapiclient-1.0.0-1.rockspec │ │ ├── openapiclient │ │ │ ├── api │ │ │ │ ├── balances_api.lua │ │ │ │ ├── orders_api.lua │ │ │ │ └── positions_api.lua │ │ │ └── model │ │ │ │ ├── balance.lua │ │ │ │ ├── balance_data_inner.lua │ │ │ │ ├── fills.lua │ │ │ │ ├── message_error.lua │ │ │ │ ├── message_reject.lua │ │ │ │ ├── ord_side.lua │ │ │ │ ├── ord_status.lua │ │ │ │ ├── ord_type.lua │ │ │ │ ├── order_cancel_all_request.lua │ │ │ │ ├── order_cancel_single_request.lua │ │ │ │ ├── order_execution_report.lua │ │ │ │ ├── order_execution_report_all_of.lua │ │ │ │ ├── order_history.lua │ │ │ │ ├── order_new_single_request.lua │ │ │ │ ├── position.lua │ │ │ │ ├── position_data_inner.lua │ │ │ │ ├── reject_reason.lua │ │ │ │ ├── time_in_force.lua │ │ │ │ └── validation_error.lua │ │ └── spec │ │ │ ├── balance_data_inner_spec.lua │ │ │ ├── balance_spec.lua │ │ │ ├── balances_api_spec.lua │ │ │ ├── fills_spec.lua │ │ │ ├── message_error_spec.lua │ │ │ ├── message_reject_spec.lua │ │ │ ├── ord_side_spec.lua │ │ │ ├── ord_status_spec.lua │ │ │ ├── ord_type_spec.lua │ │ │ ├── order_cancel_all_request_spec.lua │ │ │ ├── order_cancel_single_request_spec.lua │ │ │ ├── order_execution_report_all_of_spec.lua │ │ │ ├── order_execution_report_spec.lua │ │ │ ├── order_history_spec.lua │ │ │ ├── order_new_single_request_spec.lua │ │ │ ├── orders_api_spec.lua │ │ │ ├── position_data_inner_spec.lua │ │ │ ├── position_spec.lua │ │ │ ├── positions_api_spec.lua │ │ │ ├── reject_reason_spec.lua │ │ │ ├── time_in_force_spec.lua │ │ │ └── validation_error_spec.lua │ │ ├── perl │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── bin │ │ │ └── autodoc │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── lib │ │ │ └── WWW │ │ │ │ └── OpenAPIClient │ │ │ │ ├── ApiClient.pm │ │ │ │ ├── ApiFactory.pm │ │ │ │ ├── BalancesApi.pm │ │ │ │ ├── Configuration.pm │ │ │ │ ├── Object │ │ │ │ ├── Balance.pm │ │ │ │ ├── BalanceDataInner.pm │ │ │ │ ├── Fills.pm │ │ │ │ ├── MessageError.pm │ │ │ │ ├── MessageReject.pm │ │ │ │ ├── OrdSide.pm │ │ │ │ ├── OrdStatus.pm │ │ │ │ ├── OrdType.pm │ │ │ │ ├── OrderCancelAllRequest.pm │ │ │ │ ├── OrderCancelSingleRequest.pm │ │ │ │ ├── OrderExecutionReport.pm │ │ │ │ ├── OrderExecutionReportAllOf.pm │ │ │ │ ├── OrderHistory.pm │ │ │ │ ├── OrderNewSingleRequest.pm │ │ │ │ ├── Position.pm │ │ │ │ ├── PositionDataInner.pm │ │ │ │ ├── RejectReason.pm │ │ │ │ ├── TimeInForce.pm │ │ │ │ └── ValidationError.pm │ │ │ │ ├── OrdersApi.pm │ │ │ │ ├── PositionsApi.pm │ │ │ │ ├── Role.pm │ │ │ │ └── Role │ │ │ │ └── AutoDoc.pm │ │ └── t │ │ │ ├── BalanceDataInnerTest.t │ │ │ ├── BalanceTest.t │ │ │ ├── BalancesApiTest.t │ │ │ ├── FillsTest.t │ │ │ ├── MessageErrorTest.t │ │ │ ├── MessageRejectTest.t │ │ │ ├── OrdSideTest.t │ │ │ ├── OrdStatusTest.t │ │ │ ├── OrdTypeTest.t │ │ │ ├── OrderCancelAllRequestTest.t │ │ │ ├── OrderCancelSingleRequestTest.t │ │ │ ├── OrderExecutionReportAllOfTest.t │ │ │ ├── OrderExecutionReportTest.t │ │ │ ├── OrderHistoryTest.t │ │ │ ├── OrderNewSingleRequestTest.t │ │ │ ├── OrdersApiTest.t │ │ │ ├── PositionDataInnerTest.t │ │ │ ├── PositionTest.t │ │ │ ├── PositionsApiTest.t │ │ │ ├── RejectReasonTest.t │ │ │ ├── TimeInForceTest.t │ │ │ └── ValidationErrorTest.t │ │ ├── php │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .php-cs-fixer.dist.php │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ ├── Api │ │ │ │ ├── BalancesApi.md │ │ │ │ ├── OrdersApi.md │ │ │ │ └── PositionsApi.md │ │ │ └── Model │ │ │ │ ├── Balance.md │ │ │ │ ├── BalanceDataInner.md │ │ │ │ ├── Fills.md │ │ │ │ ├── MessageError.md │ │ │ │ ├── MessageReject.md │ │ │ │ ├── OrdSide.md │ │ │ │ ├── OrdStatus.md │ │ │ │ ├── OrdType.md │ │ │ │ ├── OrderCancelAllRequest.md │ │ │ │ ├── OrderCancelSingleRequest.md │ │ │ │ ├── OrderExecutionReport.md │ │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ │ ├── OrderHistory.md │ │ │ │ ├── OrderNewSingleRequest.md │ │ │ │ ├── Position.md │ │ │ │ ├── PositionDataInner.md │ │ │ │ ├── RejectReason.md │ │ │ │ ├── TimeInForce.md │ │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── lib │ │ │ ├── Api │ │ │ │ ├── BalancesApi.php │ │ │ │ ├── OrdersApi.php │ │ │ │ └── PositionsApi.php │ │ │ ├── ApiException.php │ │ │ ├── Configuration.php │ │ │ ├── HeaderSelector.php │ │ │ ├── Model │ │ │ │ ├── Balance.php │ │ │ │ ├── BalanceDataInner.php │ │ │ │ ├── Fills.php │ │ │ │ ├── MessageError.php │ │ │ │ ├── MessageReject.php │ │ │ │ ├── ModelInterface.php │ │ │ │ ├── OrdSide.php │ │ │ │ ├── OrdStatus.php │ │ │ │ ├── OrdType.php │ │ │ │ ├── OrderCancelAllRequest.php │ │ │ │ ├── OrderCancelSingleRequest.php │ │ │ │ ├── OrderExecutionReport.php │ │ │ │ ├── OrderExecutionReportAllOf.php │ │ │ │ ├── OrderHistory.php │ │ │ │ ├── OrderNewSingleRequest.php │ │ │ │ ├── Position.php │ │ │ │ ├── PositionDataInner.php │ │ │ │ ├── RejectReason.php │ │ │ │ ├── TimeInForce.php │ │ │ │ └── ValidationError.php │ │ │ └── ObjectSerializer.php │ │ ├── phpunit.xml.dist │ │ └── test │ │ │ ├── Api │ │ │ ├── BalancesApiTest.php │ │ │ ├── OrdersApiTest.php │ │ │ └── PositionsApiTest.php │ │ │ └── Model │ │ │ ├── BalanceDataInnerTest.php │ │ │ ├── BalanceTest.php │ │ │ ├── FillsTest.php │ │ │ ├── MessageErrorTest.php │ │ │ ├── MessageRejectTest.php │ │ │ ├── OrdSideTest.php │ │ │ ├── OrdStatusTest.php │ │ │ ├── OrdTypeTest.php │ │ │ ├── OrderCancelAllRequestTest.php │ │ │ ├── OrderCancelSingleRequestTest.php │ │ │ ├── OrderExecutionReportAllOfTest.php │ │ │ ├── OrderExecutionReportTest.php │ │ │ ├── OrderHistoryTest.php │ │ │ ├── OrderNewSingleRequestTest.php │ │ │ ├── PositionDataInnerTest.php │ │ │ ├── PositionTest.php │ │ │ ├── RejectReasonTest.php │ │ │ ├── TimeInForceTest.php │ │ │ └── ValidationErrorTest.php │ │ ├── powershell │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── Build.ps1 │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── src │ │ │ └── PSOpenAPITools │ │ │ │ ├── Api │ │ │ │ ├── BalancesApi.ps1 │ │ │ │ ├── OrdersApi.ps1 │ │ │ │ └── PositionsApi.ps1 │ │ │ │ ├── Client │ │ │ │ └── Configuration.ps1 │ │ │ │ ├── Model │ │ │ │ ├── Balance.ps1 │ │ │ │ ├── BalanceDataInner.ps1 │ │ │ │ ├── Fills.ps1 │ │ │ │ ├── MessageError.ps1 │ │ │ │ ├── MessageReject.ps1 │ │ │ │ ├── OrdSide.ps1 │ │ │ │ ├── OrdStatus.ps1 │ │ │ │ ├── OrdType.ps1 │ │ │ │ ├── OrderCancelAllRequest.ps1 │ │ │ │ ├── OrderCancelSingleRequest.ps1 │ │ │ │ ├── OrderExecutionReport.ps1 │ │ │ │ ├── OrderExecutionReportAllOf.ps1 │ │ │ │ ├── OrderHistory.ps1 │ │ │ │ ├── OrderNewSingleRequest.ps1 │ │ │ │ ├── Position.ps1 │ │ │ │ ├── PositionDataInner.ps1 │ │ │ │ ├── RejectReason.ps1 │ │ │ │ ├── TimeInForce.ps1 │ │ │ │ └── ValidationError.ps1 │ │ │ │ ├── PSOpenAPITools.psm1 │ │ │ │ ├── Private │ │ │ │ ├── ApiClient.ps1 │ │ │ │ ├── Get-CommonParameters.ps1 │ │ │ │ ├── HttpSignatureAuth.ps1 │ │ │ │ ├── Out-DebugParameter.ps1 │ │ │ │ └── RSAEncryptionProvider.cs │ │ │ │ └── en-US │ │ │ │ └── about_PSOpenAPITools.help.txt │ │ └── tests │ │ │ ├── Api │ │ │ ├── BalancesApi.Tests.ps1 │ │ │ ├── OrdersApi.Tests.ps1 │ │ │ └── PositionsApi.Tests.ps1 │ │ │ └── Model │ │ │ ├── Balance.Tests.ps1 │ │ │ ├── BalanceDataInner.Tests.ps1 │ │ │ ├── Fills.Tests.ps1 │ │ │ ├── MessageError.Tests.ps1 │ │ │ ├── MessageReject.Tests.ps1 │ │ │ ├── OrdSide.Tests.ps1 │ │ │ ├── OrdStatus.Tests.ps1 │ │ │ ├── OrdType.Tests.ps1 │ │ │ ├── OrderCancelAllRequest.Tests.ps1 │ │ │ ├── OrderCancelSingleRequest.Tests.ps1 │ │ │ ├── OrderExecutionReport.Tests.ps1 │ │ │ ├── OrderExecutionReportAllOf.Tests.ps1 │ │ │ ├── OrderHistory.Tests.ps1 │ │ │ ├── OrderNewSingleRequest.Tests.ps1 │ │ │ ├── Position.Tests.ps1 │ │ │ ├── PositionDataInner.Tests.ps1 │ │ │ ├── RejectReason.Tests.ps1 │ │ │ ├── TimeInForce.Tests.ps1 │ │ │ └── ValidationError.Tests.ps1 │ │ ├── python │ │ ├── .gitignore │ │ ├── .gitlab-ci.yml │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── docs │ │ │ ├── apis │ │ │ │ └── tags │ │ │ │ │ ├── BalancesApi.md │ │ │ │ │ ├── OrdersApi.md │ │ │ │ │ └── PositionsApi.md │ │ │ └── models │ │ │ │ ├── Balance.md │ │ │ │ ├── Balances.md │ │ │ │ ├── ExecInst.md │ │ │ │ ├── Fills.md │ │ │ │ ├── MessageError.md │ │ │ │ ├── MessageReject.md │ │ │ │ ├── OrdSide.md │ │ │ │ ├── OrdStatus.md │ │ │ │ ├── OrdType.md │ │ │ │ ├── OrderCancelAllRequest.md │ │ │ │ ├── OrderCancelSingleRequest.md │ │ │ │ ├── OrderExecutionReport.md │ │ │ │ ├── OrderExecutionReports.md │ │ │ │ ├── OrderHistory.md │ │ │ │ ├── OrderHistoryArray.md │ │ │ │ ├── OrderNewSingleRequest.md │ │ │ │ ├── Position.md │ │ │ │ ├── Positions.md │ │ │ │ ├── RejectReason.md │ │ │ │ ├── TimeInForce.md │ │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── openapi_client │ │ │ ├── __init__.py │ │ │ ├── api_client.py │ │ │ ├── apis │ │ │ │ ├── __init__.py │ │ │ │ ├── path_to_api.py │ │ │ │ ├── paths │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── v1_balances.py │ │ │ │ │ ├── v1_orders.py │ │ │ │ │ ├── v1_orders_cancel.py │ │ │ │ │ ├── v1_orders_cancel_all.py │ │ │ │ │ ├── v1_orders_history.py │ │ │ │ │ ├── v1_orders_status_client_order_id.py │ │ │ │ │ └── v1_positions.py │ │ │ │ ├── tag_to_api.py │ │ │ │ └── tags │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── balances_api.py │ │ │ │ │ ├── orders_api.py │ │ │ │ │ └── positions_api.py │ │ │ ├── configuration.py │ │ │ ├── exceptions.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── balance.py │ │ │ │ ├── balance.pyi │ │ │ │ ├── balances.py │ │ │ │ ├── balances.pyi │ │ │ │ ├── exec_inst.py │ │ │ │ ├── exec_inst.pyi │ │ │ │ ├── fills.py │ │ │ │ ├── fills.pyi │ │ │ │ ├── message_error.py │ │ │ │ ├── message_error.pyi │ │ │ │ ├── message_reject.py │ │ │ │ ├── message_reject.pyi │ │ │ │ ├── ord_side.py │ │ │ │ ├── ord_side.pyi │ │ │ │ ├── ord_status.py │ │ │ │ ├── ord_status.pyi │ │ │ │ ├── ord_type.py │ │ │ │ ├── ord_type.pyi │ │ │ │ ├── order_cancel_all_request.py │ │ │ │ ├── order_cancel_all_request.pyi │ │ │ │ ├── order_cancel_single_request.py │ │ │ │ ├── order_cancel_single_request.pyi │ │ │ │ ├── order_execution_report.py │ │ │ │ ├── order_execution_report.pyi │ │ │ │ ├── order_execution_reports.py │ │ │ │ ├── order_execution_reports.pyi │ │ │ │ ├── order_history.py │ │ │ │ ├── order_history.pyi │ │ │ │ ├── order_history_array.py │ │ │ │ ├── order_history_array.pyi │ │ │ │ ├── order_new_single_request.py │ │ │ │ ├── order_new_single_request.pyi │ │ │ │ ├── position.py │ │ │ │ ├── position.pyi │ │ │ │ ├── positions.py │ │ │ │ ├── positions.pyi │ │ │ │ ├── reject_reason.py │ │ │ │ ├── reject_reason.pyi │ │ │ │ ├── time_in_force.py │ │ │ │ ├── time_in_force.pyi │ │ │ │ ├── validation_error.py │ │ │ │ └── validation_error.pyi │ │ │ ├── models │ │ │ │ └── __init__.py │ │ │ ├── paths │ │ │ │ ├── __init__.py │ │ │ │ ├── v1_balances │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── get.py │ │ │ │ │ └── get.pyi │ │ │ │ ├── v1_orders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── get.py │ │ │ │ │ ├── get.pyi │ │ │ │ │ ├── post.py │ │ │ │ │ └── post.pyi │ │ │ │ ├── v1_orders_cancel │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── post.py │ │ │ │ │ └── post.pyi │ │ │ │ ├── v1_orders_cancel_all │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── post.py │ │ │ │ │ └── post.pyi │ │ │ │ ├── v1_orders_history │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── get.py │ │ │ │ │ └── get.pyi │ │ │ │ ├── v1_orders_status_client_order_id │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── get.py │ │ │ │ │ └── get.pyi │ │ │ │ └── v1_positions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── get.py │ │ │ │ │ └── get.pyi │ │ │ ├── rest.py │ │ │ └── schemas.py │ │ ├── requirements.txt │ │ ├── setup.cfg │ │ ├── setup.py │ │ ├── test-requirements.txt │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_models │ │ │ │ ├── __init__.py │ │ │ │ ├── test_balance.py │ │ │ │ ├── test_balances.py │ │ │ │ ├── test_exec_inst.py │ │ │ │ ├── test_fills.py │ │ │ │ ├── test_message_error.py │ │ │ │ ├── test_message_reject.py │ │ │ │ ├── test_ord_side.py │ │ │ │ ├── test_ord_status.py │ │ │ │ ├── test_ord_type.py │ │ │ │ ├── test_order_cancel_all_request.py │ │ │ │ ├── test_order_cancel_single_request.py │ │ │ │ ├── test_order_execution_report.py │ │ │ │ ├── test_order_execution_reports.py │ │ │ │ ├── test_order_history.py │ │ │ │ ├── test_order_history_array.py │ │ │ │ ├── test_order_new_single_request.py │ │ │ │ ├── test_position.py │ │ │ │ ├── test_positions.py │ │ │ │ ├── test_reject_reason.py │ │ │ │ ├── test_time_in_force.py │ │ │ │ └── test_validation_error.py │ │ │ └── test_paths │ │ │ │ ├── __init__.py │ │ │ │ ├── test_v1_balances │ │ │ │ ├── __init__.py │ │ │ │ └── test_get.py │ │ │ │ ├── test_v1_orders │ │ │ │ ├── __init__.py │ │ │ │ ├── test_get.py │ │ │ │ └── test_post.py │ │ │ │ ├── test_v1_orders_cancel │ │ │ │ ├── __init__.py │ │ │ │ └── test_post.py │ │ │ │ ├── test_v1_orders_cancel_all │ │ │ │ ├── __init__.py │ │ │ │ └── test_post.py │ │ │ │ ├── test_v1_orders_history │ │ │ │ ├── __init__.py │ │ │ │ └── test_get.py │ │ │ │ ├── test_v1_orders_status_client_order_id │ │ │ │ ├── __init__.py │ │ │ │ └── test_get.py │ │ │ │ └── test_v1_positions │ │ │ │ ├── __init__.py │ │ │ │ └── test_get.py │ │ └── tox.ini │ │ ├── r │ │ ├── .Rbuildignore │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── r-client.yaml │ │ ├── .gitignore │ │ ├── .lintr │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── DESCRIPTION │ │ ├── NAMESPACE │ │ ├── R │ │ │ ├── api_client.R │ │ │ ├── api_response.R │ │ │ ├── balance.R │ │ │ ├── balance_data_inner.R │ │ │ ├── balances_api.R │ │ │ ├── fills.R │ │ │ ├── message_error.R │ │ │ ├── message_reject.R │ │ │ ├── ord_side.R │ │ │ ├── ord_status.R │ │ │ ├── ord_type.R │ │ │ ├── order_cancel_all_request.R │ │ │ ├── order_cancel_single_request.R │ │ │ ├── order_execution_report.R │ │ │ ├── order_execution_report_all_of.R │ │ │ ├── order_history.R │ │ │ ├── order_new_single_request.R │ │ │ ├── orders_api.R │ │ │ ├── position.R │ │ │ ├── position_data_inner.R │ │ │ ├── positions_api.R │ │ │ ├── reject_reason.R │ │ │ ├── time_in_force.R │ │ │ └── validation_error.R │ │ ├── README.md │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ └── tests │ │ │ ├── testthat.R │ │ │ └── testthat │ │ │ ├── test_balance.R │ │ │ ├── test_balance_data_inner.R │ │ │ ├── test_balances_api.R │ │ │ ├── test_fills.R │ │ │ ├── test_message_error.R │ │ │ ├── test_message_reject.R │ │ │ ├── test_ord_side.R │ │ │ ├── test_ord_status.R │ │ │ ├── test_ord_type.R │ │ │ ├── test_order_cancel_all_request.R │ │ │ ├── test_order_cancel_single_request.R │ │ │ ├── test_order_execution_report.R │ │ │ ├── test_order_execution_report_all_of.R │ │ │ ├── test_order_history.R │ │ │ ├── test_order_new_single_request.R │ │ │ ├── test_orders_api.R │ │ │ ├── test_position.R │ │ │ ├── test_position_data_inner.R │ │ │ ├── test_positions_api.R │ │ │ ├── test_reject_reason.R │ │ │ ├── test_time_in_force.R │ │ │ └── test_validation_error.R │ │ ├── ruby │ │ ├── .gitignore │ │ ├── .gitlab-ci.yml │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .rspec │ │ ├── .rubocop.yml │ │ ├── .travis.yml │ │ ├── Gemfile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── git_push.sh │ │ ├── lib │ │ │ ├── openapi_client.rb │ │ │ └── openapi_client │ │ │ │ ├── api │ │ │ │ ├── balances_api.rb │ │ │ │ ├── orders_api.rb │ │ │ │ └── positions_api.rb │ │ │ │ ├── api_client.rb │ │ │ │ ├── api_error.rb │ │ │ │ ├── configuration.rb │ │ │ │ ├── models │ │ │ │ ├── balance.rb │ │ │ │ ├── balance_data_inner.rb │ │ │ │ ├── fills.rb │ │ │ │ ├── message_error.rb │ │ │ │ ├── message_reject.rb │ │ │ │ ├── ord_side.rb │ │ │ │ ├── ord_status.rb │ │ │ │ ├── ord_type.rb │ │ │ │ ├── order_cancel_all_request.rb │ │ │ │ ├── order_cancel_single_request.rb │ │ │ │ ├── order_execution_report.rb │ │ │ │ ├── order_execution_report_all_of.rb │ │ │ │ ├── order_history.rb │ │ │ │ ├── order_new_single_request.rb │ │ │ │ ├── position.rb │ │ │ │ ├── position_data_inner.rb │ │ │ │ ├── reject_reason.rb │ │ │ │ ├── time_in_force.rb │ │ │ │ └── validation_error.rb │ │ │ │ └── version.rb │ │ ├── openapi_client.gemspec │ │ └── spec │ │ │ ├── api │ │ │ ├── balances_api_spec.rb │ │ │ ├── orders_api_spec.rb │ │ │ └── positions_api_spec.rb │ │ │ ├── api_client_spec.rb │ │ │ ├── configuration_spec.rb │ │ │ ├── models │ │ │ ├── balance_data_inner_spec.rb │ │ │ ├── balance_spec.rb │ │ │ ├── fills_spec.rb │ │ │ ├── message_error_spec.rb │ │ │ ├── message_reject_spec.rb │ │ │ ├── ord_side_spec.rb │ │ │ ├── ord_status_spec.rb │ │ │ ├── ord_type_spec.rb │ │ │ ├── order_cancel_all_request_spec.rb │ │ │ ├── order_cancel_single_request_spec.rb │ │ │ ├── order_execution_report_all_of_spec.rb │ │ │ ├── order_execution_report_spec.rb │ │ │ ├── order_history_spec.rb │ │ │ ├── order_new_single_request_spec.rb │ │ │ ├── position_data_inner_spec.rb │ │ │ ├── position_spec.rb │ │ │ ├── reject_reason_spec.rb │ │ │ ├── time_in_force_spec.rb │ │ │ └── validation_error_spec.rb │ │ │ └── spec_helper.rb │ │ ├── scala-akka │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── build.sbt │ │ ├── docs │ │ │ ├── Balance.md │ │ │ ├── BalanceDataInner.md │ │ │ ├── BalancesApi.md │ │ │ ├── Fills.md │ │ │ ├── MessageError.md │ │ │ ├── MessageReject.md │ │ │ ├── OrdSide.md │ │ │ ├── OrdStatus.md │ │ │ ├── OrdType.md │ │ │ ├── OrderCancelAllRequest.md │ │ │ ├── OrderCancelSingleRequest.md │ │ │ ├── OrderExecutionReport.md │ │ │ ├── OrderExecutionReportAllOf.md │ │ │ ├── OrderHistory.md │ │ │ ├── OrderNewSingleRequest.md │ │ │ ├── OrdersApi.md │ │ │ ├── Position.md │ │ │ ├── PositionDataInner.md │ │ │ ├── PositionsApi.md │ │ │ ├── RejectReason.md │ │ │ ├── TimeInForce.md │ │ │ └── ValidationError.md │ │ ├── pom.xml │ │ ├── project │ │ │ └── build.properties │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── reference.conf │ │ │ └── scala │ │ │ └── org │ │ │ └── openapitools │ │ │ └── client │ │ │ ├── api │ │ │ ├── BalancesApi.scala │ │ │ ├── EnumsSerializers.scala │ │ │ ├── OrdersApi.scala │ │ │ └── PositionsApi.scala │ │ │ ├── core │ │ │ ├── ApiInvoker.scala │ │ │ ├── ApiRequest.scala │ │ │ ├── ApiSettings.scala │ │ │ ├── Serializers.scala │ │ │ └── requests.scala │ │ │ └── model │ │ │ ├── Balance.scala │ │ │ ├── BalanceDataInner.scala │ │ │ ├── Fills.scala │ │ │ ├── MessageError.scala │ │ │ ├── MessageReject.scala │ │ │ ├── OrdSide.scala │ │ │ ├── OrdStatus.scala │ │ │ ├── OrdType.scala │ │ │ ├── OrderCancelAllRequest.scala │ │ │ ├── OrderCancelSingleRequest.scala │ │ │ ├── OrderExecutionReport.scala │ │ │ ├── OrderExecutionReportAllOf.scala │ │ │ ├── OrderHistory.scala │ │ │ ├── OrderNewSingleRequest.scala │ │ │ ├── Position.scala │ │ │ ├── PositionDataInner.scala │ │ │ ├── RejectReason.scala │ │ │ ├── TimeInForce.scala │ │ │ └── ValidationError.scala │ │ ├── typescript-angular │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── api.module.ts │ │ ├── api │ │ │ ├── api.ts │ │ │ ├── balances.service.ts │ │ │ ├── orders.service.ts │ │ │ └── positions.service.ts │ │ ├── configuration.ts │ │ ├── encoder.ts │ │ ├── git_push.sh │ │ ├── index.ts │ │ ├── model │ │ │ ├── balance.ts │ │ │ ├── balanceDataInner.ts │ │ │ ├── fills.ts │ │ │ ├── messageError.ts │ │ │ ├── messageReject.ts │ │ │ ├── models.ts │ │ │ ├── ordSide.ts │ │ │ ├── ordStatus.ts │ │ │ ├── ordType.ts │ │ │ ├── orderCancelAllRequest.ts │ │ │ ├── orderCancelSingleRequest.ts │ │ │ ├── orderExecutionReport.ts │ │ │ ├── orderExecutionReportAllOf.ts │ │ │ ├── orderHistory.ts │ │ │ ├── orderNewSingleRequest.ts │ │ │ ├── position.ts │ │ │ ├── positionDataInner.ts │ │ │ ├── rejectReason.ts │ │ │ ├── timeInForce.ts │ │ │ └── validationError.ts │ │ ├── param.ts │ │ └── variables.ts │ │ ├── typescript-jquery │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── api │ │ │ ├── BalancesApi.ts │ │ │ ├── OrdersApi.ts │ │ │ ├── PositionsApi.ts │ │ │ └── api.ts │ │ ├── configuration.ts │ │ ├── git_push.sh │ │ ├── index.ts │ │ ├── model │ │ │ ├── Balance.ts │ │ │ ├── BalanceDataInner.ts │ │ │ ├── Fills.ts │ │ │ ├── MessageError.ts │ │ │ ├── MessageReject.ts │ │ │ ├── OrdSide.ts │ │ │ ├── OrdStatus.ts │ │ │ ├── OrdType.ts │ │ │ ├── OrderCancelAllRequest.ts │ │ │ ├── OrderCancelSingleRequest.ts │ │ │ ├── OrderExecutionReport.ts │ │ │ ├── OrderExecutionReportAllOf.ts │ │ │ ├── OrderHistory.ts │ │ │ ├── OrderNewSingleRequest.ts │ │ │ ├── Position.ts │ │ │ ├── PositionDataInner.ts │ │ │ ├── RejectReason.ts │ │ │ ├── TimeInForce.ts │ │ │ ├── ValidationError.ts │ │ │ └── models.ts │ │ └── variables.ts │ │ ├── typescript-node │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── api.ts │ │ ├── api │ │ │ ├── apis.ts │ │ │ ├── balancesApi.ts │ │ │ ├── ordersApi.ts │ │ │ └── positionsApi.ts │ │ ├── git_push.sh │ │ └── model │ │ │ ├── balance.ts │ │ │ ├── balanceDataInner.ts │ │ │ ├── fills.ts │ │ │ ├── messageError.ts │ │ │ ├── messageReject.ts │ │ │ ├── models.ts │ │ │ ├── ordSide.ts │ │ │ ├── ordStatus.ts │ │ │ ├── ordType.ts │ │ │ ├── orderCancelAllRequest.ts │ │ │ ├── orderCancelSingleRequest.ts │ │ │ ├── orderExecutionReport.ts │ │ │ ├── orderExecutionReportAllOf.ts │ │ │ ├── orderHistory.ts │ │ │ ├── orderNewSingleRequest.ts │ │ │ ├── position.ts │ │ │ ├── positionDataInner.ts │ │ │ ├── rejectReason.ts │ │ │ ├── timeInForce.ts │ │ │ └── validationError.ts │ │ └── typescript-rxjs │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ ├── FILES │ │ └── VERSION │ │ ├── apis │ │ ├── BalancesApi.ts │ │ ├── OrdersApi.ts │ │ ├── PositionsApi.ts │ │ └── index.ts │ │ ├── index.ts │ │ ├── models │ │ ├── Balance.ts │ │ ├── BalanceDataInner.ts │ │ ├── Fills.ts │ │ ├── MessageError.ts │ │ ├── MessageReject.ts │ │ ├── OrdSide.ts │ │ ├── OrdStatus.ts │ │ ├── OrdType.ts │ │ ├── OrderCancelAllRequest.ts │ │ ├── OrderCancelSingleRequest.ts │ │ ├── OrderExecutionReport.ts │ │ ├── OrderExecutionReportAllOf.ts │ │ ├── OrderHistory.ts │ │ ├── OrderNewSingleRequest.ts │ │ ├── Position.ts │ │ ├── PositionDataInner.ts │ │ ├── RejectReason.ts │ │ ├── TimeInForce.ts │ │ ├── ValidationError.ts │ │ └── index.ts │ │ ├── runtime.ts │ │ ├── servers.ts │ │ └── tsconfig.json ├── exchange-rates-api-rest-historical │ ├── sdk-config │ │ ├── ada.yaml │ │ ├── android.yaml │ │ ├── apex.yaml │ │ ├── bash.yaml │ │ ├── c.yaml │ │ ├── clojure.yaml │ │ ├── cpp-restsdk.yaml │ │ ├── cpp-tizen.yaml │ │ ├── csharp.yaml │ │ ├── dart-dio.yaml │ │ ├── dart.yaml │ │ ├── eiffel.yaml │ │ ├── elixir.yaml │ │ ├── elm.yaml │ │ ├── erlang-client.yaml │ │ ├── erlang-proper.yaml │ │ ├── go.yaml │ │ ├── groovy.yaml │ │ ├── haskell-http-client.yaml │ │ ├── java.yaml │ │ ├── javascript-closure-angular.yaml │ │ ├── javascript-flowtyped.yaml │ │ ├── javascript.yaml │ │ ├── kotlin.yaml │ │ ├── lua.yaml │ │ ├── perl.yaml │ │ ├── php.yaml │ │ ├── powershell.yaml │ │ ├── python.yaml │ │ ├── r.yaml │ │ ├── ruby.yaml │ │ ├── scala-akka.yaml │ │ ├── shared │ │ │ └── common.yaml │ │ ├── typescript-angular.yaml │ │ ├── typescript-jquery.yaml │ │ ├── typescript-node.yaml │ │ └── typescript-rxjs.yaml │ ├── sdk │ │ ├── ada │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── config.gpr │ │ │ ├── defaultpackage.gpr │ │ │ └── src │ │ │ │ ├── -client.adb │ │ │ │ ├── .ads │ │ │ │ ├── client │ │ │ │ ├── -clients.adb │ │ │ │ └── -clients.ads │ │ │ │ └── model │ │ │ │ ├── -models.adb │ │ │ │ └── -models.ads │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── ApiException.java │ │ │ │ ├── ApiInvoker.java │ │ │ │ ├── JsonUtil.java │ │ │ │ ├── Pair.java │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.java │ │ │ │ └── MetadataApi.java │ │ │ │ ├── auth │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ ├── Authentication.java │ │ │ │ └── HttpBasicAuth.java │ │ │ │ ├── model │ │ │ │ ├── V1Asset.java │ │ │ │ ├── V1ChainNetworkAddress.java │ │ │ │ ├── V1ExchangeRate.java │ │ │ │ ├── V1ExchangeRates.java │ │ │ │ ├── V1ExchangeRatesRate.java │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.java │ │ │ │ ├── V1Icon.java │ │ │ │ └── V1TimeseriesPeriod.java │ │ │ │ └── request │ │ │ │ ├── DeleteRequest.java │ │ │ │ ├── GetRequest.java │ │ │ │ ├── PatchRequest.java │ │ │ │ ├── PostRequest.java │ │ │ │ └── PutRequest.java │ │ ├── apex │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── project-scratch-def.json │ │ │ ├── force-app │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ ├── classes │ │ │ │ │ ├── OAS.cls │ │ │ │ │ ├── OAS.cls-meta.xml │ │ │ │ │ ├── OASClient.cls │ │ │ │ │ ├── OASClient.cls-meta.xml │ │ │ │ │ ├── OASExchangeRatesApi.cls │ │ │ │ │ ├── OASExchangeRatesApi.cls-meta.xml │ │ │ │ │ ├── OASExchangeRatesApiTest.cls │ │ │ │ │ ├── OASExchangeRatesApiTest.cls-meta.xml │ │ │ │ │ ├── OASMetadataApi.cls │ │ │ │ │ ├── OASMetadataApi.cls-meta.xml │ │ │ │ │ ├── OASMetadataApiTest.cls │ │ │ │ │ ├── OASMetadataApiTest.cls-meta.xml │ │ │ │ │ ├── OASResponseMock.cls │ │ │ │ │ ├── OASResponseMock.cls-meta.xml │ │ │ │ │ ├── OASTest.cls │ │ │ │ │ ├── OASTest.cls-meta.xml │ │ │ │ │ ├── OASV1Asset.cls │ │ │ │ │ ├── OASV1Asset.cls-meta.xml │ │ │ │ │ ├── OASV1AssetTest.cls │ │ │ │ │ ├── OASV1AssetTest.cls-meta.xml │ │ │ │ │ ├── OASV1ChainNetworkAddress.cls │ │ │ │ │ ├── OASV1ChainNetworkAddress.cls-meta.xml │ │ │ │ │ ├── OASV1ChainNetworkAddressTest.cls │ │ │ │ │ ├── OASV1ChainNetworkAddressTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRate.cls │ │ │ │ │ ├── OASV1ExchangeRate.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRateTest.cls │ │ │ │ │ ├── OASV1ExchangeRateTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRates.cls │ │ │ │ │ ├── OASV1ExchangeRates.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesRate.cls │ │ │ │ │ ├── OASV1ExchangeRatesRate.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesRateTest.cls │ │ │ │ │ ├── OASV1ExchangeRatesRateTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesTest.cls │ │ │ │ │ ├── OASV1ExchangeRatesTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesTimeseriesItem.cls │ │ │ │ │ ├── OASV1ExchangeRatesTimeseriesItem.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesTimeseriesItemTest.cls │ │ │ │ │ ├── OASV1ExchangeRatesTimeseriesItemTest.cls-meta.xml │ │ │ │ │ ├── OASV1Icon.cls │ │ │ │ │ ├── OASV1Icon.cls-meta.xml │ │ │ │ │ ├── OASV1IconTest.cls │ │ │ │ │ ├── OASV1IconTest.cls-meta.xml │ │ │ │ │ ├── OASV1TimeseriesPeriod.cls │ │ │ │ │ ├── OASV1TimeseriesPeriod.cls-meta.xml │ │ │ │ │ ├── OASV1TimeseriesPeriodTest.cls │ │ │ │ │ └── OASV1TimeseriesPeriodTest.cls-meta.xml │ │ │ │ │ └── namedCredentials │ │ │ │ │ └── Exchange_Rates_Historical_REST_API.namedCredential-meta.xml │ │ │ └── sfdx-project.json │ │ ├── bash │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── _client.sh │ │ │ ├── client.sh │ │ │ ├── client.sh.bash-completion │ │ │ └── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ ├── c │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── Packing.cmake │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ ├── ExchangeRatesAPI.c │ │ │ │ ├── ExchangeRatesAPI.h │ │ │ │ ├── MetadataAPI.c │ │ │ │ └── MetadataAPI.h │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesAPI.md │ │ │ │ ├── MetadataAPI.md │ │ │ │ ├── v1_asset.md │ │ │ │ ├── v1_chain_network_address.md │ │ │ │ ├── v1_exchange_rate.md │ │ │ │ ├── v1_exchange_rates.md │ │ │ │ ├── v1_exchange_rates_rate.md │ │ │ │ ├── v1_exchange_rates_timeseries_item.md │ │ │ │ ├── v1_icon.md │ │ │ │ └── v1_timeseries_period.md │ │ │ ├── external │ │ │ │ ├── cJSON.c │ │ │ │ ├── cJSON.h │ │ │ │ └── cJSON.licence │ │ │ ├── include │ │ │ │ ├── apiClient.h │ │ │ │ ├── binary.h │ │ │ │ ├── keyValuePair.h │ │ │ │ └── list.h │ │ │ ├── libcurl.licence │ │ │ ├── model │ │ │ │ ├── any_type.h │ │ │ │ ├── object.c │ │ │ │ ├── object.h │ │ │ │ ├── v1_asset.c │ │ │ │ ├── v1_asset.h │ │ │ │ ├── v1_chain_network_address.c │ │ │ │ ├── v1_chain_network_address.h │ │ │ │ ├── v1_exchange_rate.c │ │ │ │ ├── v1_exchange_rate.h │ │ │ │ ├── v1_exchange_rates.c │ │ │ │ ├── v1_exchange_rates.h │ │ │ │ ├── v1_exchange_rates_rate.c │ │ │ │ ├── v1_exchange_rates_rate.h │ │ │ │ ├── v1_exchange_rates_timeseries_item.c │ │ │ │ ├── v1_exchange_rates_timeseries_item.h │ │ │ │ ├── v1_icon.c │ │ │ │ ├── v1_icon.h │ │ │ │ ├── v1_timeseries_period.c │ │ │ │ └── v1_timeseries_period.h │ │ │ ├── src │ │ │ │ ├── apiClient.c │ │ │ │ ├── apiKey.c │ │ │ │ ├── binary.c │ │ │ │ └── list.c │ │ │ ├── uncrustify-rules.cfg │ │ │ └── unit-test │ │ │ │ ├── test_v1_asset.c │ │ │ │ ├── test_v1_chain_network_address.c │ │ │ │ ├── test_v1_exchange_rate.c │ │ │ │ ├── test_v1_exchange_rates.c │ │ │ │ ├── test_v1_exchange_rates_rate.c │ │ │ │ ├── test_v1_exchange_rates_timeseries_item.c │ │ │ │ ├── test_v1_icon.c │ │ │ │ └── test_v1_timeseries_period.c │ │ ├── clojure │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── project.clj │ │ │ └── src │ │ │ │ └── exchange_rates_historical_rest_api │ │ │ │ ├── api │ │ │ │ ├── exchange_rates.clj │ │ │ │ └── metadata.clj │ │ │ │ ├── core.clj │ │ │ │ └── specs │ │ │ │ └── v1 │ │ │ │ ├── asset.clj │ │ │ │ ├── chain_network_address.clj │ │ │ │ ├── exchange_rate.clj │ │ │ │ ├── exchange_rates.clj │ │ │ │ ├── exchange_rates_rate.clj │ │ │ │ ├── exchange_rates_timeseries_item.clj │ │ │ │ ├── icon.clj │ │ │ │ └── timeseries_period.clj │ │ ├── cpp-restsdk │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── README.md │ │ │ ├── git_push.sh │ │ │ ├── include │ │ │ │ └── CppRestOpenAPIClient │ │ │ │ │ ├── AnyType.h │ │ │ │ │ ├── ApiClient.h │ │ │ │ │ ├── ApiConfiguration.h │ │ │ │ │ ├── ApiException.h │ │ │ │ │ ├── HttpContent.h │ │ │ │ │ ├── IHttpBody.h │ │ │ │ │ ├── JsonBody.h │ │ │ │ │ ├── ModelBase.h │ │ │ │ │ ├── MultipartFormData.h │ │ │ │ │ ├── Object.h │ │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.h │ │ │ │ │ └── MetadataApi.h │ │ │ │ │ └── model │ │ │ │ │ ├── V1_Asset.h │ │ │ │ │ ├── V1_ChainNetworkAddress.h │ │ │ │ │ ├── V1_ExchangeRate.h │ │ │ │ │ ├── V1_ExchangeRates.h │ │ │ │ │ ├── V1_ExchangeRatesRate.h │ │ │ │ │ ├── V1_ExchangeRatesTimeseriesItem.h │ │ │ │ │ ├── V1_Icon.h │ │ │ │ │ └── V1_TimeseriesPeriod.h │ │ │ └── src │ │ │ │ ├── AnyType.cpp │ │ │ │ ├── ApiClient.cpp │ │ │ │ ├── ApiConfiguration.cpp │ │ │ │ ├── ApiException.cpp │ │ │ │ ├── HttpContent.cpp │ │ │ │ ├── JsonBody.cpp │ │ │ │ ├── ModelBase.cpp │ │ │ │ ├── MultipartFormData.cpp │ │ │ │ ├── Object.cpp │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.cpp │ │ │ │ └── MetadataApi.cpp │ │ │ │ └── model │ │ │ │ ├── V1_Asset.cpp │ │ │ │ ├── V1_ChainNetworkAddress.cpp │ │ │ │ ├── V1_ExchangeRate.cpp │ │ │ │ ├── V1_ExchangeRates.cpp │ │ │ │ ├── V1_ExchangeRatesRate.cpp │ │ │ │ ├── V1_ExchangeRatesTimeseriesItem.cpp │ │ │ │ ├── V1_Icon.cpp │ │ │ │ └── V1_TimeseriesPeriod.cpp │ │ ├── cpp-tizen │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── doc │ │ │ │ ├── Doxyfile │ │ │ │ ├── README.md │ │ │ │ └── generateDocumentation.sh │ │ │ └── src │ │ │ │ ├── Error.cpp │ │ │ │ ├── Error.h │ │ │ │ ├── ExchangeRatesManager.cpp │ │ │ │ ├── ExchangeRatesManager.h │ │ │ │ ├── Helpers.cpp │ │ │ │ ├── Helpers.h │ │ │ │ ├── MetadataManager.cpp │ │ │ │ ├── MetadataManager.h │ │ │ │ ├── NetClient.cpp │ │ │ │ ├── NetClient.h │ │ │ │ ├── Object.h │ │ │ │ ├── RequestInfo.h │ │ │ │ ├── V1Asset.cpp │ │ │ │ ├── V1Asset.h │ │ │ │ ├── V1ChainNetworkAddress.cpp │ │ │ │ ├── V1ChainNetworkAddress.h │ │ │ │ ├── V1ExchangeRate.cpp │ │ │ │ ├── V1ExchangeRate.h │ │ │ │ ├── V1ExchangeRates.cpp │ │ │ │ ├── V1ExchangeRates.h │ │ │ │ ├── V1ExchangeRatesRate.cpp │ │ │ │ ├── V1ExchangeRatesRate.h │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.cpp │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.h │ │ │ │ ├── V1Icon.cpp │ │ │ │ ├── V1Icon.h │ │ │ │ ├── V1TimeseriesPeriod.cpp │ │ │ │ └── V1TimeseriesPeriod.h │ │ ├── csharp │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── APIBricks.CoinAPI.ExchangeRatesAPI.Historical.REST.V1.sln │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── apis │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ └── MetadataApi.md │ │ │ │ ├── models │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ │ ├── V1Icon.md │ │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ │ └── scripts │ │ │ │ │ ├── git_push.ps1 │ │ │ │ │ └── git_push.sh │ │ │ └── src │ │ │ │ ├── APIBricks.CoinAPI.ExchangeRatesAPI.Historical.REST.V1.Test │ │ │ │ ├── APIBricks.CoinAPI.ExchangeRatesAPI.Historical.REST.V1.Test.csproj │ │ │ │ ├── Api │ │ │ │ │ ├── ApiTestsBase.cs │ │ │ │ │ ├── DependencyInjectionTests.cs │ │ │ │ │ ├── ExchangeRatesApiTests.cs │ │ │ │ │ └── MetadataApiTests.cs │ │ │ │ ├── Model │ │ │ │ │ ├── V1AssetTests.cs │ │ │ │ │ ├── V1ChainNetworkAddressTests.cs │ │ │ │ │ ├── V1ExchangeRateTests.cs │ │ │ │ │ ├── V1ExchangeRatesRateTests.cs │ │ │ │ │ ├── V1ExchangeRatesTests.cs │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTests.cs │ │ │ │ │ ├── V1IconTests.cs │ │ │ │ │ └── V1TimeseriesPeriodTests.cs │ │ │ │ └── README.md │ │ │ │ └── APIBricks.CoinAPI.ExchangeRatesAPI.Historical.REST.V1 │ │ │ │ ├── APIBricks.CoinAPI.ExchangeRatesAPI.Historical.REST.V1.csproj │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApi.cs │ │ │ │ ├── IApi.cs │ │ │ │ └── MetadataApi.cs │ │ │ │ ├── Client │ │ │ │ ├── ApiException.cs │ │ │ │ ├── ApiFactory.cs │ │ │ │ ├── ApiKeyToken.cs │ │ │ │ ├── ApiResponseEventArgs.cs │ │ │ │ ├── ApiResponse`1.cs │ │ │ │ ├── ClientUtils.cs │ │ │ │ ├── CookieContainer.cs │ │ │ │ ├── DateOnlyJsonConverter.cs │ │ │ │ ├── DateOnlyNullableJsonConverter.cs │ │ │ │ ├── DateTimeJsonConverter.cs │ │ │ │ ├── DateTimeNullableJsonConverter.cs │ │ │ │ ├── ExceptionEventArgs.cs │ │ │ │ ├── HostConfiguration.cs │ │ │ │ ├── JsonSerializerOptionsProvider.cs │ │ │ │ ├── Option.cs │ │ │ │ ├── RateLimitProvider`1.cs │ │ │ │ ├── TokenBase.cs │ │ │ │ ├── TokenContainer`1.cs │ │ │ │ └── TokenProvider`1.cs │ │ │ │ ├── Extensions │ │ │ │ ├── IHostBuilderExtensions.cs │ │ │ │ ├── IHttpClientBuilderExtensions.cs │ │ │ │ └── IServiceCollectionExtensions.cs │ │ │ │ ├── Model │ │ │ │ ├── V1Asset.cs │ │ │ │ ├── V1ChainNetworkAddress.cs │ │ │ │ ├── V1ExchangeRate.cs │ │ │ │ ├── V1ExchangeRates.cs │ │ │ │ ├── V1ExchangeRatesRate.cs │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.cs │ │ │ │ ├── V1Icon.cs │ │ │ │ └── V1TimeseriesPeriod.cs │ │ │ │ └── README.md │ │ ├── dart-dio │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── lib │ │ │ │ ├── openapi.dart │ │ │ │ └── src │ │ │ │ │ ├── api.dart │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.dart │ │ │ │ │ └── metadata_api.dart │ │ │ │ │ ├── api_util.dart │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── auth.dart │ │ │ │ │ ├── basic_auth.dart │ │ │ │ │ ├── bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ │ ├── date_serializer.dart │ │ │ │ │ ├── model │ │ │ │ │ ├── date.dart │ │ │ │ │ ├── v1_asset.dart │ │ │ │ │ ├── v1_chain_network_address.dart │ │ │ │ │ ├── v1_exchange_rate.dart │ │ │ │ │ ├── v1_exchange_rates.dart │ │ │ │ │ ├── v1_exchange_rates_rate.dart │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.dart │ │ │ │ │ ├── v1_icon.dart │ │ │ │ │ └── v1_timeseries_period.dart │ │ │ │ │ └── serializers.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── exchange_rates_api_test.dart │ │ │ │ ├── metadata_api_test.dart │ │ │ │ ├── v1_asset_test.dart │ │ │ │ ├── v1_chain_network_address_test.dart │ │ │ │ ├── v1_exchange_rate_test.dart │ │ │ │ ├── v1_exchange_rates_rate_test.dart │ │ │ │ ├── v1_exchange_rates_test.dart │ │ │ │ ├── v1_exchange_rates_timeseries_item_test.dart │ │ │ │ ├── v1_icon_test.dart │ │ │ │ └── v1_timeseries_period_test.dart │ │ ├── dart │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── api.dart │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.dart │ │ │ │ │ └── metadata_api.dart │ │ │ │ ├── api_client.dart │ │ │ │ ├── api_exception.dart │ │ │ │ ├── api_helper.dart │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── authentication.dart │ │ │ │ │ ├── http_basic_auth.dart │ │ │ │ │ ├── http_bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ └── model │ │ │ │ │ ├── v1_asset.dart │ │ │ │ │ ├── v1_chain_network_address.dart │ │ │ │ │ ├── v1_exchange_rate.dart │ │ │ │ │ ├── v1_exchange_rates.dart │ │ │ │ │ ├── v1_exchange_rates_rate.dart │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.dart │ │ │ │ │ ├── v1_icon.dart │ │ │ │ │ └── v1_timeseries_period.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── exchange_rates_api_test.dart │ │ │ │ ├── metadata_api_test.dart │ │ │ │ ├── v1_asset_test.dart │ │ │ │ ├── v1_chain_network_address_test.dart │ │ │ │ ├── v1_exchange_rate_test.dart │ │ │ │ ├── v1_exchange_rates_rate_test.dart │ │ │ │ ├── v1_exchange_rates_test.dart │ │ │ │ ├── v1_exchange_rates_timeseries_item_test.dart │ │ │ │ ├── v1_icon_test.dart │ │ │ │ └── v1_timeseries_period_test.dart │ │ ├── eiffel │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api_client.ecf │ │ │ ├── docs │ │ │ │ ├── EXCHANGERATES_API.md │ │ │ │ ├── METADATA_API.md │ │ │ │ ├── V1_ASSET.md │ │ │ │ ├── V1_CHAIN_NETWORK_ADDRESS.md │ │ │ │ ├── V1_EXCHANGE_RATE.md │ │ │ │ ├── V1_EXCHANGE_RATES.md │ │ │ │ ├── V1_EXCHANGE_RATES_RATE.md │ │ │ │ ├── V1_EXCHANGE_RATES_TIMESERIES_ITEM.md │ │ │ │ ├── V1_ICON.md │ │ │ │ └── V1_TIMESERIES_PERIOD.md │ │ │ ├── src │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.e │ │ │ │ │ └── metadata_api.e │ │ │ │ ├── api_client.e │ │ │ │ ├── domain │ │ │ │ │ ├── v1_asset.e │ │ │ │ │ ├── v1_chain_network_address.e │ │ │ │ │ ├── v1_exchange_rate.e │ │ │ │ │ ├── v1_exchange_rates.e │ │ │ │ │ ├── v1_exchange_rates_rate.e │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.e │ │ │ │ │ ├── v1_icon.e │ │ │ │ │ └── v1_timeseries_period.e │ │ │ │ └── framework │ │ │ │ │ ├── api_client_request.e │ │ │ │ │ ├── api_client_response.e │ │ │ │ │ ├── api_error.e │ │ │ │ │ ├── api_i.e │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.e │ │ │ │ │ ├── authentication.e │ │ │ │ │ ├── http_basic_auth.e │ │ │ │ │ └── oauth.e │ │ │ │ │ ├── configuration.e │ │ │ │ │ └── serialization │ │ │ │ │ ├── api_deserializer.e │ │ │ │ │ ├── api_json_deserializer.e │ │ │ │ │ ├── api_json_serializer.e │ │ │ │ │ ├── api_serializer.e │ │ │ │ │ ├── json_basic_reflector_deserializer.e │ │ │ │ │ └── json_type_utilities_ext.e │ │ │ └── test │ │ │ │ ├── api_test.ecf │ │ │ │ ├── apis │ │ │ │ ├── exchangerates_api_test.e │ │ │ │ └── metadata_api_test.e │ │ │ │ └── application.e │ │ ├── elixir │ │ │ ├── .formatter.exs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ ├── config.exs │ │ │ │ └── runtime.exs │ │ │ ├── lib │ │ │ │ └── exchange_rates_historical_restapi │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates.ex │ │ │ │ │ └── metadata.ex │ │ │ │ │ ├── connection.ex │ │ │ │ │ ├── deserializer.ex │ │ │ │ │ ├── model │ │ │ │ │ ├── v1_asset.ex │ │ │ │ │ ├── v1_chain_network_address.ex │ │ │ │ │ ├── v1_exchange_rate.ex │ │ │ │ │ ├── v1_exchange_rates.ex │ │ │ │ │ ├── v1_exchange_rates_rate.ex │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.ex │ │ │ │ │ ├── v1_icon.ex │ │ │ │ │ └── v1_timeseries_period.ex │ │ │ │ │ └── request_builder.ex │ │ │ ├── mix.exs │ │ │ └── test │ │ │ │ └── test_helper.exs │ │ ├── elm │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ ├── Api.elm │ │ │ │ └── Api │ │ │ │ ├── Data.elm │ │ │ │ ├── Request │ │ │ │ ├── ExchangeRates.elm │ │ │ │ └── Metadata.elm │ │ │ │ └── Time.elm │ │ ├── erlang-client │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ └── src │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi_exchange_rates_api.erl │ │ │ │ ├── openapi_metadata_api.erl │ │ │ │ ├── openapi_utils.erl │ │ │ │ ├── openapi_v1_asset.erl │ │ │ │ ├── openapi_v1_chain_network_address.erl │ │ │ │ ├── openapi_v1_exchange_rate.erl │ │ │ │ ├── openapi_v1_exchange_rates.erl │ │ │ │ ├── openapi_v1_exchange_rates_rate.erl │ │ │ │ ├── openapi_v1_exchange_rates_timeseries_item.erl │ │ │ │ ├── openapi_v1_icon.erl │ │ │ │ └── openapi_v1_timeseries_period.erl │ │ ├── erlang-proper │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ ├── src │ │ │ │ ├── model │ │ │ │ │ ├── openapi_v1_asset.erl │ │ │ │ │ ├── openapi_v1_chain_network_address.erl │ │ │ │ │ ├── openapi_v1_exchange_rate.erl │ │ │ │ │ ├── openapi_v1_exchange_rates.erl │ │ │ │ │ ├── openapi_v1_exchange_rates_rate.erl │ │ │ │ │ ├── openapi_v1_exchange_rates_timeseries_item.erl │ │ │ │ │ ├── openapi_v1_icon.erl │ │ │ │ │ └── openapi_v1_timeseries_period.erl │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi.hrl │ │ │ │ ├── openapi_api.erl │ │ │ │ ├── openapi_gen.erl │ │ │ │ ├── openapi_statem.erl │ │ │ │ ├── openapi_statem.hrl │ │ │ │ └── openapi_utils.erl │ │ │ └── test │ │ │ │ └── prop_openapi.erl │ │ ├── go │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── api_exchange_rates.go │ │ │ ├── api_metadata.go │ │ │ ├── client.go │ │ │ ├── configuration.go │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesAPI.md │ │ │ │ ├── MetadataAPI.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── model_v1_asset.go │ │ │ ├── model_v1_chain_network_address.go │ │ │ ├── model_v1_exchange_rate.go │ │ │ ├── model_v1_exchange_rates.go │ │ │ ├── model_v1_exchange_rates_rate.go │ │ │ ├── model_v1_exchange_rates_timeseries_item.go │ │ │ ├── model_v1_icon.go │ │ │ ├── model_v1_timeseries_period.go │ │ │ ├── response.go │ │ │ ├── test │ │ │ │ ├── api_exchange_rates_test.go │ │ │ │ └── api_metadata_test.go │ │ │ └── utils.go │ │ ├── groovy │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ ├── api │ │ │ │ ├── ApiUtils.groovy │ │ │ │ ├── ExchangeRatesApi.groovy │ │ │ │ └── MetadataApi.groovy │ │ │ │ └── model │ │ │ │ ├── V1Asset.groovy │ │ │ │ ├── V1ChainNetworkAddress.groovy │ │ │ │ ├── V1ExchangeRate.groovy │ │ │ │ ├── V1ExchangeRates.groovy │ │ │ │ ├── V1ExchangeRatesRate.groovy │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.groovy │ │ │ │ ├── V1Icon.groovy │ │ │ │ └── V1TimeseriesPeriod.groovy │ │ ├── haskell-http-client │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── Setup.hs │ │ │ ├── exchange-rates-historical-rest.cabal │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── ExchangeRatesHistoricalREST.hs │ │ │ │ └── ExchangeRatesHistoricalREST │ │ │ │ │ ├── API.hs │ │ │ │ │ ├── API │ │ │ │ │ ├── ExchangeRates.hs │ │ │ │ │ └── Metadata.hs │ │ │ │ │ ├── Client.hs │ │ │ │ │ ├── Core.hs │ │ │ │ │ ├── Logging.hs │ │ │ │ │ ├── LoggingKatip.hs │ │ │ │ │ ├── LoggingMonadLogger.hs │ │ │ │ │ ├── MimeTypes.hs │ │ │ │ │ ├── Model.hs │ │ │ │ │ └── ModelLens.hs │ │ │ ├── openapi.yaml │ │ │ ├── stack.yaml │ │ │ └── tests │ │ │ │ ├── ApproxEq.hs │ │ │ │ ├── Instances.hs │ │ │ │ ├── PropMime.hs │ │ │ │ └── Test.hs │ │ ├── java │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── maven.yml │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── build.gradle │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── ApiCallback.java │ │ │ │ │ ├── ApiClient.java │ │ │ │ │ ├── ApiException.java │ │ │ │ │ ├── ApiResponse.java │ │ │ │ │ ├── Configuration.java │ │ │ │ │ ├── GzipRequestInterceptor.java │ │ │ │ │ ├── JSON.java │ │ │ │ │ ├── Pair.java │ │ │ │ │ ├── ProgressRequestBody.java │ │ │ │ │ ├── ProgressResponseBody.java │ │ │ │ │ ├── ServerConfiguration.java │ │ │ │ │ ├── ServerVariable.java │ │ │ │ │ ├── StringUtil.java │ │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.java │ │ │ │ │ └── MetadataApi.java │ │ │ │ │ ├── auth │ │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ │ ├── Authentication.java │ │ │ │ │ ├── HttpBasicAuth.java │ │ │ │ │ └── HttpBearerAuth.java │ │ │ │ │ └── model │ │ │ │ │ ├── AbstractOpenApiSchema.java │ │ │ │ │ ├── V1Asset.java │ │ │ │ │ ├── V1ChainNetworkAddress.java │ │ │ │ │ ├── V1ExchangeRate.java │ │ │ │ │ ├── V1ExchangeRates.java │ │ │ │ │ ├── V1ExchangeRatesRate.java │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.java │ │ │ │ │ ├── V1Icon.java │ │ │ │ │ └── V1TimeseriesPeriod.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApiTest.java │ │ │ │ └── MetadataApiTest.java │ │ │ │ └── model │ │ │ │ ├── V1AssetTest.java │ │ │ │ ├── V1ChainNetworkAddressTest.java │ │ │ │ ├── V1ExchangeRateTest.java │ │ │ │ ├── V1ExchangeRatesRateTest.java │ │ │ │ ├── V1ExchangeRatesTest.java │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTest.java │ │ │ │ ├── V1IconTest.java │ │ │ │ └── V1TimeseriesPeriodTest.java │ │ ├── javascript-closure-angular │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ └── API │ │ │ │ └── Client │ │ │ │ ├── ExchangeRatesApi.js │ │ │ │ ├── MetadataApi.js │ │ │ │ ├── V1Asset.js │ │ │ │ ├── V1ChainNetworkAddress.js │ │ │ │ ├── V1ExchangeRate.js │ │ │ │ ├── V1ExchangeRates.js │ │ │ │ ├── V1ExchangeRatesRate.js │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.js │ │ │ │ ├── V1Icon.js │ │ │ │ └── V1TimeseriesPeriod.js │ │ ├── javascript-flowtyped │ │ │ ├── .babelrc │ │ │ ├── .flowconfig │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── api.js │ │ │ │ ├── configuration.js │ │ │ │ └── index.js │ │ ├── javascript │ │ │ ├── .babelrc │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── mocha.opts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── ApiClient.js │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.js │ │ │ │ │ └── MetadataApi.js │ │ │ │ ├── index.js │ │ │ │ └── model │ │ │ │ │ ├── V1Asset.js │ │ │ │ │ ├── V1ChainNetworkAddress.js │ │ │ │ │ ├── V1ExchangeRate.js │ │ │ │ │ ├── V1ExchangeRates.js │ │ │ │ │ ├── V1ExchangeRatesRate.js │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.js │ │ │ │ │ ├── V1Icon.js │ │ │ │ │ └── V1TimeseriesPeriod.js │ │ │ └── test │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.spec.js │ │ │ │ └── MetadataApi.spec.js │ │ │ │ └── model │ │ │ │ ├── V1Asset.spec.js │ │ │ │ ├── V1ChainNetworkAddress.spec.js │ │ │ │ ├── V1ExchangeRate.spec.js │ │ │ │ ├── V1ExchangeRates.spec.js │ │ │ │ ├── V1ExchangeRatesRate.spec.js │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.spec.js │ │ │ │ ├── V1Icon.spec.js │ │ │ │ └── V1TimeseriesPeriod.spec.js │ │ ├── kotlin │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── apis │ │ │ │ │ ├── ExchangeRatesApi.kt │ │ │ │ │ └── MetadataApi.kt │ │ │ │ │ ├── infrastructure │ │ │ │ │ ├── ApiAbstractions.kt │ │ │ │ │ ├── ApiClient.kt │ │ │ │ │ ├── ApiResponse.kt │ │ │ │ │ ├── BigDecimalAdapter.kt │ │ │ │ │ ├── BigIntegerAdapter.kt │ │ │ │ │ ├── ByteArrayAdapter.kt │ │ │ │ │ ├── Errors.kt │ │ │ │ │ ├── LocalDateAdapter.kt │ │ │ │ │ ├── LocalDateTimeAdapter.kt │ │ │ │ │ ├── OffsetDateTimeAdapter.kt │ │ │ │ │ ├── PartConfig.kt │ │ │ │ │ ├── RequestConfig.kt │ │ │ │ │ ├── RequestMethod.kt │ │ │ │ │ ├── ResponseExtensions.kt │ │ │ │ │ ├── Serializer.kt │ │ │ │ │ ├── URIAdapter.kt │ │ │ │ │ └── UUIDAdapter.kt │ │ │ │ │ └── models │ │ │ │ │ ├── V1Asset.kt │ │ │ │ │ ├── V1ChainNetworkAddress.kt │ │ │ │ │ ├── V1ExchangeRate.kt │ │ │ │ │ ├── V1ExchangeRates.kt │ │ │ │ │ ├── V1ExchangeRatesRate.kt │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.kt │ │ │ │ │ ├── V1Icon.kt │ │ │ │ │ └── V1TimeseriesPeriod.kt │ │ │ │ └── test │ │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── apis │ │ │ │ ├── ExchangeRatesApiTest.kt │ │ │ │ └── MetadataApiTest.kt │ │ │ │ └── models │ │ │ │ ├── V1AssetTest.kt │ │ │ │ ├── V1ChainNetworkAddressTest.kt │ │ │ │ ├── V1ExchangeRateTest.kt │ │ │ │ ├── V1ExchangeRatesRateTest.kt │ │ │ │ ├── V1ExchangeRatesTest.kt │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTest.kt │ │ │ │ ├── V1IconTest.kt │ │ │ │ └── V1TimeseriesPeriodTest.kt │ │ ├── lua │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── openapiclient-1.0.0-1.rockspec │ │ │ ├── openapiclient │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.lua │ │ │ │ │ └── metadata_api.lua │ │ │ │ └── model │ │ │ │ │ ├── v1_asset.lua │ │ │ │ │ ├── v1_chain_network_address.lua │ │ │ │ │ ├── v1_exchange_rate.lua │ │ │ │ │ ├── v1_exchange_rates.lua │ │ │ │ │ ├── v1_exchange_rates_rate.lua │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.lua │ │ │ │ │ ├── v1_icon.lua │ │ │ │ │ └── v1_timeseries_period.lua │ │ │ └── spec │ │ │ │ ├── exchange_rates_api_spec.lua │ │ │ │ ├── metadata_api_spec.lua │ │ │ │ ├── v1_asset_spec.lua │ │ │ │ ├── v1_chain_network_address_spec.lua │ │ │ │ ├── v1_exchange_rate_spec.lua │ │ │ │ ├── v1_exchange_rates_rate_spec.lua │ │ │ │ ├── v1_exchange_rates_spec.lua │ │ │ │ ├── v1_exchange_rates_timeseries_item_spec.lua │ │ │ │ ├── v1_icon_spec.lua │ │ │ │ └── v1_timeseries_period_spec.lua │ │ ├── perl │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── autodoc │ │ │ ├── cpanfile │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ └── WWW │ │ │ │ │ └── OpenAPIClient │ │ │ │ │ ├── ApiClient.pm │ │ │ │ │ ├── ApiFactory.pm │ │ │ │ │ ├── Configuration.pm │ │ │ │ │ ├── ExchangeRatesApi.pm │ │ │ │ │ ├── MetadataApi.pm │ │ │ │ │ ├── Object │ │ │ │ │ ├── V1Asset.pm │ │ │ │ │ ├── V1ChainNetworkAddress.pm │ │ │ │ │ ├── V1ExchangeRate.pm │ │ │ │ │ ├── V1ExchangeRates.pm │ │ │ │ │ ├── V1ExchangeRatesRate.pm │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.pm │ │ │ │ │ ├── V1Icon.pm │ │ │ │ │ └── V1TimeseriesPeriod.pm │ │ │ │ │ ├── Role.pm │ │ │ │ │ └── Role │ │ │ │ │ └── AutoDoc.pm │ │ │ └── t │ │ │ │ ├── ExchangeRatesApiTest.t │ │ │ │ ├── MetadataApiTest.t │ │ │ │ ├── V1AssetTest.t │ │ │ │ ├── V1ChainNetworkAddressTest.t │ │ │ │ ├── V1ExchangeRateTest.t │ │ │ │ ├── V1ExchangeRatesRateTest.t │ │ │ │ ├── V1ExchangeRatesTest.t │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTest.t │ │ │ │ ├── V1IconTest.t │ │ │ │ └── V1TimeseriesPeriodTest.t │ │ ├── php │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ └── MetadataApi.md │ │ │ │ └── Model │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ │ ├── V1Icon.md │ │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.php │ │ │ │ │ └── MetadataApi.php │ │ │ │ ├── ApiException.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── FormDataProcessor.php │ │ │ │ ├── HeaderSelector.php │ │ │ │ ├── Model │ │ │ │ │ ├── ModelInterface.php │ │ │ │ │ ├── V1Asset.php │ │ │ │ │ ├── V1ChainNetworkAddress.php │ │ │ │ │ ├── V1ExchangeRate.php │ │ │ │ │ ├── V1ExchangeRates.php │ │ │ │ │ ├── V1ExchangeRatesRate.php │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.php │ │ │ │ │ ├── V1Icon.php │ │ │ │ │ └── V1TimeseriesPeriod.php │ │ │ │ └── ObjectSerializer.php │ │ │ ├── phpunit.xml.dist │ │ │ └── test │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApiTest.php │ │ │ │ └── MetadataApiTest.php │ │ │ │ └── Model │ │ │ │ ├── V1AssetTest.php │ │ │ │ ├── V1ChainNetworkAddressTest.php │ │ │ │ ├── V1ExchangeRateTest.php │ │ │ │ ├── V1ExchangeRatesRateTest.php │ │ │ │ ├── V1ExchangeRatesTest.php │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTest.php │ │ │ │ ├── V1IconTest.php │ │ │ │ └── V1TimeseriesPeriodTest.php │ │ ├── powershell │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Build.ps1 │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── src │ │ │ │ └── PSOpenAPITools │ │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.ps1 │ │ │ │ │ └── MetadataApi.ps1 │ │ │ │ │ ├── Client │ │ │ │ │ └── Configuration.ps1 │ │ │ │ │ ├── Model │ │ │ │ │ ├── V1Asset.ps1 │ │ │ │ │ ├── V1ChainNetworkAddress.ps1 │ │ │ │ │ ├── V1ExchangeRate.ps1 │ │ │ │ │ ├── V1ExchangeRates.ps1 │ │ │ │ │ ├── V1ExchangeRatesRate.ps1 │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.ps1 │ │ │ │ │ ├── V1Icon.ps1 │ │ │ │ │ └── V1TimeseriesPeriod.ps1 │ │ │ │ │ ├── PSOpenAPITools.psm1 │ │ │ │ │ ├── Private │ │ │ │ │ ├── ApiClient.ps1 │ │ │ │ │ ├── Get-CommonParameters.ps1 │ │ │ │ │ ├── HttpSignatureAuth.ps1 │ │ │ │ │ ├── Out-DebugParameter.ps1 │ │ │ │ │ └── RSAEncryptionProvider.cs │ │ │ │ │ └── en-US │ │ │ │ │ └── about_PSOpenAPITools.help.txt │ │ │ └── tests │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApi.Tests.ps1 │ │ │ │ └── MetadataApi.Tests.ps1 │ │ │ │ └── Model │ │ │ │ ├── V1Asset.Tests.ps1 │ │ │ │ ├── V1ChainNetworkAddress.Tests.ps1 │ │ │ │ ├── V1ExchangeRate.Tests.ps1 │ │ │ │ ├── V1ExchangeRates.Tests.ps1 │ │ │ │ ├── V1ExchangeRatesRate.Tests.ps1 │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.Tests.ps1 │ │ │ │ ├── V1Icon.Tests.ps1 │ │ │ │ └── V1TimeseriesPeriod.Tests.ps1 │ │ ├── python │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api_bricks_coinapi_exchange_rates_api_rest_historical │ │ │ │ ├── __init__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exchange_rates_api.py │ │ │ │ │ └── metadata_api.py │ │ │ │ ├── api_client.py │ │ │ │ ├── api_response.py │ │ │ │ ├── configuration.py │ │ │ │ ├── docs │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ ├── MetadataApi.md │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ │ ├── V1Icon.md │ │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ │ ├── exceptions.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── v1_asset.py │ │ │ │ │ ├── v1_chain_network_address.py │ │ │ │ │ ├── v1_exchange_rate.py │ │ │ │ │ ├── v1_exchange_rates.py │ │ │ │ │ ├── v1_exchange_rates_rate.py │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.py │ │ │ │ │ ├── v1_icon.py │ │ │ │ │ └── v1_timeseries_period.py │ │ │ │ ├── rest.py │ │ │ │ └── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_exchange_rates_api.py │ │ │ │ │ ├── test_metadata_api.py │ │ │ │ │ ├── test_v1_asset.py │ │ │ │ │ ├── test_v1_chain_network_address.py │ │ │ │ │ ├── test_v1_exchange_rate.py │ │ │ │ │ ├── test_v1_exchange_rates.py │ │ │ │ │ ├── test_v1_exchange_rates_rate.py │ │ │ │ │ ├── test_v1_exchange_rates_timeseries_item.py │ │ │ │ │ ├── test_v1_icon.py │ │ │ │ │ └── test_v1_timeseries_period.py │ │ │ └── api_bricks_coinapi_exchange_rates_api_rest_historical_README.md │ │ ├── r │ │ │ ├── .Rbuildignore │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── r-client.yaml │ │ │ ├── .gitignore │ │ │ ├── .lintr │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── api_client.R │ │ │ │ ├── api_response.R │ │ │ │ ├── exchange_rates_api.R │ │ │ │ ├── metadata_api.R │ │ │ │ ├── v1_asset.R │ │ │ │ ├── v1_chain_network_address.R │ │ │ │ ├── v1_exchange_rate.R │ │ │ │ ├── v1_exchange_rates.R │ │ │ │ ├── v1_exchange_rates_rate.R │ │ │ │ ├── v1_exchange_rates_timeseries_item.R │ │ │ │ ├── v1_icon.R │ │ │ │ └── v1_timeseries_period.R │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ └── tests │ │ │ │ ├── testthat.R │ │ │ │ └── testthat │ │ │ │ ├── test_exchange_rates_api.R │ │ │ │ ├── test_metadata_api.R │ │ │ │ ├── test_v1_asset.R │ │ │ │ ├── test_v1_chain_network_address.R │ │ │ │ ├── test_v1_exchange_rate.R │ │ │ │ ├── test_v1_exchange_rates.R │ │ │ │ ├── test_v1_exchange_rates_rate.R │ │ │ │ ├── test_v1_exchange_rates_timeseries_item.R │ │ │ │ ├── test_v1_icon.R │ │ │ │ └── test_v1_timeseries_period.R │ │ ├── ruby │ │ │ ├── .gitignore │ │ │ ├── .gitlab-ci.yml │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .rspec │ │ │ ├── .rubocop.yml │ │ │ ├── .travis.yml │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── openapi_client.rb │ │ │ │ └── openapi_client │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.rb │ │ │ │ │ └── metadata_api.rb │ │ │ │ │ ├── api_client.rb │ │ │ │ │ ├── api_error.rb │ │ │ │ │ ├── api_model_base.rb │ │ │ │ │ ├── configuration.rb │ │ │ │ │ ├── models │ │ │ │ │ ├── v1_asset.rb │ │ │ │ │ ├── v1_chain_network_address.rb │ │ │ │ │ ├── v1_exchange_rate.rb │ │ │ │ │ ├── v1_exchange_rates.rb │ │ │ │ │ ├── v1_exchange_rates_rate.rb │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.rb │ │ │ │ │ ├── v1_icon.rb │ │ │ │ │ └── v1_timeseries_period.rb │ │ │ │ │ └── version.rb │ │ │ ├── openapi_client.gemspec │ │ │ └── spec │ │ │ │ ├── api │ │ │ │ ├── exchange_rates_api_spec.rb │ │ │ │ └── metadata_api_spec.rb │ │ │ │ ├── models │ │ │ │ ├── v1_asset_spec.rb │ │ │ │ ├── v1_chain_network_address_spec.rb │ │ │ │ ├── v1_exchange_rate_spec.rb │ │ │ │ ├── v1_exchange_rates_rate_spec.rb │ │ │ │ ├── v1_exchange_rates_spec.rb │ │ │ │ ├── v1_exchange_rates_timeseries_item_spec.rb │ │ │ │ ├── v1_icon_spec.rb │ │ │ │ └── v1_timeseries_period_spec.rb │ │ │ │ └── spec_helper.rb │ │ ├── scala-akka │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── pom.xml │ │ │ ├── project │ │ │ │ └── build.properties │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── reference.conf │ │ │ │ └── scala │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── EnumsSerializers.scala │ │ │ │ ├── ExchangeRatesApi.scala │ │ │ │ └── MetadataApi.scala │ │ │ │ ├── core │ │ │ │ ├── ApiInvoker.scala │ │ │ │ ├── ApiRequest.scala │ │ │ │ ├── ApiSettings.scala │ │ │ │ ├── Serializers.scala │ │ │ │ └── requests.scala │ │ │ │ └── model │ │ │ │ ├── Asset.scala │ │ │ │ ├── ChainNetworkAddress.scala │ │ │ │ ├── ExchangeRate.scala │ │ │ │ ├── ExchangeRates.scala │ │ │ │ ├── ExchangeRatesRate.scala │ │ │ │ ├── ExchangeRatesTimeseriesItem.scala │ │ │ │ ├── Icon.scala │ │ │ │ └── TimeseriesPeriod.scala │ │ ├── typescript-angular │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── api.base.service.ts │ │ │ ├── api.module.ts │ │ │ ├── api │ │ │ │ ├── api.ts │ │ │ │ ├── exchangeRates.service.ts │ │ │ │ └── metadata.service.ts │ │ │ ├── configuration.ts │ │ │ ├── encoder.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── models.ts │ │ │ │ ├── v1Asset.ts │ │ │ │ ├── v1ChainNetworkAddress.ts │ │ │ │ ├── v1ExchangeRate.ts │ │ │ │ ├── v1ExchangeRates.ts │ │ │ │ ├── v1ExchangeRatesRate.ts │ │ │ │ ├── v1ExchangeRatesTimeseriesItem.ts │ │ │ │ ├── v1Icon.ts │ │ │ │ └── v1TimeseriesPeriod.ts │ │ │ ├── param.ts │ │ │ ├── provide-api.ts │ │ │ └── variables.ts │ │ ├── typescript-jquery │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.ts │ │ │ │ ├── MetadataApi.ts │ │ │ │ └── api.ts │ │ │ ├── configuration.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── V1Asset.ts │ │ │ │ ├── V1ChainNetworkAddress.ts │ │ │ │ ├── V1ExchangeRate.ts │ │ │ │ ├── V1ExchangeRates.ts │ │ │ │ ├── V1ExchangeRatesRate.ts │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.ts │ │ │ │ ├── V1Icon.ts │ │ │ │ ├── V1TimeseriesPeriod.ts │ │ │ │ └── models.ts │ │ │ └── variables.ts │ │ ├── typescript-node │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── api │ │ │ │ ├── apis.ts │ │ │ │ ├── exchangeRatesApi.ts │ │ │ │ └── metadataApi.ts │ │ │ ├── git_push.sh │ │ │ └── model │ │ │ │ ├── models.ts │ │ │ │ ├── v1Asset.ts │ │ │ │ ├── v1ChainNetworkAddress.ts │ │ │ │ ├── v1ExchangeRate.ts │ │ │ │ ├── v1ExchangeRates.ts │ │ │ │ ├── v1ExchangeRatesRate.ts │ │ │ │ ├── v1ExchangeRatesTimeseriesItem.ts │ │ │ │ ├── v1Icon.ts │ │ │ │ └── v1TimeseriesPeriod.ts │ │ └── typescript-rxjs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ │ ├── apis │ │ │ ├── ExchangeRatesApi.ts │ │ │ ├── MetadataApi.ts │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ ├── V1Asset.ts │ │ │ ├── V1ChainNetworkAddress.ts │ │ │ ├── V1ExchangeRate.ts │ │ │ ├── V1ExchangeRates.ts │ │ │ ├── V1ExchangeRatesRate.ts │ │ │ ├── V1ExchangeRatesTimeseriesItem.ts │ │ │ ├── V1Icon.ts │ │ │ ├── V1TimeseriesPeriod.ts │ │ │ └── index.ts │ │ │ ├── runtime.ts │ │ │ ├── servers.ts │ │ │ └── tsconfig.json │ └── spec │ │ ├── openapi.json │ │ └── openapi.yaml ├── exchange-rates-api-rest-realtime │ ├── sdk-config │ │ ├── ada.yaml │ │ ├── android.yaml │ │ ├── apex.yaml │ │ ├── bash.yaml │ │ ├── c.yaml │ │ ├── clojure.yaml │ │ ├── cpp-restsdk.yaml │ │ ├── cpp-tizen.yaml │ │ ├── csharp.yaml │ │ ├── dart-dio.yaml │ │ ├── dart.yaml │ │ ├── eiffel.yaml │ │ ├── elixir.yaml │ │ ├── elm.yaml │ │ ├── erlang-client.yaml │ │ ├── erlang-proper.yaml │ │ ├── go.yaml │ │ ├── groovy.yaml │ │ ├── haskell-http-client.yaml │ │ ├── java.yaml │ │ ├── javascript-closure-angular.yaml │ │ ├── javascript-flowtyped.yaml │ │ ├── javascript.yaml │ │ ├── kotlin.yaml │ │ ├── lua.yaml │ │ ├── perl.yaml │ │ ├── php.yaml │ │ ├── powershell.yaml │ │ ├── python.yaml │ │ ├── r.yaml │ │ ├── ruby.yaml │ │ ├── scala-akka.yaml │ │ ├── shared │ │ │ └── common.yaml │ │ ├── typescript-angular.yaml │ │ ├── typescript-jquery.yaml │ │ ├── typescript-node.yaml │ │ └── typescript-rxjs.yaml │ ├── sdk │ │ ├── ada │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── config.gpr │ │ │ ├── defaultpackage.gpr │ │ │ └── src │ │ │ │ ├── -client.adb │ │ │ │ ├── .ads │ │ │ │ ├── client │ │ │ │ ├── -clients.adb │ │ │ │ └── -clients.ads │ │ │ │ └── model │ │ │ │ ├── -models.adb │ │ │ │ └── -models.ads │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── ApiException.java │ │ │ │ ├── ApiInvoker.java │ │ │ │ ├── JsonUtil.java │ │ │ │ ├── Pair.java │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.java │ │ │ │ └── MetadataApi.java │ │ │ │ ├── auth │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ ├── Authentication.java │ │ │ │ └── HttpBasicAuth.java │ │ │ │ ├── model │ │ │ │ ├── V1Asset.java │ │ │ │ ├── V1ChainNetworkAddress.java │ │ │ │ ├── V1ExchangeRate.java │ │ │ │ ├── V1ExchangeRates.java │ │ │ │ ├── V1ExchangeRatesRate.java │ │ │ │ └── V1Icon.java │ │ │ │ └── request │ │ │ │ ├── DeleteRequest.java │ │ │ │ ├── GetRequest.java │ │ │ │ ├── PatchRequest.java │ │ │ │ ├── PostRequest.java │ │ │ │ └── PutRequest.java │ │ ├── apex │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── project-scratch-def.json │ │ │ ├── force-app │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ ├── classes │ │ │ │ │ ├── OAS.cls │ │ │ │ │ ├── OAS.cls-meta.xml │ │ │ │ │ ├── OASClient.cls │ │ │ │ │ ├── OASClient.cls-meta.xml │ │ │ │ │ ├── OASExchangeRatesApi.cls │ │ │ │ │ ├── OASExchangeRatesApi.cls-meta.xml │ │ │ │ │ ├── OASExchangeRatesApiTest.cls │ │ │ │ │ ├── OASExchangeRatesApiTest.cls-meta.xml │ │ │ │ │ ├── OASMetadataApi.cls │ │ │ │ │ ├── OASMetadataApi.cls-meta.xml │ │ │ │ │ ├── OASMetadataApiTest.cls │ │ │ │ │ ├── OASMetadataApiTest.cls-meta.xml │ │ │ │ │ ├── OASResponseMock.cls │ │ │ │ │ ├── OASResponseMock.cls-meta.xml │ │ │ │ │ ├── OASTest.cls │ │ │ │ │ ├── OASTest.cls-meta.xml │ │ │ │ │ ├── OASV1Asset.cls │ │ │ │ │ ├── OASV1Asset.cls-meta.xml │ │ │ │ │ ├── OASV1AssetTest.cls │ │ │ │ │ ├── OASV1AssetTest.cls-meta.xml │ │ │ │ │ ├── OASV1ChainNetworkAddress.cls │ │ │ │ │ ├── OASV1ChainNetworkAddress.cls-meta.xml │ │ │ │ │ ├── OASV1ChainNetworkAddressTest.cls │ │ │ │ │ ├── OASV1ChainNetworkAddressTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRate.cls │ │ │ │ │ ├── OASV1ExchangeRate.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRateTest.cls │ │ │ │ │ ├── OASV1ExchangeRateTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRates.cls │ │ │ │ │ ├── OASV1ExchangeRates.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesRate.cls │ │ │ │ │ ├── OASV1ExchangeRatesRate.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesRateTest.cls │ │ │ │ │ ├── OASV1ExchangeRatesRateTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesTest.cls │ │ │ │ │ ├── OASV1ExchangeRatesTest.cls-meta.xml │ │ │ │ │ ├── OASV1Icon.cls │ │ │ │ │ ├── OASV1Icon.cls-meta.xml │ │ │ │ │ ├── OASV1IconTest.cls │ │ │ │ │ └── OASV1IconTest.cls-meta.xml │ │ │ │ │ └── namedCredentials │ │ │ │ │ └── Exchange_Rates_Realtime_REST_API.namedCredential-meta.xml │ │ │ └── sfdx-project.json │ │ ├── bash │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── _client.sh │ │ │ ├── client.sh │ │ │ ├── client.sh.bash-completion │ │ │ └── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ ├── c │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── Packing.cmake │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ ├── ExchangeRatesAPI.c │ │ │ │ ├── ExchangeRatesAPI.h │ │ │ │ ├── MetadataAPI.c │ │ │ │ └── MetadataAPI.h │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesAPI.md │ │ │ │ ├── MetadataAPI.md │ │ │ │ ├── v1_asset.md │ │ │ │ ├── v1_chain_network_address.md │ │ │ │ ├── v1_exchange_rate.md │ │ │ │ ├── v1_exchange_rates.md │ │ │ │ ├── v1_exchange_rates_rate.md │ │ │ │ └── v1_icon.md │ │ │ ├── external │ │ │ │ ├── cJSON.c │ │ │ │ ├── cJSON.h │ │ │ │ └── cJSON.licence │ │ │ ├── include │ │ │ │ ├── apiClient.h │ │ │ │ ├── binary.h │ │ │ │ ├── keyValuePair.h │ │ │ │ └── list.h │ │ │ ├── libcurl.licence │ │ │ ├── model │ │ │ │ ├── any_type.h │ │ │ │ ├── object.c │ │ │ │ ├── object.h │ │ │ │ ├── v1_asset.c │ │ │ │ ├── v1_asset.h │ │ │ │ ├── v1_chain_network_address.c │ │ │ │ ├── v1_chain_network_address.h │ │ │ │ ├── v1_exchange_rate.c │ │ │ │ ├── v1_exchange_rate.h │ │ │ │ ├── v1_exchange_rates.c │ │ │ │ ├── v1_exchange_rates.h │ │ │ │ ├── v1_exchange_rates_rate.c │ │ │ │ ├── v1_exchange_rates_rate.h │ │ │ │ ├── v1_icon.c │ │ │ │ └── v1_icon.h │ │ │ ├── src │ │ │ │ ├── apiClient.c │ │ │ │ ├── apiKey.c │ │ │ │ ├── binary.c │ │ │ │ └── list.c │ │ │ ├── uncrustify-rules.cfg │ │ │ └── unit-test │ │ │ │ ├── test_v1_asset.c │ │ │ │ ├── test_v1_chain_network_address.c │ │ │ │ ├── test_v1_exchange_rate.c │ │ │ │ ├── test_v1_exchange_rates.c │ │ │ │ ├── test_v1_exchange_rates_rate.c │ │ │ │ └── test_v1_icon.c │ │ ├── clojure │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── project.clj │ │ │ └── src │ │ │ │ └── exchange_rates_realtime_rest_api │ │ │ │ ├── api │ │ │ │ ├── exchange_rates.clj │ │ │ │ └── metadata.clj │ │ │ │ ├── core.clj │ │ │ │ └── specs │ │ │ │ └── v1 │ │ │ │ ├── asset.clj │ │ │ │ ├── chain_network_address.clj │ │ │ │ ├── exchange_rate.clj │ │ │ │ ├── exchange_rates.clj │ │ │ │ ├── exchange_rates_rate.clj │ │ │ │ └── icon.clj │ │ ├── cpp-restsdk │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── README.md │ │ │ ├── git_push.sh │ │ │ ├── include │ │ │ │ └── CppRestOpenAPIClient │ │ │ │ │ ├── AnyType.h │ │ │ │ │ ├── ApiClient.h │ │ │ │ │ ├── ApiConfiguration.h │ │ │ │ │ ├── ApiException.h │ │ │ │ │ ├── HttpContent.h │ │ │ │ │ ├── IHttpBody.h │ │ │ │ │ ├── JsonBody.h │ │ │ │ │ ├── ModelBase.h │ │ │ │ │ ├── MultipartFormData.h │ │ │ │ │ ├── Object.h │ │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.h │ │ │ │ │ └── MetadataApi.h │ │ │ │ │ └── model │ │ │ │ │ ├── V1_Asset.h │ │ │ │ │ ├── V1_ChainNetworkAddress.h │ │ │ │ │ ├── V1_ExchangeRate.h │ │ │ │ │ ├── V1_ExchangeRates.h │ │ │ │ │ ├── V1_ExchangeRatesRate.h │ │ │ │ │ └── V1_Icon.h │ │ │ └── src │ │ │ │ ├── AnyType.cpp │ │ │ │ ├── ApiClient.cpp │ │ │ │ ├── ApiConfiguration.cpp │ │ │ │ ├── ApiException.cpp │ │ │ │ ├── HttpContent.cpp │ │ │ │ ├── JsonBody.cpp │ │ │ │ ├── ModelBase.cpp │ │ │ │ ├── MultipartFormData.cpp │ │ │ │ ├── Object.cpp │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.cpp │ │ │ │ └── MetadataApi.cpp │ │ │ │ └── model │ │ │ │ ├── V1_Asset.cpp │ │ │ │ ├── V1_ChainNetworkAddress.cpp │ │ │ │ ├── V1_ExchangeRate.cpp │ │ │ │ ├── V1_ExchangeRates.cpp │ │ │ │ ├── V1_ExchangeRatesRate.cpp │ │ │ │ └── V1_Icon.cpp │ │ ├── cpp-tizen │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── doc │ │ │ │ ├── Doxyfile │ │ │ │ ├── README.md │ │ │ │ └── generateDocumentation.sh │ │ │ └── src │ │ │ │ ├── Error.cpp │ │ │ │ ├── Error.h │ │ │ │ ├── ExchangeRatesManager.cpp │ │ │ │ ├── ExchangeRatesManager.h │ │ │ │ ├── Helpers.cpp │ │ │ │ ├── Helpers.h │ │ │ │ ├── MetadataManager.cpp │ │ │ │ ├── MetadataManager.h │ │ │ │ ├── NetClient.cpp │ │ │ │ ├── NetClient.h │ │ │ │ ├── Object.h │ │ │ │ ├── RequestInfo.h │ │ │ │ ├── V1Asset.cpp │ │ │ │ ├── V1Asset.h │ │ │ │ ├── V1ChainNetworkAddress.cpp │ │ │ │ ├── V1ChainNetworkAddress.h │ │ │ │ ├── V1ExchangeRate.cpp │ │ │ │ ├── V1ExchangeRate.h │ │ │ │ ├── V1ExchangeRates.cpp │ │ │ │ ├── V1ExchangeRates.h │ │ │ │ ├── V1ExchangeRatesRate.cpp │ │ │ │ ├── V1ExchangeRatesRate.h │ │ │ │ ├── V1Icon.cpp │ │ │ │ └── V1Icon.h │ │ ├── csharp │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── APIBricks.CoinAPI.ExchangeRatesAPI.Realtime.REST.V1.sln │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── apis │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ └── MetadataApi.md │ │ │ │ ├── models │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ └── V1Icon.md │ │ │ │ └── scripts │ │ │ │ │ ├── git_push.ps1 │ │ │ │ │ └── git_push.sh │ │ │ └── src │ │ │ │ ├── APIBricks.CoinAPI.ExchangeRatesAPI.Realtime.REST.V1.Test │ │ │ │ ├── APIBricks.CoinAPI.ExchangeRatesAPI.Realtime.REST.V1.Test.csproj │ │ │ │ ├── Api │ │ │ │ │ ├── ApiTestsBase.cs │ │ │ │ │ ├── DependencyInjectionTests.cs │ │ │ │ │ ├── ExchangeRatesApiTests.cs │ │ │ │ │ └── MetadataApiTests.cs │ │ │ │ ├── Model │ │ │ │ │ ├── V1AssetTests.cs │ │ │ │ │ ├── V1ChainNetworkAddressTests.cs │ │ │ │ │ ├── V1ExchangeRateTests.cs │ │ │ │ │ ├── V1ExchangeRatesRateTests.cs │ │ │ │ │ ├── V1ExchangeRatesTests.cs │ │ │ │ │ └── V1IconTests.cs │ │ │ │ └── README.md │ │ │ │ └── APIBricks.CoinAPI.ExchangeRatesAPI.Realtime.REST.V1 │ │ │ │ ├── APIBricks.CoinAPI.ExchangeRatesAPI.Realtime.REST.V1.csproj │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApi.cs │ │ │ │ ├── IApi.cs │ │ │ │ └── MetadataApi.cs │ │ │ │ ├── Client │ │ │ │ ├── ApiException.cs │ │ │ │ ├── ApiFactory.cs │ │ │ │ ├── ApiKeyToken.cs │ │ │ │ ├── ApiResponseEventArgs.cs │ │ │ │ ├── ApiResponse`1.cs │ │ │ │ ├── BearerToken.cs │ │ │ │ ├── ClientUtils.cs │ │ │ │ ├── CookieContainer.cs │ │ │ │ ├── DateOnlyJsonConverter.cs │ │ │ │ ├── DateOnlyNullableJsonConverter.cs │ │ │ │ ├── DateTimeJsonConverter.cs │ │ │ │ ├── DateTimeNullableJsonConverter.cs │ │ │ │ ├── ExceptionEventArgs.cs │ │ │ │ ├── HostConfiguration.cs │ │ │ │ ├── JsonSerializerOptionsProvider.cs │ │ │ │ ├── Option.cs │ │ │ │ ├── RateLimitProvider`1.cs │ │ │ │ ├── TokenBase.cs │ │ │ │ ├── TokenContainer`1.cs │ │ │ │ └── TokenProvider`1.cs │ │ │ │ ├── Extensions │ │ │ │ ├── IHostBuilderExtensions.cs │ │ │ │ ├── IHttpClientBuilderExtensions.cs │ │ │ │ └── IServiceCollectionExtensions.cs │ │ │ │ ├── Model │ │ │ │ ├── V1Asset.cs │ │ │ │ ├── V1ChainNetworkAddress.cs │ │ │ │ ├── V1ExchangeRate.cs │ │ │ │ ├── V1ExchangeRates.cs │ │ │ │ ├── V1ExchangeRatesRate.cs │ │ │ │ └── V1Icon.cs │ │ │ │ └── README.md │ │ ├── dart-dio │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── lib │ │ │ │ ├── openapi.dart │ │ │ │ └── src │ │ │ │ │ ├── api.dart │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.dart │ │ │ │ │ └── metadata_api.dart │ │ │ │ │ ├── api_util.dart │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── auth.dart │ │ │ │ │ ├── basic_auth.dart │ │ │ │ │ ├── bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ │ ├── date_serializer.dart │ │ │ │ │ ├── model │ │ │ │ │ ├── date.dart │ │ │ │ │ ├── v1_asset.dart │ │ │ │ │ ├── v1_chain_network_address.dart │ │ │ │ │ ├── v1_exchange_rate.dart │ │ │ │ │ ├── v1_exchange_rates.dart │ │ │ │ │ ├── v1_exchange_rates_rate.dart │ │ │ │ │ └── v1_icon.dart │ │ │ │ │ └── serializers.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── exchange_rates_api_test.dart │ │ │ │ ├── metadata_api_test.dart │ │ │ │ ├── v1_asset_test.dart │ │ │ │ ├── v1_chain_network_address_test.dart │ │ │ │ ├── v1_exchange_rate_test.dart │ │ │ │ ├── v1_exchange_rates_rate_test.dart │ │ │ │ ├── v1_exchange_rates_test.dart │ │ │ │ └── v1_icon_test.dart │ │ ├── dart │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── api.dart │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.dart │ │ │ │ │ └── metadata_api.dart │ │ │ │ ├── api_client.dart │ │ │ │ ├── api_exception.dart │ │ │ │ ├── api_helper.dart │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── authentication.dart │ │ │ │ │ ├── http_basic_auth.dart │ │ │ │ │ ├── http_bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ └── model │ │ │ │ │ ├── v1_asset.dart │ │ │ │ │ ├── v1_chain_network_address.dart │ │ │ │ │ ├── v1_exchange_rate.dart │ │ │ │ │ ├── v1_exchange_rates.dart │ │ │ │ │ ├── v1_exchange_rates_rate.dart │ │ │ │ │ └── v1_icon.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── exchange_rates_api_test.dart │ │ │ │ ├── metadata_api_test.dart │ │ │ │ ├── v1_asset_test.dart │ │ │ │ ├── v1_chain_network_address_test.dart │ │ │ │ ├── v1_exchange_rate_test.dart │ │ │ │ ├── v1_exchange_rates_rate_test.dart │ │ │ │ ├── v1_exchange_rates_test.dart │ │ │ │ └── v1_icon_test.dart │ │ ├── eiffel │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api_client.ecf │ │ │ ├── docs │ │ │ │ ├── EXCHANGERATES_API.md │ │ │ │ ├── METADATA_API.md │ │ │ │ ├── V1_ASSET.md │ │ │ │ ├── V1_CHAIN_NETWORK_ADDRESS.md │ │ │ │ ├── V1_EXCHANGE_RATE.md │ │ │ │ ├── V1_EXCHANGE_RATES.md │ │ │ │ ├── V1_EXCHANGE_RATES_RATE.md │ │ │ │ └── V1_ICON.md │ │ │ ├── src │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.e │ │ │ │ │ └── metadata_api.e │ │ │ │ ├── api_client.e │ │ │ │ ├── domain │ │ │ │ │ ├── v1_asset.e │ │ │ │ │ ├── v1_chain_network_address.e │ │ │ │ │ ├── v1_exchange_rate.e │ │ │ │ │ ├── v1_exchange_rates.e │ │ │ │ │ ├── v1_exchange_rates_rate.e │ │ │ │ │ └── v1_icon.e │ │ │ │ └── framework │ │ │ │ │ ├── api_client_request.e │ │ │ │ │ ├── api_client_response.e │ │ │ │ │ ├── api_error.e │ │ │ │ │ ├── api_i.e │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.e │ │ │ │ │ ├── authentication.e │ │ │ │ │ ├── http_basic_auth.e │ │ │ │ │ └── oauth.e │ │ │ │ │ ├── configuration.e │ │ │ │ │ └── serialization │ │ │ │ │ ├── api_deserializer.e │ │ │ │ │ ├── api_json_deserializer.e │ │ │ │ │ ├── api_json_serializer.e │ │ │ │ │ ├── api_serializer.e │ │ │ │ │ ├── json_basic_reflector_deserializer.e │ │ │ │ │ └── json_type_utilities_ext.e │ │ │ └── test │ │ │ │ ├── api_test.ecf │ │ │ │ ├── apis │ │ │ │ ├── exchangerates_api_test.e │ │ │ │ └── metadata_api_test.e │ │ │ │ └── application.e │ │ ├── elixir │ │ │ ├── .formatter.exs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ ├── config.exs │ │ │ │ └── runtime.exs │ │ │ ├── lib │ │ │ │ └── exchange_rates_realtime_restapi │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates.ex │ │ │ │ │ └── metadata.ex │ │ │ │ │ ├── connection.ex │ │ │ │ │ ├── deserializer.ex │ │ │ │ │ ├── model │ │ │ │ │ ├── v1_asset.ex │ │ │ │ │ ├── v1_chain_network_address.ex │ │ │ │ │ ├── v1_exchange_rate.ex │ │ │ │ │ ├── v1_exchange_rates.ex │ │ │ │ │ ├── v1_exchange_rates_rate.ex │ │ │ │ │ └── v1_icon.ex │ │ │ │ │ └── request_builder.ex │ │ │ ├── mix.exs │ │ │ └── test │ │ │ │ └── test_helper.exs │ │ ├── elm │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ ├── Api.elm │ │ │ │ └── Api │ │ │ │ ├── Data.elm │ │ │ │ ├── Request │ │ │ │ ├── ExchangeRates.elm │ │ │ │ └── Metadata.elm │ │ │ │ └── Time.elm │ │ ├── erlang-client │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ └── src │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi_exchange_rates_api.erl │ │ │ │ ├── openapi_metadata_api.erl │ │ │ │ ├── openapi_utils.erl │ │ │ │ ├── openapi_v1_asset.erl │ │ │ │ ├── openapi_v1_chain_network_address.erl │ │ │ │ ├── openapi_v1_exchange_rate.erl │ │ │ │ ├── openapi_v1_exchange_rates.erl │ │ │ │ ├── openapi_v1_exchange_rates_rate.erl │ │ │ │ └── openapi_v1_icon.erl │ │ ├── erlang-proper │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ ├── src │ │ │ │ ├── model │ │ │ │ │ ├── openapi_v1_asset.erl │ │ │ │ │ ├── openapi_v1_chain_network_address.erl │ │ │ │ │ ├── openapi_v1_exchange_rate.erl │ │ │ │ │ ├── openapi_v1_exchange_rates.erl │ │ │ │ │ ├── openapi_v1_exchange_rates_rate.erl │ │ │ │ │ └── openapi_v1_icon.erl │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi.hrl │ │ │ │ ├── openapi_api.erl │ │ │ │ ├── openapi_gen.erl │ │ │ │ ├── openapi_statem.erl │ │ │ │ ├── openapi_statem.hrl │ │ │ │ └── openapi_utils.erl │ │ │ └── test │ │ │ │ └── prop_openapi.erl │ │ ├── go │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── api_exchange_rates.go │ │ │ ├── api_metadata.go │ │ │ ├── client.go │ │ │ ├── configuration.go │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesAPI.md │ │ │ │ ├── MetadataAPI.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── model_v1_asset.go │ │ │ ├── model_v1_chain_network_address.go │ │ │ ├── model_v1_exchange_rate.go │ │ │ ├── model_v1_exchange_rates.go │ │ │ ├── model_v1_exchange_rates_rate.go │ │ │ ├── model_v1_icon.go │ │ │ ├── response.go │ │ │ ├── test │ │ │ │ ├── api_exchange_rates_test.go │ │ │ │ └── api_metadata_test.go │ │ │ └── utils.go │ │ ├── groovy │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ ├── api │ │ │ │ ├── ApiUtils.groovy │ │ │ │ ├── ExchangeRatesApi.groovy │ │ │ │ └── MetadataApi.groovy │ │ │ │ └── model │ │ │ │ ├── V1Asset.groovy │ │ │ │ ├── V1ChainNetworkAddress.groovy │ │ │ │ ├── V1ExchangeRate.groovy │ │ │ │ ├── V1ExchangeRates.groovy │ │ │ │ ├── V1ExchangeRatesRate.groovy │ │ │ │ └── V1Icon.groovy │ │ ├── haskell-http-client │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── Setup.hs │ │ │ ├── exchange-rates-realtime-rest.cabal │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── ExchangeRatesRealtimeREST.hs │ │ │ │ └── ExchangeRatesRealtimeREST │ │ │ │ │ ├── API.hs │ │ │ │ │ ├── API │ │ │ │ │ ├── ExchangeRates.hs │ │ │ │ │ └── Metadata.hs │ │ │ │ │ ├── Client.hs │ │ │ │ │ ├── Core.hs │ │ │ │ │ ├── Logging.hs │ │ │ │ │ ├── LoggingKatip.hs │ │ │ │ │ ├── LoggingMonadLogger.hs │ │ │ │ │ ├── MimeTypes.hs │ │ │ │ │ ├── Model.hs │ │ │ │ │ └── ModelLens.hs │ │ │ ├── openapi.yaml │ │ │ ├── stack.yaml │ │ │ └── tests │ │ │ │ ├── ApproxEq.hs │ │ │ │ ├── Instances.hs │ │ │ │ ├── PropMime.hs │ │ │ │ └── Test.hs │ │ ├── java │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── maven.yml │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── build.gradle │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── ApiCallback.java │ │ │ │ │ ├── ApiClient.java │ │ │ │ │ ├── ApiException.java │ │ │ │ │ ├── ApiResponse.java │ │ │ │ │ ├── Configuration.java │ │ │ │ │ ├── GzipRequestInterceptor.java │ │ │ │ │ ├── JSON.java │ │ │ │ │ ├── Pair.java │ │ │ │ │ ├── ProgressRequestBody.java │ │ │ │ │ ├── ProgressResponseBody.java │ │ │ │ │ ├── ServerConfiguration.java │ │ │ │ │ ├── ServerVariable.java │ │ │ │ │ ├── StringUtil.java │ │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.java │ │ │ │ │ └── MetadataApi.java │ │ │ │ │ ├── auth │ │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ │ ├── Authentication.java │ │ │ │ │ ├── HttpBasicAuth.java │ │ │ │ │ └── HttpBearerAuth.java │ │ │ │ │ └── model │ │ │ │ │ ├── AbstractOpenApiSchema.java │ │ │ │ │ ├── V1Asset.java │ │ │ │ │ ├── V1ChainNetworkAddress.java │ │ │ │ │ ├── V1ExchangeRate.java │ │ │ │ │ ├── V1ExchangeRates.java │ │ │ │ │ ├── V1ExchangeRatesRate.java │ │ │ │ │ └── V1Icon.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApiTest.java │ │ │ │ └── MetadataApiTest.java │ │ │ │ └── model │ │ │ │ ├── V1AssetTest.java │ │ │ │ ├── V1ChainNetworkAddressTest.java │ │ │ │ ├── V1ExchangeRateTest.java │ │ │ │ ├── V1ExchangeRatesRateTest.java │ │ │ │ ├── V1ExchangeRatesTest.java │ │ │ │ └── V1IconTest.java │ │ ├── javascript-closure-angular │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ └── API │ │ │ │ └── Client │ │ │ │ ├── ExchangeRatesApi.js │ │ │ │ ├── MetadataApi.js │ │ │ │ ├── V1Asset.js │ │ │ │ ├── V1ChainNetworkAddress.js │ │ │ │ ├── V1ExchangeRate.js │ │ │ │ ├── V1ExchangeRates.js │ │ │ │ ├── V1ExchangeRatesRate.js │ │ │ │ └── V1Icon.js │ │ ├── javascript-flowtyped │ │ │ ├── .babelrc │ │ │ ├── .flowconfig │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── api.js │ │ │ │ ├── configuration.js │ │ │ │ └── index.js │ │ ├── javascript │ │ │ ├── .babelrc │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── mocha.opts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── ApiClient.js │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.js │ │ │ │ │ └── MetadataApi.js │ │ │ │ ├── index.js │ │ │ │ └── model │ │ │ │ │ ├── V1Asset.js │ │ │ │ │ ├── V1ChainNetworkAddress.js │ │ │ │ │ ├── V1ExchangeRate.js │ │ │ │ │ ├── V1ExchangeRates.js │ │ │ │ │ ├── V1ExchangeRatesRate.js │ │ │ │ │ └── V1Icon.js │ │ │ └── test │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.spec.js │ │ │ │ └── MetadataApi.spec.js │ │ │ │ └── model │ │ │ │ ├── V1Asset.spec.js │ │ │ │ ├── V1ChainNetworkAddress.spec.js │ │ │ │ ├── V1ExchangeRate.spec.js │ │ │ │ ├── V1ExchangeRates.spec.js │ │ │ │ ├── V1ExchangeRatesRate.spec.js │ │ │ │ └── V1Icon.spec.js │ │ ├── kotlin │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── apis │ │ │ │ │ ├── ExchangeRatesApi.kt │ │ │ │ │ └── MetadataApi.kt │ │ │ │ │ ├── infrastructure │ │ │ │ │ ├── ApiAbstractions.kt │ │ │ │ │ ├── ApiClient.kt │ │ │ │ │ ├── ApiResponse.kt │ │ │ │ │ ├── BigDecimalAdapter.kt │ │ │ │ │ ├── BigIntegerAdapter.kt │ │ │ │ │ ├── ByteArrayAdapter.kt │ │ │ │ │ ├── Errors.kt │ │ │ │ │ ├── LocalDateAdapter.kt │ │ │ │ │ ├── LocalDateTimeAdapter.kt │ │ │ │ │ ├── OffsetDateTimeAdapter.kt │ │ │ │ │ ├── PartConfig.kt │ │ │ │ │ ├── RequestConfig.kt │ │ │ │ │ ├── RequestMethod.kt │ │ │ │ │ ├── ResponseExtensions.kt │ │ │ │ │ ├── Serializer.kt │ │ │ │ │ ├── URIAdapter.kt │ │ │ │ │ └── UUIDAdapter.kt │ │ │ │ │ └── models │ │ │ │ │ ├── V1Asset.kt │ │ │ │ │ ├── V1ChainNetworkAddress.kt │ │ │ │ │ ├── V1ExchangeRate.kt │ │ │ │ │ ├── V1ExchangeRates.kt │ │ │ │ │ ├── V1ExchangeRatesRate.kt │ │ │ │ │ └── V1Icon.kt │ │ │ │ └── test │ │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── apis │ │ │ │ ├── ExchangeRatesApiTest.kt │ │ │ │ └── MetadataApiTest.kt │ │ │ │ └── models │ │ │ │ ├── V1AssetTest.kt │ │ │ │ ├── V1ChainNetworkAddressTest.kt │ │ │ │ ├── V1ExchangeRateTest.kt │ │ │ │ ├── V1ExchangeRatesRateTest.kt │ │ │ │ ├── V1ExchangeRatesTest.kt │ │ │ │ └── V1IconTest.kt │ │ ├── lua │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── openapiclient-1.0.0-1.rockspec │ │ │ ├── openapiclient │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.lua │ │ │ │ │ └── metadata_api.lua │ │ │ │ └── model │ │ │ │ │ ├── v1_asset.lua │ │ │ │ │ ├── v1_chain_network_address.lua │ │ │ │ │ ├── v1_exchange_rate.lua │ │ │ │ │ ├── v1_exchange_rates.lua │ │ │ │ │ ├── v1_exchange_rates_rate.lua │ │ │ │ │ └── v1_icon.lua │ │ │ └── spec │ │ │ │ ├── exchange_rates_api_spec.lua │ │ │ │ ├── metadata_api_spec.lua │ │ │ │ ├── v1_asset_spec.lua │ │ │ │ ├── v1_chain_network_address_spec.lua │ │ │ │ ├── v1_exchange_rate_spec.lua │ │ │ │ ├── v1_exchange_rates_rate_spec.lua │ │ │ │ ├── v1_exchange_rates_spec.lua │ │ │ │ └── v1_icon_spec.lua │ │ ├── perl │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── autodoc │ │ │ ├── cpanfile │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ └── WWW │ │ │ │ │ └── OpenAPIClient │ │ │ │ │ ├── ApiClient.pm │ │ │ │ │ ├── ApiFactory.pm │ │ │ │ │ ├── Configuration.pm │ │ │ │ │ ├── ExchangeRatesApi.pm │ │ │ │ │ ├── MetadataApi.pm │ │ │ │ │ ├── Object │ │ │ │ │ ├── V1Asset.pm │ │ │ │ │ ├── V1ChainNetworkAddress.pm │ │ │ │ │ ├── V1ExchangeRate.pm │ │ │ │ │ ├── V1ExchangeRates.pm │ │ │ │ │ ├── V1ExchangeRatesRate.pm │ │ │ │ │ └── V1Icon.pm │ │ │ │ │ ├── Role.pm │ │ │ │ │ └── Role │ │ │ │ │ └── AutoDoc.pm │ │ │ └── t │ │ │ │ ├── ExchangeRatesApiTest.t │ │ │ │ ├── MetadataApiTest.t │ │ │ │ ├── V1AssetTest.t │ │ │ │ ├── V1ChainNetworkAddressTest.t │ │ │ │ ├── V1ExchangeRateTest.t │ │ │ │ ├── V1ExchangeRatesRateTest.t │ │ │ │ ├── V1ExchangeRatesTest.t │ │ │ │ └── V1IconTest.t │ │ ├── php │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ └── MetadataApi.md │ │ │ │ └── Model │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.php │ │ │ │ │ └── MetadataApi.php │ │ │ │ ├── ApiException.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── FormDataProcessor.php │ │ │ │ ├── HeaderSelector.php │ │ │ │ ├── Model │ │ │ │ │ ├── ModelInterface.php │ │ │ │ │ ├── V1Asset.php │ │ │ │ │ ├── V1ChainNetworkAddress.php │ │ │ │ │ ├── V1ExchangeRate.php │ │ │ │ │ ├── V1ExchangeRates.php │ │ │ │ │ ├── V1ExchangeRatesRate.php │ │ │ │ │ └── V1Icon.php │ │ │ │ └── ObjectSerializer.php │ │ │ ├── phpunit.xml.dist │ │ │ └── test │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApiTest.php │ │ │ │ └── MetadataApiTest.php │ │ │ │ └── Model │ │ │ │ ├── V1AssetTest.php │ │ │ │ ├── V1ChainNetworkAddressTest.php │ │ │ │ ├── V1ExchangeRateTest.php │ │ │ │ ├── V1ExchangeRatesRateTest.php │ │ │ │ ├── V1ExchangeRatesTest.php │ │ │ │ └── V1IconTest.php │ │ ├── powershell │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Build.ps1 │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── src │ │ │ │ └── PSOpenAPITools │ │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.ps1 │ │ │ │ │ └── MetadataApi.ps1 │ │ │ │ │ ├── Client │ │ │ │ │ └── Configuration.ps1 │ │ │ │ │ ├── Model │ │ │ │ │ ├── V1Asset.ps1 │ │ │ │ │ ├── V1ChainNetworkAddress.ps1 │ │ │ │ │ ├── V1ExchangeRate.ps1 │ │ │ │ │ ├── V1ExchangeRates.ps1 │ │ │ │ │ ├── V1ExchangeRatesRate.ps1 │ │ │ │ │ └── V1Icon.ps1 │ │ │ │ │ ├── PSOpenAPITools.psm1 │ │ │ │ │ ├── Private │ │ │ │ │ ├── ApiClient.ps1 │ │ │ │ │ ├── Get-CommonParameters.ps1 │ │ │ │ │ ├── HttpSignatureAuth.ps1 │ │ │ │ │ ├── Out-DebugParameter.ps1 │ │ │ │ │ └── RSAEncryptionProvider.cs │ │ │ │ │ └── en-US │ │ │ │ │ └── about_PSOpenAPITools.help.txt │ │ │ └── tests │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApi.Tests.ps1 │ │ │ │ └── MetadataApi.Tests.ps1 │ │ │ │ └── Model │ │ │ │ ├── V1Asset.Tests.ps1 │ │ │ │ ├── V1ChainNetworkAddress.Tests.ps1 │ │ │ │ ├── V1ExchangeRate.Tests.ps1 │ │ │ │ ├── V1ExchangeRates.Tests.ps1 │ │ │ │ ├── V1ExchangeRatesRate.Tests.ps1 │ │ │ │ └── V1Icon.Tests.ps1 │ │ ├── python │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api_bricks_coinapi_exchange_rates_api_rest_realtime │ │ │ │ ├── __init__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exchange_rates_api.py │ │ │ │ │ └── metadata_api.py │ │ │ │ ├── api_client.py │ │ │ │ ├── api_response.py │ │ │ │ ├── configuration.py │ │ │ │ ├── docs │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ ├── MetadataApi.md │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ └── V1Icon.md │ │ │ │ ├── exceptions.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── v1_asset.py │ │ │ │ │ ├── v1_chain_network_address.py │ │ │ │ │ ├── v1_exchange_rate.py │ │ │ │ │ ├── v1_exchange_rates.py │ │ │ │ │ ├── v1_exchange_rates_rate.py │ │ │ │ │ └── v1_icon.py │ │ │ │ ├── rest.py │ │ │ │ └── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_exchange_rates_api.py │ │ │ │ │ ├── test_metadata_api.py │ │ │ │ │ ├── test_v1_asset.py │ │ │ │ │ ├── test_v1_chain_network_address.py │ │ │ │ │ ├── test_v1_exchange_rate.py │ │ │ │ │ ├── test_v1_exchange_rates.py │ │ │ │ │ ├── test_v1_exchange_rates_rate.py │ │ │ │ │ └── test_v1_icon.py │ │ │ └── api_bricks_coinapi_exchange_rates_api_rest_realtime_README.md │ │ ├── r │ │ │ ├── .Rbuildignore │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── r-client.yaml │ │ │ ├── .gitignore │ │ │ ├── .lintr │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── api_client.R │ │ │ │ ├── api_response.R │ │ │ │ ├── exchange_rates_api.R │ │ │ │ ├── metadata_api.R │ │ │ │ ├── v1_asset.R │ │ │ │ ├── v1_chain_network_address.R │ │ │ │ ├── v1_exchange_rate.R │ │ │ │ ├── v1_exchange_rates.R │ │ │ │ ├── v1_exchange_rates_rate.R │ │ │ │ └── v1_icon.R │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ └── tests │ │ │ │ ├── testthat.R │ │ │ │ └── testthat │ │ │ │ ├── test_exchange_rates_api.R │ │ │ │ ├── test_metadata_api.R │ │ │ │ ├── test_v1_asset.R │ │ │ │ ├── test_v1_chain_network_address.R │ │ │ │ ├── test_v1_exchange_rate.R │ │ │ │ ├── test_v1_exchange_rates.R │ │ │ │ ├── test_v1_exchange_rates_rate.R │ │ │ │ └── test_v1_icon.R │ │ ├── ruby │ │ │ ├── .gitignore │ │ │ ├── .gitlab-ci.yml │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .rspec │ │ │ ├── .rubocop.yml │ │ │ ├── .travis.yml │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── openapi_client.rb │ │ │ │ └── openapi_client │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.rb │ │ │ │ │ └── metadata_api.rb │ │ │ │ │ ├── api_client.rb │ │ │ │ │ ├── api_error.rb │ │ │ │ │ ├── api_model_base.rb │ │ │ │ │ ├── configuration.rb │ │ │ │ │ ├── models │ │ │ │ │ ├── v1_asset.rb │ │ │ │ │ ├── v1_chain_network_address.rb │ │ │ │ │ ├── v1_exchange_rate.rb │ │ │ │ │ ├── v1_exchange_rates.rb │ │ │ │ │ ├── v1_exchange_rates_rate.rb │ │ │ │ │ └── v1_icon.rb │ │ │ │ │ └── version.rb │ │ │ ├── openapi_client.gemspec │ │ │ └── spec │ │ │ │ ├── api │ │ │ │ ├── exchange_rates_api_spec.rb │ │ │ │ └── metadata_api_spec.rb │ │ │ │ ├── models │ │ │ │ ├── v1_asset_spec.rb │ │ │ │ ├── v1_chain_network_address_spec.rb │ │ │ │ ├── v1_exchange_rate_spec.rb │ │ │ │ ├── v1_exchange_rates_rate_spec.rb │ │ │ │ ├── v1_exchange_rates_spec.rb │ │ │ │ └── v1_icon_spec.rb │ │ │ │ └── spec_helper.rb │ │ ├── scala-akka │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── pom.xml │ │ │ ├── project │ │ │ │ └── build.properties │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── reference.conf │ │ │ │ └── scala │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── EnumsSerializers.scala │ │ │ │ ├── ExchangeRatesApi.scala │ │ │ │ └── MetadataApi.scala │ │ │ │ ├── core │ │ │ │ ├── ApiInvoker.scala │ │ │ │ ├── ApiRequest.scala │ │ │ │ ├── ApiSettings.scala │ │ │ │ ├── Serializers.scala │ │ │ │ └── requests.scala │ │ │ │ └── model │ │ │ │ ├── Asset.scala │ │ │ │ ├── ChainNetworkAddress.scala │ │ │ │ ├── ExchangeRate.scala │ │ │ │ ├── ExchangeRates.scala │ │ │ │ ├── ExchangeRatesRate.scala │ │ │ │ └── Icon.scala │ │ ├── typescript-angular │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── api.base.service.ts │ │ │ ├── api.module.ts │ │ │ ├── api │ │ │ │ ├── api.ts │ │ │ │ ├── exchangeRates.service.ts │ │ │ │ └── metadata.service.ts │ │ │ ├── configuration.ts │ │ │ ├── encoder.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── models.ts │ │ │ │ ├── v1Asset.ts │ │ │ │ ├── v1ChainNetworkAddress.ts │ │ │ │ ├── v1ExchangeRate.ts │ │ │ │ ├── v1ExchangeRates.ts │ │ │ │ ├── v1ExchangeRatesRate.ts │ │ │ │ └── v1Icon.ts │ │ │ ├── param.ts │ │ │ ├── provide-api.ts │ │ │ └── variables.ts │ │ ├── typescript-jquery │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.ts │ │ │ │ ├── MetadataApi.ts │ │ │ │ └── api.ts │ │ │ ├── configuration.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── V1Asset.ts │ │ │ │ ├── V1ChainNetworkAddress.ts │ │ │ │ ├── V1ExchangeRate.ts │ │ │ │ ├── V1ExchangeRates.ts │ │ │ │ ├── V1ExchangeRatesRate.ts │ │ │ │ ├── V1Icon.ts │ │ │ │ └── models.ts │ │ │ └── variables.ts │ │ ├── typescript-node │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── api │ │ │ │ ├── apis.ts │ │ │ │ ├── exchangeRatesApi.ts │ │ │ │ └── metadataApi.ts │ │ │ ├── git_push.sh │ │ │ └── model │ │ │ │ ├── models.ts │ │ │ │ ├── v1Asset.ts │ │ │ │ ├── v1ChainNetworkAddress.ts │ │ │ │ ├── v1ExchangeRate.ts │ │ │ │ ├── v1ExchangeRates.ts │ │ │ │ ├── v1ExchangeRatesRate.ts │ │ │ │ └── v1Icon.ts │ │ └── typescript-rxjs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ │ ├── apis │ │ │ ├── ExchangeRatesApi.ts │ │ │ ├── MetadataApi.ts │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ ├── V1Asset.ts │ │ │ ├── V1ChainNetworkAddress.ts │ │ │ ├── V1ExchangeRate.ts │ │ │ ├── V1ExchangeRates.ts │ │ │ ├── V1ExchangeRatesRate.ts │ │ │ ├── V1Icon.ts │ │ │ └── index.ts │ │ │ ├── runtime.ts │ │ │ ├── servers.ts │ │ │ └── tsconfig.json │ └── spec │ │ ├── openapi.json │ │ └── openapi.yaml ├── flat-files-api-processing-samples │ ├── limitbook_full_l2l3 │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── 27606-BITSTAMP_SPOT_BTC_EUR.csv.gz │ │ ├── 4365242-COINBASE_SPOT_ETC_BTC.csv.gz │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── README.md │ │ ├── limitbook_full_l2l3.csproj │ │ └── limitbook_full_l2l3.sln │ └── limitbook_full_to_snapshot_50 │ │ ├── BITSTAMP_SPOT_BTC_USD limitbook_full 20240201.csv.gz │ │ ├── BITSTAMP_SPOT_BTC_USD limitbook_snapshot_50 20240201.csv.gz │ │ └── limitbook_full_to_snapshot_50.py ├── indexes-api-rest │ ├── sdk-config │ │ ├── ada.yaml │ │ ├── android.yaml │ │ ├── apex.yaml │ │ ├── bash.yaml │ │ ├── c.yaml │ │ ├── clojure.yaml │ │ ├── cpp-restsdk.yaml │ │ ├── cpp-tizen.yaml │ │ ├── csharp.yaml │ │ ├── dart-dio.yaml │ │ ├── dart.yaml │ │ ├── eiffel.yaml │ │ ├── elixir.yaml │ │ ├── elm.yaml │ │ ├── erlang-client.yaml │ │ ├── erlang-proper.yaml │ │ ├── go.yaml │ │ ├── groovy.yaml │ │ ├── haskell-http-client.yaml │ │ ├── java.yaml │ │ ├── javascript-closure-angular.yaml │ │ ├── javascript-flowtyped.yaml │ │ ├── javascript.yaml │ │ ├── kotlin.yaml │ │ ├── lua.yaml │ │ ├── perl.yaml │ │ ├── php.yaml │ │ ├── powershell.yaml │ │ ├── python.yaml │ │ ├── r.yaml │ │ ├── ruby.yaml │ │ ├── scala-akka.yaml │ │ ├── shared │ │ │ └── common.yaml │ │ ├── typescript-angular.yaml │ │ ├── typescript-jquery.yaml │ │ ├── typescript-node.yaml │ │ └── typescript-rxjs.yaml │ ├── sdk │ │ ├── ada │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── config.gpr │ │ │ ├── defaultpackage.gpr │ │ │ └── src │ │ │ │ ├── -client.adb │ │ │ │ ├── .ads │ │ │ │ ├── client │ │ │ │ ├── -clients.adb │ │ │ │ └── -clients.ads │ │ │ │ └── model │ │ │ │ ├── -models.adb │ │ │ │ └── -models.ads │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── IndexesApi.md │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetadataExchange.md │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ └── PeriodsApi.md │ │ │ ├── git_push.sh │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── ApiException.java │ │ │ │ ├── ApiInvoker.java │ │ │ │ ├── JsonUtil.java │ │ │ │ ├── Pair.java │ │ │ │ ├── api │ │ │ │ ├── IndexesApi.java │ │ │ │ ├── MetadataApi.java │ │ │ │ └── PeriodsApi.java │ │ │ │ ├── auth │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ ├── Authentication.java │ │ │ │ └── HttpBasicAuth.java │ │ │ │ ├── model │ │ │ │ ├── IndexesIndexDefinitionInputData.java │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.java │ │ │ │ ├── IndexesIndexIdentifier.java │ │ │ │ ├── IndexesIndexMultiAssetWeight.java │ │ │ │ ├── IndexesIndexTimeseriesItem.java │ │ │ │ ├── IndexesIndexValue.java │ │ │ │ ├── IndexesIndexValueComponent.java │ │ │ │ ├── MetadataExchange.java │ │ │ │ └── MetadataTimeseriesPeriod.java │ │ │ │ └── request │ │ │ │ ├── DeleteRequest.java │ │ │ │ ├── GetRequest.java │ │ │ │ ├── PatchRequest.java │ │ │ │ ├── PostRequest.java │ │ │ │ └── PutRequest.java │ │ ├── apex │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── project-scratch-def.json │ │ │ ├── force-app │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ ├── classes │ │ │ │ │ ├── OAS.cls │ │ │ │ │ ├── OAS.cls-meta.xml │ │ │ │ │ ├── OASClient.cls │ │ │ │ │ ├── OASClient.cls-meta.xml │ │ │ │ │ ├── OASIndexesApi.cls │ │ │ │ │ ├── OASIndexesApi.cls-meta.xml │ │ │ │ │ ├── OASIndexesApiTest.cls │ │ │ │ │ ├── OASIndexesApiTest.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexDefinitionInputData.cls │ │ │ │ │ ├── OASIndexesIndexDefinitionInputData.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexDefinitionInputDataTest.cls │ │ │ │ │ ├── OASIndexesIndexDefinitionInputDataTest.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexDefinitionSnapshotEnt.cls │ │ │ │ │ ├── OASIndexesIndexDefinitionSnapshotEnt.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexDefinitionSnapshotEntTest.cls │ │ │ │ │ ├── OASIndexesIndexDefinitionSnapshotEntTest.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexIdentifier.cls │ │ │ │ │ ├── OASIndexesIndexIdentifier.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexIdentifierTest.cls │ │ │ │ │ ├── OASIndexesIndexIdentifierTest.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexMultiAssetWeight.cls │ │ │ │ │ ├── OASIndexesIndexMultiAssetWeight.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexMultiAssetWeightTest.cls │ │ │ │ │ ├── OASIndexesIndexMultiAssetWeightTest.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexTimeseriesItem.cls │ │ │ │ │ ├── OASIndexesIndexTimeseriesItem.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexTimeseriesItemTest.cls │ │ │ │ │ ├── OASIndexesIndexTimeseriesItemTest.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexValue.cls │ │ │ │ │ ├── OASIndexesIndexValue.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexValueComponent.cls │ │ │ │ │ ├── OASIndexesIndexValueComponent.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexValueComponentTest.cls │ │ │ │ │ ├── OASIndexesIndexValueComponentTest.cls-meta.xml │ │ │ │ │ ├── OASIndexesIndexValueTest.cls │ │ │ │ │ ├── OASIndexesIndexValueTest.cls-meta.xml │ │ │ │ │ ├── OASMetadataApi.cls │ │ │ │ │ ├── OASMetadataApi.cls-meta.xml │ │ │ │ │ ├── OASMetadataApiTest.cls │ │ │ │ │ ├── OASMetadataApiTest.cls-meta.xml │ │ │ │ │ ├── OASMetadataExchange.cls │ │ │ │ │ ├── OASMetadataExchange.cls-meta.xml │ │ │ │ │ ├── OASMetadataExchangeTest.cls │ │ │ │ │ ├── OASMetadataExchangeTest.cls-meta.xml │ │ │ │ │ ├── OASMetadataTimeseriesPeriod.cls │ │ │ │ │ ├── OASMetadataTimeseriesPeriod.cls-meta.xml │ │ │ │ │ ├── OASMetadataTimeseriesPeriodTest.cls │ │ │ │ │ ├── OASMetadataTimeseriesPeriodTest.cls-meta.xml │ │ │ │ │ ├── OASPeriodsApi.cls │ │ │ │ │ ├── OASPeriodsApi.cls-meta.xml │ │ │ │ │ ├── OASPeriodsApiTest.cls │ │ │ │ │ ├── OASPeriodsApiTest.cls-meta.xml │ │ │ │ │ ├── OASResponseMock.cls │ │ │ │ │ ├── OASResponseMock.cls-meta.xml │ │ │ │ │ ├── OASTest.cls │ │ │ │ │ └── OASTest.cls-meta.xml │ │ │ │ │ └── namedCredentials │ │ │ │ │ └── CoinAPI_Indexes_REST_API.namedCredential-meta.xml │ │ │ └── sfdx-project.json │ │ ├── bash │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── _client.sh │ │ │ ├── client.sh │ │ │ ├── client.sh.bash-completion │ │ │ └── docs │ │ │ │ ├── IndexesApi.md │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetadataExchange.md │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ └── PeriodsApi.md │ │ ├── c │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── Packing.cmake │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ ├── IndexesAPI.c │ │ │ │ ├── IndexesAPI.h │ │ │ │ ├── MetadataAPI.c │ │ │ │ ├── MetadataAPI.h │ │ │ │ ├── PeriodsAPI.c │ │ │ │ └── PeriodsAPI.h │ │ │ ├── docs │ │ │ │ ├── IndexesAPI.md │ │ │ │ ├── MetadataAPI.md │ │ │ │ ├── PeriodsAPI.md │ │ │ │ ├── indexes_index_definition_input_data.md │ │ │ │ ├── indexes_index_definition_snapshot_entry.md │ │ │ │ ├── indexes_index_identifier.md │ │ │ │ ├── indexes_index_multi_asset_weight.md │ │ │ │ ├── indexes_index_timeseries_item.md │ │ │ │ ├── indexes_index_value.md │ │ │ │ ├── indexes_index_value_component.md │ │ │ │ ├── metadata_exchange.md │ │ │ │ └── metadata_timeseries_period.md │ │ │ ├── external │ │ │ │ ├── cJSON.c │ │ │ │ ├── cJSON.h │ │ │ │ └── cJSON.licence │ │ │ ├── include │ │ │ │ ├── apiClient.h │ │ │ │ ├── binary.h │ │ │ │ ├── keyValuePair.h │ │ │ │ └── list.h │ │ │ ├── libcurl.licence │ │ │ ├── model │ │ │ │ ├── any_type.h │ │ │ │ ├── indexes_index_definition_input_data.c │ │ │ │ ├── indexes_index_definition_input_data.h │ │ │ │ ├── indexes_index_definition_snapshot_entry.c │ │ │ │ ├── indexes_index_definition_snapshot_entry.h │ │ │ │ ├── indexes_index_identifier.c │ │ │ │ ├── indexes_index_identifier.h │ │ │ │ ├── indexes_index_multi_asset_weight.c │ │ │ │ ├── indexes_index_multi_asset_weight.h │ │ │ │ ├── indexes_index_timeseries_item.c │ │ │ │ ├── indexes_index_timeseries_item.h │ │ │ │ ├── indexes_index_value.c │ │ │ │ ├── indexes_index_value.h │ │ │ │ ├── indexes_index_value_component.c │ │ │ │ ├── indexes_index_value_component.h │ │ │ │ ├── metadata_exchange.c │ │ │ │ ├── metadata_exchange.h │ │ │ │ ├── metadata_timeseries_period.c │ │ │ │ ├── metadata_timeseries_period.h │ │ │ │ ├── object.c │ │ │ │ └── object.h │ │ │ ├── src │ │ │ │ ├── apiClient.c │ │ │ │ ├── apiKey.c │ │ │ │ ├── binary.c │ │ │ │ └── list.c │ │ │ ├── uncrustify-rules.cfg │ │ │ └── unit-test │ │ │ │ ├── test_indexes_index_definition_input_data.c │ │ │ │ ├── test_indexes_index_definition_snapshot_entry.c │ │ │ │ ├── test_indexes_index_identifier.c │ │ │ │ ├── test_indexes_index_multi_asset_weight.c │ │ │ │ ├── test_indexes_index_timeseries_item.c │ │ │ │ ├── test_indexes_index_value.c │ │ │ │ ├── test_indexes_index_value_component.c │ │ │ │ ├── test_metadata_exchange.c │ │ │ │ └── test_metadata_timeseries_period.c │ │ ├── clojure │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── project.clj │ │ │ └── src │ │ │ │ └── coin_api_indexes_rest_api │ │ │ │ ├── api │ │ │ │ ├── indexes.clj │ │ │ │ ├── metadata.clj │ │ │ │ └── periods.clj │ │ │ │ ├── core.clj │ │ │ │ └── specs │ │ │ │ ├── indexes │ │ │ │ ├── index_definition_input_data.clj │ │ │ │ ├── index_definition_snapshot_entry.clj │ │ │ │ ├── index_identifier.clj │ │ │ │ ├── index_multi_asset_weight.clj │ │ │ │ ├── index_timeseries_item.clj │ │ │ │ ├── index_value.clj │ │ │ │ └── index_value_component.clj │ │ │ │ └── metadata │ │ │ │ ├── exchange.clj │ │ │ │ └── timeseries_period.clj │ │ ├── cpp-restsdk │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── README.md │ │ │ ├── git_push.sh │ │ │ ├── include │ │ │ │ └── CppRestOpenAPIClient │ │ │ │ │ ├── AnyType.h │ │ │ │ │ ├── ApiClient.h │ │ │ │ │ ├── ApiConfiguration.h │ │ │ │ │ ├── ApiException.h │ │ │ │ │ ├── HttpContent.h │ │ │ │ │ ├── IHttpBody.h │ │ │ │ │ ├── JsonBody.h │ │ │ │ │ ├── ModelBase.h │ │ │ │ │ ├── MultipartFormData.h │ │ │ │ │ ├── Object.h │ │ │ │ │ ├── api │ │ │ │ │ ├── IndexesApi.h │ │ │ │ │ ├── MetadataApi.h │ │ │ │ │ └── PeriodsApi.h │ │ │ │ │ └── model │ │ │ │ │ ├── Indexes_IndexDefinitionInputData.h │ │ │ │ │ ├── Indexes_IndexDefinitionSnapshotEntry.h │ │ │ │ │ ├── Indexes_IndexIdentifier.h │ │ │ │ │ ├── Indexes_IndexMultiAssetWeight.h │ │ │ │ │ ├── Indexes_IndexTimeseriesItem.h │ │ │ │ │ ├── Indexes_IndexValue.h │ │ │ │ │ ├── Indexes_IndexValueComponent.h │ │ │ │ │ ├── Metadata_Exchange.h │ │ │ │ │ └── Metadata_TimeseriesPeriod.h │ │ │ └── src │ │ │ │ ├── AnyType.cpp │ │ │ │ ├── ApiClient.cpp │ │ │ │ ├── ApiConfiguration.cpp │ │ │ │ ├── ApiException.cpp │ │ │ │ ├── HttpContent.cpp │ │ │ │ ├── JsonBody.cpp │ │ │ │ ├── ModelBase.cpp │ │ │ │ ├── MultipartFormData.cpp │ │ │ │ ├── Object.cpp │ │ │ │ ├── api │ │ │ │ ├── IndexesApi.cpp │ │ │ │ ├── MetadataApi.cpp │ │ │ │ └── PeriodsApi.cpp │ │ │ │ └── model │ │ │ │ ├── Indexes_IndexDefinitionInputData.cpp │ │ │ │ ├── Indexes_IndexDefinitionSnapshotEntry.cpp │ │ │ │ ├── Indexes_IndexIdentifier.cpp │ │ │ │ ├── Indexes_IndexMultiAssetWeight.cpp │ │ │ │ ├── Indexes_IndexTimeseriesItem.cpp │ │ │ │ ├── Indexes_IndexValue.cpp │ │ │ │ ├── Indexes_IndexValueComponent.cpp │ │ │ │ ├── Metadata_Exchange.cpp │ │ │ │ └── Metadata_TimeseriesPeriod.cpp │ │ ├── cpp-tizen │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── doc │ │ │ │ ├── Doxyfile │ │ │ │ ├── README.md │ │ │ │ └── generateDocumentation.sh │ │ │ └── src │ │ │ │ ├── Error.cpp │ │ │ │ ├── Error.h │ │ │ │ ├── Helpers.cpp │ │ │ │ ├── Helpers.h │ │ │ │ ├── IndexesIndexDefinitionInputData.cpp │ │ │ │ ├── IndexesIndexDefinitionInputData.h │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.cpp │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.h │ │ │ │ ├── IndexesIndexIdentifier.cpp │ │ │ │ ├── IndexesIndexIdentifier.h │ │ │ │ ├── IndexesIndexMultiAssetWeight.cpp │ │ │ │ ├── IndexesIndexMultiAssetWeight.h │ │ │ │ ├── IndexesIndexTimeseriesItem.cpp │ │ │ │ ├── IndexesIndexTimeseriesItem.h │ │ │ │ ├── IndexesIndexValue.cpp │ │ │ │ ├── IndexesIndexValue.h │ │ │ │ ├── IndexesIndexValueComponent.cpp │ │ │ │ ├── IndexesIndexValueComponent.h │ │ │ │ ├── IndexesManager.cpp │ │ │ │ ├── IndexesManager.h │ │ │ │ ├── MetadataExchange.cpp │ │ │ │ ├── MetadataExchange.h │ │ │ │ ├── MetadataManager.cpp │ │ │ │ ├── MetadataManager.h │ │ │ │ ├── MetadataTimeseriesPeriod.cpp │ │ │ │ ├── MetadataTimeseriesPeriod.h │ │ │ │ ├── NetClient.cpp │ │ │ │ ├── NetClient.h │ │ │ │ ├── Object.h │ │ │ │ ├── PeriodsManager.cpp │ │ │ │ ├── PeriodsManager.h │ │ │ │ └── RequestInfo.h │ │ ├── csharp │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── APIBricks.CoinAPI.IndexesAPI.REST.V1.sln │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── apis │ │ │ │ │ ├── IndexesApi.md │ │ │ │ │ ├── MetadataApi.md │ │ │ │ │ └── PeriodsApi.md │ │ │ │ ├── models │ │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ │ ├── MetadataExchange.md │ │ │ │ │ └── MetadataTimeseriesPeriod.md │ │ │ │ └── scripts │ │ │ │ │ ├── git_push.ps1 │ │ │ │ │ └── git_push.sh │ │ │ └── src │ │ │ │ ├── APIBricks.CoinAPI.IndexesAPI.REST.V1.Test │ │ │ │ ├── APIBricks.CoinAPI.IndexesAPI.REST.V1.Test.csproj │ │ │ │ ├── Api │ │ │ │ │ ├── ApiTestsBase.cs │ │ │ │ │ ├── DependencyInjectionTests.cs │ │ │ │ │ ├── IndexesApiTests.cs │ │ │ │ │ ├── MetadataApiTests.cs │ │ │ │ │ └── PeriodsApiTests.cs │ │ │ │ ├── Model │ │ │ │ │ ├── IndexesIndexDefinitionInputDataTests.cs │ │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntryTests.cs │ │ │ │ │ ├── IndexesIndexIdentifierTests.cs │ │ │ │ │ ├── IndexesIndexMultiAssetWeightTests.cs │ │ │ │ │ ├── IndexesIndexTimeseriesItemTests.cs │ │ │ │ │ ├── IndexesIndexValueComponentTests.cs │ │ │ │ │ ├── IndexesIndexValueTests.cs │ │ │ │ │ ├── MetadataExchangeTests.cs │ │ │ │ │ └── MetadataTimeseriesPeriodTests.cs │ │ │ │ └── README.md │ │ │ │ └── APIBricks.CoinAPI.IndexesAPI.REST.V1 │ │ │ │ ├── APIBricks.CoinAPI.IndexesAPI.REST.V1.csproj │ │ │ │ ├── Api │ │ │ │ ├── IApi.cs │ │ │ │ ├── IndexesApi.cs │ │ │ │ ├── MetadataApi.cs │ │ │ │ └── PeriodsApi.cs │ │ │ │ ├── Client │ │ │ │ ├── ApiException.cs │ │ │ │ ├── ApiFactory.cs │ │ │ │ ├── ApiKeyToken.cs │ │ │ │ ├── ApiResponseEventArgs.cs │ │ │ │ ├── ApiResponse`1.cs │ │ │ │ ├── BearerToken.cs │ │ │ │ ├── ClientUtils.cs │ │ │ │ ├── CookieContainer.cs │ │ │ │ ├── DateOnlyJsonConverter.cs │ │ │ │ ├── DateOnlyNullableJsonConverter.cs │ │ │ │ ├── DateTimeJsonConverter.cs │ │ │ │ ├── DateTimeNullableJsonConverter.cs │ │ │ │ ├── ExceptionEventArgs.cs │ │ │ │ ├── HostConfiguration.cs │ │ │ │ ├── JsonSerializerOptionsProvider.cs │ │ │ │ ├── Option.cs │ │ │ │ ├── RateLimitProvider`1.cs │ │ │ │ ├── TokenBase.cs │ │ │ │ ├── TokenContainer`1.cs │ │ │ │ └── TokenProvider`1.cs │ │ │ │ ├── Extensions │ │ │ │ ├── IHostBuilderExtensions.cs │ │ │ │ ├── IHttpClientBuilderExtensions.cs │ │ │ │ └── IServiceCollectionExtensions.cs │ │ │ │ ├── Model │ │ │ │ ├── IndexesIndexDefinitionInputData.cs │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.cs │ │ │ │ ├── IndexesIndexIdentifier.cs │ │ │ │ ├── IndexesIndexMultiAssetWeight.cs │ │ │ │ ├── IndexesIndexTimeseriesItem.cs │ │ │ │ ├── IndexesIndexValue.cs │ │ │ │ ├── IndexesIndexValueComponent.cs │ │ │ │ ├── MetadataExchange.cs │ │ │ │ └── MetadataTimeseriesPeriod.cs │ │ │ │ └── README.md │ │ ├── dart-dio │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── IndexesApi.md │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetadataExchange.md │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ └── PeriodsApi.md │ │ │ ├── lib │ │ │ │ ├── openapi.dart │ │ │ │ └── src │ │ │ │ │ ├── api.dart │ │ │ │ │ ├── api │ │ │ │ │ ├── indexes_api.dart │ │ │ │ │ ├── metadata_api.dart │ │ │ │ │ └── periods_api.dart │ │ │ │ │ ├── api_util.dart │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── auth.dart │ │ │ │ │ ├── basic_auth.dart │ │ │ │ │ ├── bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ │ ├── date_serializer.dart │ │ │ │ │ ├── model │ │ │ │ │ ├── date.dart │ │ │ │ │ ├── indexes_index_definition_input_data.dart │ │ │ │ │ ├── indexes_index_definition_snapshot_entry.dart │ │ │ │ │ ├── indexes_index_identifier.dart │ │ │ │ │ ├── indexes_index_multi_asset_weight.dart │ │ │ │ │ ├── indexes_index_timeseries_item.dart │ │ │ │ │ ├── indexes_index_value.dart │ │ │ │ │ ├── indexes_index_value_component.dart │ │ │ │ │ ├── metadata_exchange.dart │ │ │ │ │ └── metadata_timeseries_period.dart │ │ │ │ │ └── serializers.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── indexes_api_test.dart │ │ │ │ ├── indexes_index_definition_input_data_test.dart │ │ │ │ ├── indexes_index_definition_snapshot_entry_test.dart │ │ │ │ ├── indexes_index_identifier_test.dart │ │ │ │ ├── indexes_index_multi_asset_weight_test.dart │ │ │ │ ├── indexes_index_timeseries_item_test.dart │ │ │ │ ├── indexes_index_value_component_test.dart │ │ │ │ ├── indexes_index_value_test.dart │ │ │ │ ├── metadata_api_test.dart │ │ │ │ ├── metadata_exchange_test.dart │ │ │ │ ├── metadata_timeseries_period_test.dart │ │ │ │ └── periods_api_test.dart │ │ ├── dart │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── IndexesApi.md │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetadataExchange.md │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ └── PeriodsApi.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── api.dart │ │ │ │ ├── api │ │ │ │ │ ├── indexes_api.dart │ │ │ │ │ ├── metadata_api.dart │ │ │ │ │ └── periods_api.dart │ │ │ │ ├── api_client.dart │ │ │ │ ├── api_exception.dart │ │ │ │ ├── api_helper.dart │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── authentication.dart │ │ │ │ │ ├── http_basic_auth.dart │ │ │ │ │ ├── http_bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ └── model │ │ │ │ │ ├── indexes_index_definition_input_data.dart │ │ │ │ │ ├── indexes_index_definition_snapshot_entry.dart │ │ │ │ │ ├── indexes_index_identifier.dart │ │ │ │ │ ├── indexes_index_multi_asset_weight.dart │ │ │ │ │ ├── indexes_index_timeseries_item.dart │ │ │ │ │ ├── indexes_index_value.dart │ │ │ │ │ ├── indexes_index_value_component.dart │ │ │ │ │ ├── metadata_exchange.dart │ │ │ │ │ └── metadata_timeseries_period.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── indexes_api_test.dart │ │ │ │ ├── indexes_index_definition_input_data_test.dart │ │ │ │ ├── indexes_index_definition_snapshot_entry_test.dart │ │ │ │ ├── indexes_index_identifier_test.dart │ │ │ │ ├── indexes_index_multi_asset_weight_test.dart │ │ │ │ ├── indexes_index_timeseries_item_test.dart │ │ │ │ ├── indexes_index_value_component_test.dart │ │ │ │ ├── indexes_index_value_test.dart │ │ │ │ ├── metadata_api_test.dart │ │ │ │ ├── metadata_exchange_test.dart │ │ │ │ ├── metadata_timeseries_period_test.dart │ │ │ │ └── periods_api_test.dart │ │ ├── eiffel │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api_client.ecf │ │ │ ├── docs │ │ │ │ ├── INDEXES_API.md │ │ │ │ ├── INDEXES_INDEX_DEFINITION_INPUT_DATA.md │ │ │ │ ├── INDEXES_INDEX_DEFINITION_SNAPSHOT_ENTRY.md │ │ │ │ ├── INDEXES_INDEX_IDENTIFIER.md │ │ │ │ ├── INDEXES_INDEX_MULTI_ASSET_WEIGHT.md │ │ │ │ ├── INDEXES_INDEX_TIMESERIES_ITEM.md │ │ │ │ ├── INDEXES_INDEX_VALUE.md │ │ │ │ ├── INDEXES_INDEX_VALUE_COMPONENT.md │ │ │ │ ├── METADATA_API.md │ │ │ │ ├── METADATA_EXCHANGE.md │ │ │ │ ├── METADATA_TIMESERIES_PERIOD.md │ │ │ │ └── PERIODS_API.md │ │ │ ├── src │ │ │ │ ├── api │ │ │ │ │ ├── indexes_api.e │ │ │ │ │ ├── metadata_api.e │ │ │ │ │ └── periods_api.e │ │ │ │ ├── api_client.e │ │ │ │ ├── domain │ │ │ │ │ ├── indexes_index_definition_input_data.e │ │ │ │ │ ├── indexes_index_definition_snapshot_entry.e │ │ │ │ │ ├── indexes_index_identifier.e │ │ │ │ │ ├── indexes_index_multi_asset_weight.e │ │ │ │ │ ├── indexes_index_timeseries_item.e │ │ │ │ │ ├── indexes_index_value.e │ │ │ │ │ ├── indexes_index_value_component.e │ │ │ │ │ ├── metadata_exchange.e │ │ │ │ │ └── metadata_timeseries_period.e │ │ │ │ └── framework │ │ │ │ │ ├── api_client_request.e │ │ │ │ │ ├── api_client_response.e │ │ │ │ │ ├── api_error.e │ │ │ │ │ ├── api_i.e │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.e │ │ │ │ │ ├── authentication.e │ │ │ │ │ ├── http_basic_auth.e │ │ │ │ │ └── oauth.e │ │ │ │ │ ├── configuration.e │ │ │ │ │ └── serialization │ │ │ │ │ ├── api_deserializer.e │ │ │ │ │ ├── api_json_deserializer.e │ │ │ │ │ ├── api_json_serializer.e │ │ │ │ │ ├── api_serializer.e │ │ │ │ │ ├── json_basic_reflector_deserializer.e │ │ │ │ │ └── json_type_utilities_ext.e │ │ │ └── test │ │ │ │ ├── api_test.ecf │ │ │ │ ├── apis │ │ │ │ ├── indexes_api_test.e │ │ │ │ ├── metadata_api_test.e │ │ │ │ └── periods_api_test.e │ │ │ │ └── application.e │ │ ├── elixir │ │ │ ├── .formatter.exs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ ├── config.exs │ │ │ │ └── runtime.exs │ │ │ ├── lib │ │ │ │ └── coin_api_indexes_restapi │ │ │ │ │ ├── api │ │ │ │ │ ├── indexes.ex │ │ │ │ │ ├── metadata.ex │ │ │ │ │ └── periods.ex │ │ │ │ │ ├── connection.ex │ │ │ │ │ ├── deserializer.ex │ │ │ │ │ ├── model │ │ │ │ │ ├── indexes_index_definition_input_data.ex │ │ │ │ │ ├── indexes_index_definition_snapshot_entry.ex │ │ │ │ │ ├── indexes_index_identifier.ex │ │ │ │ │ ├── indexes_index_multi_asset_weight.ex │ │ │ │ │ ├── indexes_index_timeseries_item.ex │ │ │ │ │ ├── indexes_index_value.ex │ │ │ │ │ ├── indexes_index_value_component.ex │ │ │ │ │ ├── metadata_exchange.ex │ │ │ │ │ └── metadata_timeseries_period.ex │ │ │ │ │ └── request_builder.ex │ │ │ ├── mix.exs │ │ │ └── test │ │ │ │ └── test_helper.exs │ │ ├── elm │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ ├── Api.elm │ │ │ │ └── Api │ │ │ │ ├── Data.elm │ │ │ │ ├── Request │ │ │ │ ├── Indexes.elm │ │ │ │ ├── Metadata.elm │ │ │ │ └── Periods.elm │ │ │ │ └── Time.elm │ │ ├── erlang-client │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ └── src │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi_indexes_api.erl │ │ │ │ ├── openapi_indexes_index_definition_input_data.erl │ │ │ │ ├── openapi_indexes_index_definition_snapshot_entry.erl │ │ │ │ ├── openapi_indexes_index_identifier.erl │ │ │ │ ├── openapi_indexes_index_multi_asset_weight.erl │ │ │ │ ├── openapi_indexes_index_timeseries_item.erl │ │ │ │ ├── openapi_indexes_index_value.erl │ │ │ │ ├── openapi_indexes_index_value_component.erl │ │ │ │ ├── openapi_metadata_api.erl │ │ │ │ ├── openapi_metadata_exchange.erl │ │ │ │ ├── openapi_metadata_timeseries_period.erl │ │ │ │ ├── openapi_periods_api.erl │ │ │ │ └── openapi_utils.erl │ │ ├── erlang-proper │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ ├── src │ │ │ │ ├── model │ │ │ │ │ ├── openapi_indexes_index_definition_input_data.erl │ │ │ │ │ ├── openapi_indexes_index_definition_snapshot_entry.erl │ │ │ │ │ ├── openapi_indexes_index_identifier.erl │ │ │ │ │ ├── openapi_indexes_index_multi_asset_weight.erl │ │ │ │ │ ├── openapi_indexes_index_timeseries_item.erl │ │ │ │ │ ├── openapi_indexes_index_value.erl │ │ │ │ │ ├── openapi_indexes_index_value_component.erl │ │ │ │ │ ├── openapi_metadata_exchange.erl │ │ │ │ │ └── openapi_metadata_timeseries_period.erl │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi.hrl │ │ │ │ ├── openapi_api.erl │ │ │ │ ├── openapi_gen.erl │ │ │ │ ├── openapi_statem.erl │ │ │ │ ├── openapi_statem.hrl │ │ │ │ └── openapi_utils.erl │ │ │ └── test │ │ │ │ └── prop_openapi.erl │ │ ├── go │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── api_indexes.go │ │ │ ├── api_metadata.go │ │ │ ├── api_periods.go │ │ │ ├── client.go │ │ │ ├── configuration.go │ │ │ ├── docs │ │ │ │ ├── IndexesAPI.md │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ ├── MetadataAPI.md │ │ │ │ ├── MetadataExchange.md │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ └── PeriodsAPI.md │ │ │ ├── git_push.sh │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── model_indexes_index_definition_input_data.go │ │ │ ├── model_indexes_index_definition_snapshot_entry.go │ │ │ ├── model_indexes_index_identifier.go │ │ │ ├── model_indexes_index_multi_asset_weight.go │ │ │ ├── model_indexes_index_timeseries_item.go │ │ │ ├── model_indexes_index_value.go │ │ │ ├── model_indexes_index_value_component.go │ │ │ ├── model_metadata_exchange.go │ │ │ ├── model_metadata_timeseries_period.go │ │ │ ├── response.go │ │ │ ├── test │ │ │ │ ├── api_indexes_test.go │ │ │ │ ├── api_metadata_test.go │ │ │ │ └── api_periods_test.go │ │ │ └── utils.go │ │ ├── groovy │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ ├── api │ │ │ │ ├── ApiUtils.groovy │ │ │ │ ├── IndexesApi.groovy │ │ │ │ ├── MetadataApi.groovy │ │ │ │ └── PeriodsApi.groovy │ │ │ │ └── model │ │ │ │ ├── IndexesIndexDefinitionInputData.groovy │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.groovy │ │ │ │ ├── IndexesIndexIdentifier.groovy │ │ │ │ ├── IndexesIndexMultiAssetWeight.groovy │ │ │ │ ├── IndexesIndexTimeseriesItem.groovy │ │ │ │ ├── IndexesIndexValue.groovy │ │ │ │ ├── IndexesIndexValueComponent.groovy │ │ │ │ ├── MetadataExchange.groovy │ │ │ │ └── MetadataTimeseriesPeriod.groovy │ │ ├── haskell-http-client │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── Setup.hs │ │ │ ├── coinapi-indexes-rest.cabal │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── CoinAPIIndexesREST.hs │ │ │ │ └── CoinAPIIndexesREST │ │ │ │ │ ├── API.hs │ │ │ │ │ ├── API │ │ │ │ │ ├── Indexes.hs │ │ │ │ │ ├── Metadata.hs │ │ │ │ │ └── Periods.hs │ │ │ │ │ ├── Client.hs │ │ │ │ │ ├── Core.hs │ │ │ │ │ ├── Logging.hs │ │ │ │ │ ├── LoggingKatip.hs │ │ │ │ │ ├── LoggingMonadLogger.hs │ │ │ │ │ ├── MimeTypes.hs │ │ │ │ │ ├── Model.hs │ │ │ │ │ └── ModelLens.hs │ │ │ ├── openapi.yaml │ │ │ ├── stack.yaml │ │ │ └── tests │ │ │ │ ├── ApproxEq.hs │ │ │ │ ├── Instances.hs │ │ │ │ ├── PropMime.hs │ │ │ │ └── Test.hs │ │ ├── java │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── maven.yml │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── build.gradle │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── IndexesApi.md │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetadataExchange.md │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ └── PeriodsApi.md │ │ │ ├── git_push.sh │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── ApiCallback.java │ │ │ │ │ ├── ApiClient.java │ │ │ │ │ ├── ApiException.java │ │ │ │ │ ├── ApiResponse.java │ │ │ │ │ ├── Configuration.java │ │ │ │ │ ├── GzipRequestInterceptor.java │ │ │ │ │ ├── JSON.java │ │ │ │ │ ├── Pair.java │ │ │ │ │ ├── ProgressRequestBody.java │ │ │ │ │ ├── ProgressResponseBody.java │ │ │ │ │ ├── ServerConfiguration.java │ │ │ │ │ ├── ServerVariable.java │ │ │ │ │ ├── StringUtil.java │ │ │ │ │ ├── api │ │ │ │ │ ├── IndexesApi.java │ │ │ │ │ ├── MetadataApi.java │ │ │ │ │ └── PeriodsApi.java │ │ │ │ │ ├── auth │ │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ │ ├── Authentication.java │ │ │ │ │ ├── HttpBasicAuth.java │ │ │ │ │ └── HttpBearerAuth.java │ │ │ │ │ └── model │ │ │ │ │ ├── AbstractOpenApiSchema.java │ │ │ │ │ ├── IndexesIndexDefinitionInputData.java │ │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.java │ │ │ │ │ ├── IndexesIndexIdentifier.java │ │ │ │ │ ├── IndexesIndexMultiAssetWeight.java │ │ │ │ │ ├── IndexesIndexTimeseriesItem.java │ │ │ │ │ ├── IndexesIndexValue.java │ │ │ │ │ ├── IndexesIndexValueComponent.java │ │ │ │ │ ├── MetadataExchange.java │ │ │ │ │ └── MetadataTimeseriesPeriod.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── IndexesApiTest.java │ │ │ │ ├── MetadataApiTest.java │ │ │ │ └── PeriodsApiTest.java │ │ │ │ └── model │ │ │ │ ├── IndexesIndexDefinitionInputDataTest.java │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntryTest.java │ │ │ │ ├── IndexesIndexIdentifierTest.java │ │ │ │ ├── IndexesIndexMultiAssetWeightTest.java │ │ │ │ ├── IndexesIndexTimeseriesItemTest.java │ │ │ │ ├── IndexesIndexValueComponentTest.java │ │ │ │ ├── IndexesIndexValueTest.java │ │ │ │ ├── MetadataExchangeTest.java │ │ │ │ └── MetadataTimeseriesPeriodTest.java │ │ ├── javascript-closure-angular │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ └── API │ │ │ │ └── Client │ │ │ │ ├── IndexesApi.js │ │ │ │ ├── IndexesIndexDefinitionInputData.js │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.js │ │ │ │ ├── IndexesIndexIdentifier.js │ │ │ │ ├── IndexesIndexMultiAssetWeight.js │ │ │ │ ├── IndexesIndexTimeseriesItem.js │ │ │ │ ├── IndexesIndexValue.js │ │ │ │ ├── IndexesIndexValueComponent.js │ │ │ │ ├── MetadataApi.js │ │ │ │ ├── MetadataExchange.js │ │ │ │ ├── MetadataTimeseriesPeriod.js │ │ │ │ └── PeriodsApi.js │ │ ├── javascript-flowtyped │ │ │ ├── .babelrc │ │ │ ├── .flowconfig │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── api.js │ │ │ │ ├── configuration.js │ │ │ │ └── index.js │ │ ├── javascript │ │ │ ├── .babelrc │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── IndexesApi.md │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetadataExchange.md │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ └── PeriodsApi.md │ │ │ ├── git_push.sh │ │ │ ├── mocha.opts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── ApiClient.js │ │ │ │ ├── api │ │ │ │ │ ├── IndexesApi.js │ │ │ │ │ ├── MetadataApi.js │ │ │ │ │ └── PeriodsApi.js │ │ │ │ ├── index.js │ │ │ │ └── model │ │ │ │ │ ├── IndexesIndexDefinitionInputData.js │ │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.js │ │ │ │ │ ├── IndexesIndexIdentifier.js │ │ │ │ │ ├── IndexesIndexMultiAssetWeight.js │ │ │ │ │ ├── IndexesIndexTimeseriesItem.js │ │ │ │ │ ├── IndexesIndexValue.js │ │ │ │ │ ├── IndexesIndexValueComponent.js │ │ │ │ │ ├── MetadataExchange.js │ │ │ │ │ └── MetadataTimeseriesPeriod.js │ │ │ └── test │ │ │ │ ├── api │ │ │ │ ├── IndexesApi.spec.js │ │ │ │ ├── MetadataApi.spec.js │ │ │ │ └── PeriodsApi.spec.js │ │ │ │ └── model │ │ │ │ ├── IndexesIndexDefinitionInputData.spec.js │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.spec.js │ │ │ │ ├── IndexesIndexIdentifier.spec.js │ │ │ │ ├── IndexesIndexMultiAssetWeight.spec.js │ │ │ │ ├── IndexesIndexTimeseriesItem.spec.js │ │ │ │ ├── IndexesIndexValue.spec.js │ │ │ │ ├── IndexesIndexValueComponent.spec.js │ │ │ │ ├── MetadataExchange.spec.js │ │ │ │ └── MetadataTimeseriesPeriod.spec.js │ │ ├── kotlin │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── IndexesApi.md │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetadataExchange.md │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ └── PeriodsApi.md │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── apis │ │ │ │ │ ├── IndexesApi.kt │ │ │ │ │ ├── MetadataApi.kt │ │ │ │ │ └── PeriodsApi.kt │ │ │ │ │ ├── infrastructure │ │ │ │ │ ├── ApiAbstractions.kt │ │ │ │ │ ├── ApiClient.kt │ │ │ │ │ ├── ApiResponse.kt │ │ │ │ │ ├── BigDecimalAdapter.kt │ │ │ │ │ ├── BigIntegerAdapter.kt │ │ │ │ │ ├── ByteArrayAdapter.kt │ │ │ │ │ ├── Errors.kt │ │ │ │ │ ├── LocalDateAdapter.kt │ │ │ │ │ ├── LocalDateTimeAdapter.kt │ │ │ │ │ ├── OffsetDateTimeAdapter.kt │ │ │ │ │ ├── PartConfig.kt │ │ │ │ │ ├── RequestConfig.kt │ │ │ │ │ ├── RequestMethod.kt │ │ │ │ │ ├── ResponseExtensions.kt │ │ │ │ │ ├── Serializer.kt │ │ │ │ │ ├── URIAdapter.kt │ │ │ │ │ └── UUIDAdapter.kt │ │ │ │ │ └── models │ │ │ │ │ ├── IndexesIndexDefinitionInputData.kt │ │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.kt │ │ │ │ │ ├── IndexesIndexIdentifier.kt │ │ │ │ │ ├── IndexesIndexMultiAssetWeight.kt │ │ │ │ │ ├── IndexesIndexTimeseriesItem.kt │ │ │ │ │ ├── IndexesIndexValue.kt │ │ │ │ │ ├── IndexesIndexValueComponent.kt │ │ │ │ │ ├── MetadataExchange.kt │ │ │ │ │ └── MetadataTimeseriesPeriod.kt │ │ │ │ └── test │ │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── apis │ │ │ │ ├── IndexesApiTest.kt │ │ │ │ ├── MetadataApiTest.kt │ │ │ │ └── PeriodsApiTest.kt │ │ │ │ └── models │ │ │ │ ├── IndexesIndexDefinitionInputDataTest.kt │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntryTest.kt │ │ │ │ ├── IndexesIndexIdentifierTest.kt │ │ │ │ ├── IndexesIndexMultiAssetWeightTest.kt │ │ │ │ ├── IndexesIndexTimeseriesItemTest.kt │ │ │ │ ├── IndexesIndexValueComponentTest.kt │ │ │ │ ├── IndexesIndexValueTest.kt │ │ │ │ ├── MetadataExchangeTest.kt │ │ │ │ └── MetadataTimeseriesPeriodTest.kt │ │ ├── lua │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── openapiclient-1.0.0-1.rockspec │ │ │ ├── openapiclient │ │ │ │ ├── api │ │ │ │ │ ├── indexes_api.lua │ │ │ │ │ ├── metadata_api.lua │ │ │ │ │ └── periods_api.lua │ │ │ │ └── model │ │ │ │ │ ├── indexes_index_definition_input_data.lua │ │ │ │ │ ├── indexes_index_definition_snapshot_entry.lua │ │ │ │ │ ├── indexes_index_identifier.lua │ │ │ │ │ ├── indexes_index_multi_asset_weight.lua │ │ │ │ │ ├── indexes_index_timeseries_item.lua │ │ │ │ │ ├── indexes_index_value.lua │ │ │ │ │ ├── indexes_index_value_component.lua │ │ │ │ │ ├── metadata_exchange.lua │ │ │ │ │ └── metadata_timeseries_period.lua │ │ │ └── spec │ │ │ │ ├── indexes_api_spec.lua │ │ │ │ ├── indexes_index_definition_input_data_spec.lua │ │ │ │ ├── indexes_index_definition_snapshot_entry_spec.lua │ │ │ │ ├── indexes_index_identifier_spec.lua │ │ │ │ ├── indexes_index_multi_asset_weight_spec.lua │ │ │ │ ├── indexes_index_timeseries_item_spec.lua │ │ │ │ ├── indexes_index_value_component_spec.lua │ │ │ │ ├── indexes_index_value_spec.lua │ │ │ │ ├── metadata_api_spec.lua │ │ │ │ ├── metadata_exchange_spec.lua │ │ │ │ ├── metadata_timeseries_period_spec.lua │ │ │ │ └── periods_api_spec.lua │ │ ├── perl │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── autodoc │ │ │ ├── cpanfile │ │ │ ├── docs │ │ │ │ ├── IndexesApi.md │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetadataExchange.md │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ └── PeriodsApi.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ └── WWW │ │ │ │ │ └── OpenAPIClient │ │ │ │ │ ├── ApiClient.pm │ │ │ │ │ ├── ApiFactory.pm │ │ │ │ │ ├── Configuration.pm │ │ │ │ │ ├── IndexesApi.pm │ │ │ │ │ ├── MetadataApi.pm │ │ │ │ │ ├── Object │ │ │ │ │ ├── IndexesIndexDefinitionInputData.pm │ │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.pm │ │ │ │ │ ├── IndexesIndexIdentifier.pm │ │ │ │ │ ├── IndexesIndexMultiAssetWeight.pm │ │ │ │ │ ├── IndexesIndexTimeseriesItem.pm │ │ │ │ │ ├── IndexesIndexValue.pm │ │ │ │ │ ├── IndexesIndexValueComponent.pm │ │ │ │ │ ├── MetadataExchange.pm │ │ │ │ │ └── MetadataTimeseriesPeriod.pm │ │ │ │ │ ├── PeriodsApi.pm │ │ │ │ │ ├── Role.pm │ │ │ │ │ └── Role │ │ │ │ │ └── AutoDoc.pm │ │ │ └── t │ │ │ │ ├── IndexesApiTest.t │ │ │ │ ├── IndexesIndexDefinitionInputDataTest.t │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntryTest.t │ │ │ │ ├── IndexesIndexIdentifierTest.t │ │ │ │ ├── IndexesIndexMultiAssetWeightTest.t │ │ │ │ ├── IndexesIndexTimeseriesItemTest.t │ │ │ │ ├── IndexesIndexValueComponentTest.t │ │ │ │ ├── IndexesIndexValueTest.t │ │ │ │ ├── MetadataApiTest.t │ │ │ │ ├── MetadataExchangeTest.t │ │ │ │ ├── MetadataTimeseriesPeriodTest.t │ │ │ │ └── PeriodsApiTest.t │ │ ├── php │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ │ ├── Api │ │ │ │ │ ├── IndexesApi.md │ │ │ │ │ ├── MetadataApi.md │ │ │ │ │ └── PeriodsApi.md │ │ │ │ └── Model │ │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ │ ├── MetadataExchange.md │ │ │ │ │ └── MetadataTimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── Api │ │ │ │ │ ├── IndexesApi.php │ │ │ │ │ ├── MetadataApi.php │ │ │ │ │ └── PeriodsApi.php │ │ │ │ ├── ApiException.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── FormDataProcessor.php │ │ │ │ ├── HeaderSelector.php │ │ │ │ ├── Model │ │ │ │ │ ├── IndexesIndexDefinitionInputData.php │ │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.php │ │ │ │ │ ├── IndexesIndexIdentifier.php │ │ │ │ │ ├── IndexesIndexMultiAssetWeight.php │ │ │ │ │ ├── IndexesIndexTimeseriesItem.php │ │ │ │ │ ├── IndexesIndexValue.php │ │ │ │ │ ├── IndexesIndexValueComponent.php │ │ │ │ │ ├── MetadataExchange.php │ │ │ │ │ ├── MetadataTimeseriesPeriod.php │ │ │ │ │ └── ModelInterface.php │ │ │ │ └── ObjectSerializer.php │ │ │ ├── phpunit.xml.dist │ │ │ └── test │ │ │ │ ├── Api │ │ │ │ ├── IndexesApiTest.php │ │ │ │ ├── MetadataApiTest.php │ │ │ │ └── PeriodsApiTest.php │ │ │ │ └── Model │ │ │ │ ├── IndexesIndexDefinitionInputDataTest.php │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntryTest.php │ │ │ │ ├── IndexesIndexIdentifierTest.php │ │ │ │ ├── IndexesIndexMultiAssetWeightTest.php │ │ │ │ ├── IndexesIndexTimeseriesItemTest.php │ │ │ │ ├── IndexesIndexValueComponentTest.php │ │ │ │ ├── IndexesIndexValueTest.php │ │ │ │ ├── MetadataExchangeTest.php │ │ │ │ └── MetadataTimeseriesPeriodTest.php │ │ ├── powershell │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Build.ps1 │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── IndexesApi.md │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetadataExchange.md │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ └── PeriodsApi.md │ │ │ ├── src │ │ │ │ └── PSOpenAPITools │ │ │ │ │ ├── Api │ │ │ │ │ ├── IndexesApi.ps1 │ │ │ │ │ ├── MetadataApi.ps1 │ │ │ │ │ └── PeriodsApi.ps1 │ │ │ │ │ ├── Client │ │ │ │ │ └── Configuration.ps1 │ │ │ │ │ ├── Model │ │ │ │ │ ├── IndexesIndexDefinitionInputData.ps1 │ │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.ps1 │ │ │ │ │ ├── IndexesIndexIdentifier.ps1 │ │ │ │ │ ├── IndexesIndexMultiAssetWeight.ps1 │ │ │ │ │ ├── IndexesIndexTimeseriesItem.ps1 │ │ │ │ │ ├── IndexesIndexValue.ps1 │ │ │ │ │ ├── IndexesIndexValueComponent.ps1 │ │ │ │ │ ├── MetadataExchange.ps1 │ │ │ │ │ └── MetadataTimeseriesPeriod.ps1 │ │ │ │ │ ├── PSOpenAPITools.psm1 │ │ │ │ │ ├── Private │ │ │ │ │ ├── ApiClient.ps1 │ │ │ │ │ ├── Get-CommonParameters.ps1 │ │ │ │ │ ├── HttpSignatureAuth.ps1 │ │ │ │ │ ├── Out-DebugParameter.ps1 │ │ │ │ │ └── RSAEncryptionProvider.cs │ │ │ │ │ └── en-US │ │ │ │ │ └── about_PSOpenAPITools.help.txt │ │ │ └── tests │ │ │ │ ├── Api │ │ │ │ ├── IndexesApi.Tests.ps1 │ │ │ │ ├── MetadataApi.Tests.ps1 │ │ │ │ └── PeriodsApi.Tests.ps1 │ │ │ │ └── Model │ │ │ │ ├── IndexesIndexDefinitionInputData.Tests.ps1 │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.Tests.ps1 │ │ │ │ ├── IndexesIndexIdentifier.Tests.ps1 │ │ │ │ ├── IndexesIndexMultiAssetWeight.Tests.ps1 │ │ │ │ ├── IndexesIndexTimeseriesItem.Tests.ps1 │ │ │ │ ├── IndexesIndexValue.Tests.ps1 │ │ │ │ ├── IndexesIndexValueComponent.Tests.ps1 │ │ │ │ ├── MetadataExchange.Tests.ps1 │ │ │ │ └── MetadataTimeseriesPeriod.Tests.ps1 │ │ ├── python │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api_bricks_coinapi_indexes_api_rest │ │ │ │ ├── __init__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── indexes_api.py │ │ │ │ │ ├── metadata_api.py │ │ │ │ │ └── periods_api.py │ │ │ │ ├── api_client.py │ │ │ │ ├── api_response.py │ │ │ │ ├── configuration.py │ │ │ │ ├── docs │ │ │ │ │ ├── IndexesApi.md │ │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ │ ├── MetadataApi.md │ │ │ │ │ ├── MetadataExchange.md │ │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ │ └── PeriodsApi.md │ │ │ │ ├── exceptions.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── indexes_index_definition_input_data.py │ │ │ │ │ ├── indexes_index_definition_snapshot_entry.py │ │ │ │ │ ├── indexes_index_identifier.py │ │ │ │ │ ├── indexes_index_multi_asset_weight.py │ │ │ │ │ ├── indexes_index_timeseries_item.py │ │ │ │ │ ├── indexes_index_value.py │ │ │ │ │ ├── indexes_index_value_component.py │ │ │ │ │ ├── metadata_exchange.py │ │ │ │ │ └── metadata_timeseries_period.py │ │ │ │ ├── rest.py │ │ │ │ └── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_indexes_api.py │ │ │ │ │ ├── test_indexes_index_definition_input_data.py │ │ │ │ │ ├── test_indexes_index_definition_snapshot_entry.py │ │ │ │ │ ├── test_indexes_index_identifier.py │ │ │ │ │ ├── test_indexes_index_multi_asset_weight.py │ │ │ │ │ ├── test_indexes_index_timeseries_item.py │ │ │ │ │ ├── test_indexes_index_value.py │ │ │ │ │ ├── test_indexes_index_value_component.py │ │ │ │ │ ├── test_metadata_api.py │ │ │ │ │ ├── test_metadata_exchange.py │ │ │ │ │ ├── test_metadata_timeseries_period.py │ │ │ │ │ └── test_periods_api.py │ │ │ └── api_bricks_coinapi_indexes_api_rest_README.md │ │ ├── r │ │ │ ├── .Rbuildignore │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── r-client.yaml │ │ │ ├── .gitignore │ │ │ ├── .lintr │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── api_client.R │ │ │ │ ├── api_response.R │ │ │ │ ├── indexes_api.R │ │ │ │ ├── indexes_index_definition_input_data.R │ │ │ │ ├── indexes_index_definition_snapshot_entry.R │ │ │ │ ├── indexes_index_identifier.R │ │ │ │ ├── indexes_index_multi_asset_weight.R │ │ │ │ ├── indexes_index_timeseries_item.R │ │ │ │ ├── indexes_index_value.R │ │ │ │ ├── indexes_index_value_component.R │ │ │ │ ├── metadata_api.R │ │ │ │ ├── metadata_exchange.R │ │ │ │ ├── metadata_timeseries_period.R │ │ │ │ └── periods_api.R │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── IndexesApi.md │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetadataExchange.md │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ └── PeriodsApi.md │ │ │ ├── git_push.sh │ │ │ └── tests │ │ │ │ ├── testthat.R │ │ │ │ └── testthat │ │ │ │ ├── test_indexes_api.R │ │ │ │ ├── test_indexes_index_definition_input_data.R │ │ │ │ ├── test_indexes_index_definition_snapshot_entry.R │ │ │ │ ├── test_indexes_index_identifier.R │ │ │ │ ├── test_indexes_index_multi_asset_weight.R │ │ │ │ ├── test_indexes_index_timeseries_item.R │ │ │ │ ├── test_indexes_index_value.R │ │ │ │ ├── test_indexes_index_value_component.R │ │ │ │ ├── test_metadata_api.R │ │ │ │ ├── test_metadata_exchange.R │ │ │ │ ├── test_metadata_timeseries_period.R │ │ │ │ └── test_periods_api.R │ │ ├── ruby │ │ │ ├── .gitignore │ │ │ ├── .gitlab-ci.yml │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .rspec │ │ │ ├── .rubocop.yml │ │ │ ├── .travis.yml │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── docs │ │ │ │ ├── IndexesApi.md │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetadataExchange.md │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ └── PeriodsApi.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── openapi_client.rb │ │ │ │ └── openapi_client │ │ │ │ │ ├── api │ │ │ │ │ ├── indexes_api.rb │ │ │ │ │ ├── metadata_api.rb │ │ │ │ │ └── periods_api.rb │ │ │ │ │ ├── api_client.rb │ │ │ │ │ ├── api_error.rb │ │ │ │ │ ├── configuration.rb │ │ │ │ │ ├── models │ │ │ │ │ ├── indexes_index_definition_input_data.rb │ │ │ │ │ ├── indexes_index_definition_snapshot_entry.rb │ │ │ │ │ ├── indexes_index_identifier.rb │ │ │ │ │ ├── indexes_index_multi_asset_weight.rb │ │ │ │ │ ├── indexes_index_timeseries_item.rb │ │ │ │ │ ├── indexes_index_value.rb │ │ │ │ │ ├── indexes_index_value_component.rb │ │ │ │ │ ├── metadata_exchange.rb │ │ │ │ │ └── metadata_timeseries_period.rb │ │ │ │ │ └── version.rb │ │ │ ├── openapi_client.gemspec │ │ │ └── spec │ │ │ │ ├── api │ │ │ │ ├── indexes_api_spec.rb │ │ │ │ ├── metadata_api_spec.rb │ │ │ │ └── periods_api_spec.rb │ │ │ │ ├── models │ │ │ │ ├── indexes_index_definition_input_data_spec.rb │ │ │ │ ├── indexes_index_definition_snapshot_entry_spec.rb │ │ │ │ ├── indexes_index_identifier_spec.rb │ │ │ │ ├── indexes_index_multi_asset_weight_spec.rb │ │ │ │ ├── indexes_index_timeseries_item_spec.rb │ │ │ │ ├── indexes_index_value_component_spec.rb │ │ │ │ ├── indexes_index_value_spec.rb │ │ │ │ ├── metadata_exchange_spec.rb │ │ │ │ └── metadata_timeseries_period_spec.rb │ │ │ │ └── spec_helper.rb │ │ ├── scala-akka │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── IndexesApi.md │ │ │ │ ├── IndexesIndexDefinitionInputData.md │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.md │ │ │ │ ├── IndexesIndexIdentifier.md │ │ │ │ ├── IndexesIndexMultiAssetWeight.md │ │ │ │ ├── IndexesIndexTimeseriesItem.md │ │ │ │ ├── IndexesIndexValue.md │ │ │ │ ├── IndexesIndexValueComponent.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetadataExchange.md │ │ │ │ ├── MetadataTimeseriesPeriod.md │ │ │ │ └── PeriodsApi.md │ │ │ ├── pom.xml │ │ │ ├── project │ │ │ │ └── build.properties │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── reference.conf │ │ │ │ └── scala │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── EnumsSerializers.scala │ │ │ │ ├── IndexesApi.scala │ │ │ │ ├── MetadataApi.scala │ │ │ │ └── PeriodsApi.scala │ │ │ │ ├── core │ │ │ │ ├── ApiInvoker.scala │ │ │ │ ├── ApiRequest.scala │ │ │ │ ├── ApiSettings.scala │ │ │ │ ├── Serializers.scala │ │ │ │ └── requests.scala │ │ │ │ └── model │ │ │ │ ├── Exchange.scala │ │ │ │ ├── IndexDefinitionInputData.scala │ │ │ │ ├── IndexDefinitionSnapshotEntry.scala │ │ │ │ ├── IndexIdentifier.scala │ │ │ │ ├── IndexMultiAssetWeight.scala │ │ │ │ ├── IndexTimeseriesItem.scala │ │ │ │ ├── IndexValue.scala │ │ │ │ ├── IndexValueComponent.scala │ │ │ │ └── TimeseriesPeriod.scala │ │ ├── typescript-angular │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── api.base.service.ts │ │ │ ├── api.module.ts │ │ │ ├── api │ │ │ │ ├── api.ts │ │ │ │ ├── indexes.service.ts │ │ │ │ ├── metadata.service.ts │ │ │ │ └── periods.service.ts │ │ │ ├── configuration.ts │ │ │ ├── encoder.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── indexesIndexDefinitionInputData.ts │ │ │ │ ├── indexesIndexDefinitionSnapshotEntry.ts │ │ │ │ ├── indexesIndexIdentifier.ts │ │ │ │ ├── indexesIndexMultiAssetWeight.ts │ │ │ │ ├── indexesIndexTimeseriesItem.ts │ │ │ │ ├── indexesIndexValue.ts │ │ │ │ ├── indexesIndexValueComponent.ts │ │ │ │ ├── metadataExchange.ts │ │ │ │ ├── metadataTimeseriesPeriod.ts │ │ │ │ └── models.ts │ │ │ ├── param.ts │ │ │ ├── provide-api.ts │ │ │ └── variables.ts │ │ ├── typescript-jquery │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api │ │ │ │ ├── IndexesApi.ts │ │ │ │ ├── MetadataApi.ts │ │ │ │ ├── PeriodsApi.ts │ │ │ │ └── api.ts │ │ │ ├── configuration.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── IndexesIndexDefinitionInputData.ts │ │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.ts │ │ │ │ ├── IndexesIndexIdentifier.ts │ │ │ │ ├── IndexesIndexMultiAssetWeight.ts │ │ │ │ ├── IndexesIndexTimeseriesItem.ts │ │ │ │ ├── IndexesIndexValue.ts │ │ │ │ ├── IndexesIndexValueComponent.ts │ │ │ │ ├── MetadataExchange.ts │ │ │ │ ├── MetadataTimeseriesPeriod.ts │ │ │ │ └── models.ts │ │ │ └── variables.ts │ │ ├── typescript-node │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── api │ │ │ │ ├── apis.ts │ │ │ │ ├── indexesApi.ts │ │ │ │ ├── metadataApi.ts │ │ │ │ └── periodsApi.ts │ │ │ ├── git_push.sh │ │ │ └── model │ │ │ │ ├── indexesIndexDefinitionInputData.ts │ │ │ │ ├── indexesIndexDefinitionSnapshotEntry.ts │ │ │ │ ├── indexesIndexIdentifier.ts │ │ │ │ ├── indexesIndexMultiAssetWeight.ts │ │ │ │ ├── indexesIndexTimeseriesItem.ts │ │ │ │ ├── indexesIndexValue.ts │ │ │ │ ├── indexesIndexValueComponent.ts │ │ │ │ ├── metadataExchange.ts │ │ │ │ ├── metadataTimeseriesPeriod.ts │ │ │ │ └── models.ts │ │ └── typescript-rxjs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ │ ├── apis │ │ │ ├── IndexesApi.ts │ │ │ ├── MetadataApi.ts │ │ │ ├── PeriodsApi.ts │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ ├── IndexesIndexDefinitionInputData.ts │ │ │ ├── IndexesIndexDefinitionSnapshotEntry.ts │ │ │ ├── IndexesIndexIdentifier.ts │ │ │ ├── IndexesIndexMultiAssetWeight.ts │ │ │ ├── IndexesIndexTimeseriesItem.ts │ │ │ ├── IndexesIndexValue.ts │ │ │ ├── IndexesIndexValueComponent.ts │ │ │ ├── MetadataExchange.ts │ │ │ ├── MetadataTimeseriesPeriod.ts │ │ │ └── index.ts │ │ │ ├── runtime.ts │ │ │ ├── servers.ts │ │ │ └── tsconfig.json │ └── spec │ │ ├── openapi.json │ │ └── openapi.yaml ├── market-data-api-fix │ ├── sdk │ │ └── csharp-fix-v2 │ │ │ ├── .gitignore │ │ │ ├── App.config │ │ │ ├── COINAPI.FIX.V2.csproj │ │ │ ├── COINAPI.FIX.V2.sln │ │ │ ├── MarketDataApp.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── config_nossl.cfg │ │ │ └── config_ssl.cfg │ └── spec │ │ └── FIX44.xml ├── market-data-api-rest │ ├── sdk-config │ │ ├── ada.yaml │ │ ├── android.yaml │ │ ├── apex.yaml │ │ ├── bash.yaml │ │ ├── c.yaml │ │ ├── clojure.yaml │ │ ├── cpp-restsdk.yaml │ │ ├── cpp-tizen.yaml │ │ ├── csharp.yaml │ │ ├── dart-dio.yaml │ │ ├── dart.yaml │ │ ├── eiffel.yaml │ │ ├── elixir.yaml │ │ ├── elm.yaml │ │ ├── erlang-client.yaml │ │ ├── erlang-proper.yaml │ │ ├── go.yaml │ │ ├── groovy.yaml │ │ ├── haskell-http-client.yaml │ │ ├── java.yaml │ │ ├── javascript-closure-angular.yaml │ │ ├── javascript-flowtyped.yaml │ │ ├── javascript.yaml │ │ ├── kotlin.yaml │ │ ├── lua.yaml │ │ ├── perl.yaml │ │ ├── php.yaml │ │ ├── powershell.yaml │ │ ├── python.yaml │ │ ├── r.yaml │ │ ├── ruby.yaml │ │ ├── scala-akka.yaml │ │ ├── shared │ │ │ └── common.yaml │ │ ├── typescript-angular.yaml │ │ ├── typescript-jquery.yaml │ │ ├── typescript-node.yaml │ │ └── typescript-rxjs.yaml │ ├── sdk-handcrafted │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cpp-rest │ │ │ ├── README.MD │ │ │ ├── coin_api.h │ │ │ ├── coin_api_test.cpp │ │ │ └── makefile │ │ ├── csharp-rest │ │ │ ├── .gitignore │ │ │ ├── CoinAPI.REST.V1.Example │ │ │ │ ├── CoinAPI.REST.V1.Example.csproj │ │ │ │ └── Program.cs │ │ │ ├── CoinAPI.REST.V1.Tests │ │ │ │ └── CoinAPI.REST.V1.Tests.csproj │ │ │ ├── CoinAPI.REST.V1 │ │ │ │ ├── CoinAPI.REST.V1.csproj │ │ │ │ ├── CoinApiCheckStatusCode.cs │ │ │ │ ├── CoinApiEndpointUrls.cs │ │ │ │ ├── CoinApiRestClient.cs │ │ │ │ ├── CoinApiRestEndpointsTester.cs │ │ │ │ ├── DataModels │ │ │ │ │ ├── Ask.cs │ │ │ │ │ ├── AskL3.cs │ │ │ │ │ ├── Asset.cs │ │ │ │ │ ├── Bid.cs │ │ │ │ │ ├── BidL3.cs │ │ │ │ │ ├── ErrorMessage.cs │ │ │ │ │ ├── Exchange.cs │ │ │ │ │ ├── ExchangeCurrentrate.cs │ │ │ │ │ ├── ExchangeOHLCV.cs │ │ │ │ │ ├── Exchangerate.cs │ │ │ │ │ ├── Icon.cs │ │ │ │ │ ├── OHLCV.cs │ │ │ │ │ ├── Orderbook.cs │ │ │ │ │ ├── Orderbook3.cs │ │ │ │ │ ├── Period.cs │ │ │ │ │ ├── Quote.cs │ │ │ │ │ ├── Rate.cs │ │ │ │ │ ├── Symbol.cs │ │ │ │ │ ├── SymbolSlim.cs │ │ │ │ │ └── Trade.cs │ │ │ │ ├── EndpointCheckResult.cs │ │ │ │ └── Exceptions │ │ │ │ │ ├── BadRequestException.cs │ │ │ │ │ ├── CoinApiException.cs │ │ │ │ │ ├── ForbiddenException.cs │ │ │ │ │ ├── NoDataException.cs │ │ │ │ │ ├── TooManyRequestsException.cs │ │ │ │ │ └── UnauthorizedException.cs │ │ │ └── CoinAPI.REST.sln │ │ ├── go-rest │ │ │ ├── README.MD │ │ │ ├── main.go │ │ │ └── v1 │ │ │ │ └── coinapi_v1.go │ │ ├── haskell-rest │ │ │ ├── .gitignore │ │ │ ├── CoinApi.hs │ │ │ ├── CoinApi │ │ │ │ ├── Monadic.hs │ │ │ │ └── Types │ │ │ │ │ ├── Asset.hs │ │ │ │ │ ├── Exchange.hs │ │ │ │ │ ├── Internal.hs │ │ │ │ │ ├── Message.hs │ │ │ │ │ ├── OHLCV.hs │ │ │ │ │ ├── Orderbook.hs │ │ │ │ │ ├── Period.hs │ │ │ │ │ ├── Quote.hs │ │ │ │ │ ├── Rate.hs │ │ │ │ │ ├── Symbol.hs │ │ │ │ │ └── Trade.hs │ │ │ ├── LICENSE │ │ │ ├── Main.hs │ │ │ ├── README.md │ │ │ ├── Setup.hs │ │ │ └── haskell-rest.cabal │ │ ├── java-rest-deprecated │ │ │ ├── README.md │ │ │ ├── README.me │ │ │ ├── compile.bat │ │ │ ├── java_rest_coin_api.java │ │ │ ├── java_rest_coin_api_test.java │ │ │ ├── json-20140107.jar │ │ │ ├── okhttp-3.8.1.jar │ │ │ ├── okio-1.13.0.jar │ │ │ └── run.bat │ │ ├── java-rest │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ ├── publish.cmd │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── io │ │ │ │ │ └── coinapi │ │ │ │ │ └── rest │ │ │ │ │ ├── Asset.java │ │ │ │ │ ├── Config.java │ │ │ │ │ ├── Exchange.java │ │ │ │ │ ├── Exchange_rate.java │ │ │ │ │ ├── Level.java │ │ │ │ │ ├── OptionExerciseStyle.java │ │ │ │ │ ├── Orderbook.java │ │ │ │ │ ├── Period.java │ │ │ │ │ ├── Period_identifier.java │ │ │ │ │ ├── Quote.java │ │ │ │ │ ├── Quote_with_trade.java │ │ │ │ │ ├── REST_methods.java │ │ │ │ │ ├── Symbol.java │ │ │ │ │ ├── SymbolType.java │ │ │ │ │ ├── Taker_side.java │ │ │ │ │ ├── Timedata.java │ │ │ │ │ ├── Trade.java │ │ │ │ │ └── UtilsJSON.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── coinapi │ │ │ │ └── rest │ │ │ │ └── REST_methodsTest.java │ │ ├── javascript-rest │ │ │ ├── coinapi_v1.js │ │ │ ├── example_javascript.html │ │ │ ├── example_javascript.js │ │ │ ├── example_typescript.html │ │ │ ├── example_typescript.js │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── matlab │ │ │ └── README.md │ │ ├── objc-rest │ │ │ ├── CoinAPI.h │ │ │ ├── CoinAPI.m │ │ │ ├── ViewController.h │ │ │ └── ViewController.m │ │ ├── php-rest │ │ │ ├── README.md │ │ │ ├── coinapi.inc.php │ │ │ └── example.php │ │ ├── python-rest │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── coinapi_rest_v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── examples.py │ │ │ │ └── restapi.py │ │ │ └── setup.py │ │ ├── r-rest-2 │ │ │ ├── DESCRIPTION │ │ │ ├── R │ │ │ │ ├── ExchangeRates.R │ │ │ │ ├── Markets.R │ │ │ │ ├── OHLCV.R │ │ │ │ ├── Orderbook.R │ │ │ │ ├── OrderbookL3.R │ │ │ │ ├── Quotes.R │ │ │ │ ├── Trades.R │ │ │ │ ├── config.R │ │ │ │ └── utils.R │ │ │ ├── README.md │ │ │ ├── man │ │ │ │ ├── figures │ │ │ │ │ └── README-pressure-1.png │ │ │ │ ├── getAllExchangeRates.Rd │ │ │ │ ├── getAssetIcons.Rd │ │ │ │ ├── getAssets.Rd │ │ │ │ ├── getCryptoSymbols.Rd │ │ │ │ ├── getExchangeIcons.Rd │ │ │ │ ├── getExchangeRate.Rd │ │ │ │ ├── getExchanges.Rd │ │ │ │ ├── getHistoricalExchangeRatePeriods.Rd │ │ │ │ ├── getHistoricalExchangeRates.Rd │ │ │ │ ├── getHistoricalOHLCV.Rd │ │ │ │ ├── getHistoricalOrderbook.Rd │ │ │ │ ├── getHistoricalQuotes.Rd │ │ │ │ ├── getHistoricalTrades.Rd │ │ │ │ ├── getLatestOHLCV.Rd │ │ │ │ ├── getLatestOrderbook.Rd │ │ │ │ ├── getLatestQuotes.Rd │ │ │ │ ├── getOHLCVPeriods.Rd │ │ │ │ ├── getOrderbook.Rd │ │ │ │ ├── getOrderbookL3.Rd │ │ │ │ ├── getQuotes.Rd │ │ │ │ ├── getTrades.Rd │ │ │ │ └── setApiKey.Rd │ │ │ └── tests │ │ │ │ ├── testthat.R │ │ │ │ └── testthat │ │ │ │ └── test-listToStringArray.R │ │ ├── r-rest │ │ │ ├── README.md │ │ │ └── example.R │ │ ├── ruby-rest │ │ │ ├── README.md │ │ │ ├── coinapi_v1.rb │ │ │ └── examples.rb │ │ ├── swift-rest │ │ │ ├── CoinAPI.swift │ │ │ └── ViewController.swift │ │ └── typescript-rest │ │ │ ├── coinapi_v1.ts │ │ │ ├── example_typescript.ts │ │ │ ├── package.json │ │ │ └── readme.md │ ├── sdk │ │ ├── ada │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── config.gpr │ │ │ ├── defaultpackage.gpr │ │ │ └── src │ │ │ │ ├── -client.adb │ │ │ │ ├── .ads │ │ │ │ ├── client │ │ │ │ ├── -clients.adb │ │ │ │ └── -clients.ads │ │ │ │ └── model │ │ │ │ ├── -models.adb │ │ │ │ └── -models.ads │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetricsV1Api.md │ │ │ │ ├── MetricsV2Api.md │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ ├── OhlcvApi.md │ │ │ │ ├── OptionsApi.md │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ ├── OptionsStrike.md │ │ │ │ ├── OrderBookApi.md │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ ├── QuotesApi.md │ │ │ │ ├── TradesApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1Chain.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1Exchange.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1GeneralData.md │ │ │ │ ├── V1Icon.md │ │ │ │ ├── V1LastTrade.md │ │ │ │ ├── V1ListingItem.md │ │ │ │ ├── V1Metric.md │ │ │ │ ├── V1MetricData.md │ │ │ │ ├── V1MetricInfo.md │ │ │ │ ├── V1OrderBook.md │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ ├── V1Quote.md │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ ├── V1Symbol.md │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ └── V1Trade.md │ │ │ ├── git_push.sh │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── ApiException.java │ │ │ │ ├── ApiInvoker.java │ │ │ │ ├── JsonUtil.java │ │ │ │ ├── Pair.java │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.java │ │ │ │ ├── MetadataApi.java │ │ │ │ ├── MetricsV1Api.java │ │ │ │ ├── MetricsV2Api.java │ │ │ │ ├── OhlcvApi.java │ │ │ │ ├── OptionsApi.java │ │ │ │ ├── OrderBookApi.java │ │ │ │ ├── OrderBookL3Api.java │ │ │ │ ├── QuotesApi.java │ │ │ │ └── TradesApi.java │ │ │ │ ├── auth │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ ├── Authentication.java │ │ │ │ └── HttpBasicAuth.java │ │ │ │ ├── model │ │ │ │ ├── ModelsExchangeTimeseriesItem.java │ │ │ │ ├── OptionsOptionExchangeGroup.java │ │ │ │ ├── OptionsStrike.java │ │ │ │ ├── V1Asset.java │ │ │ │ ├── V1Chain.java │ │ │ │ ├── V1ChainNetworkAddress.java │ │ │ │ ├── V1Exchange.java │ │ │ │ ├── V1ExchangeRate.java │ │ │ │ ├── V1ExchangeRates.java │ │ │ │ ├── V1ExchangeRatesRate.java │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.java │ │ │ │ ├── V1GeneralData.java │ │ │ │ ├── V1Icon.java │ │ │ │ ├── V1LastTrade.java │ │ │ │ ├── V1ListingItem.java │ │ │ │ ├── V1Metric.java │ │ │ │ ├── V1MetricData.java │ │ │ │ ├── V1MetricInfo.java │ │ │ │ ├── V1OrderBook.java │ │ │ │ ├── V1OrderBookBase.java │ │ │ │ ├── V1OrderBookDepth.java │ │ │ │ ├── V1Quote.java │ │ │ │ ├── V1QuoteTrade.java │ │ │ │ ├── V1Symbol.java │ │ │ │ ├── V1SymbolMapping.java │ │ │ │ ├── V1TimeseriesItem.java │ │ │ │ ├── V1TimeseriesPeriod.java │ │ │ │ └── V1Trade.java │ │ │ │ └── request │ │ │ │ ├── DeleteRequest.java │ │ │ │ ├── GetRequest.java │ │ │ │ ├── PatchRequest.java │ │ │ │ ├── PostRequest.java │ │ │ │ └── PutRequest.java │ │ ├── apex │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── project-scratch-def.json │ │ │ ├── force-app │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ ├── classes │ │ │ │ │ ├── OAS.cls │ │ │ │ │ ├── OAS.cls-meta.xml │ │ │ │ │ ├── OASClient.cls │ │ │ │ │ ├── OASClient.cls-meta.xml │ │ │ │ │ ├── OASExchangeRatesApi.cls │ │ │ │ │ ├── OASExchangeRatesApi.cls-meta.xml │ │ │ │ │ ├── OASExchangeRatesApiTest.cls │ │ │ │ │ ├── OASExchangeRatesApiTest.cls-meta.xml │ │ │ │ │ ├── OASMetadataApi.cls │ │ │ │ │ ├── OASMetadataApi.cls-meta.xml │ │ │ │ │ ├── OASMetadataApiTest.cls │ │ │ │ │ ├── OASMetadataApiTest.cls-meta.xml │ │ │ │ │ ├── OASMetricsV1Api.cls │ │ │ │ │ ├── OASMetricsV1Api.cls-meta.xml │ │ │ │ │ ├── OASMetricsV1ApiTest.cls │ │ │ │ │ ├── OASMetricsV1ApiTest.cls-meta.xml │ │ │ │ │ ├── OASMetricsV2Api.cls │ │ │ │ │ ├── OASMetricsV2Api.cls-meta.xml │ │ │ │ │ ├── OASMetricsV2ApiTest.cls │ │ │ │ │ ├── OASMetricsV2ApiTest.cls-meta.xml │ │ │ │ │ ├── OASModelsExchangeTimeseriesItem.cls │ │ │ │ │ ├── OASModelsExchangeTimeseriesItem.cls-meta.xml │ │ │ │ │ ├── OASModelsExchangeTimeseriesItemTest.cls │ │ │ │ │ ├── OASModelsExchangeTimeseriesItemTest.cls-meta.xml │ │ │ │ │ ├── OASOhlcvApi.cls │ │ │ │ │ ├── OASOhlcvApi.cls-meta.xml │ │ │ │ │ ├── OASOhlcvApiTest.cls │ │ │ │ │ ├── OASOhlcvApiTest.cls-meta.xml │ │ │ │ │ ├── OASOptionsApi.cls │ │ │ │ │ ├── OASOptionsApi.cls-meta.xml │ │ │ │ │ ├── OASOptionsApiTest.cls │ │ │ │ │ ├── OASOptionsApiTest.cls-meta.xml │ │ │ │ │ ├── OASOptionsOptionExchangeGroup.cls │ │ │ │ │ ├── OASOptionsOptionExchangeGroup.cls-meta.xml │ │ │ │ │ ├── OASOptionsOptionExchangeGroupTest.cls │ │ │ │ │ ├── OASOptionsOptionExchangeGroupTest.cls-meta.xml │ │ │ │ │ ├── OASOptionsStrike.cls │ │ │ │ │ ├── OASOptionsStrike.cls-meta.xml │ │ │ │ │ ├── OASOptionsStrikeTest.cls │ │ │ │ │ ├── OASOptionsStrikeTest.cls-meta.xml │ │ │ │ │ ├── OASOrderBookApi.cls │ │ │ │ │ ├── OASOrderBookApi.cls-meta.xml │ │ │ │ │ ├── OASOrderBookApiTest.cls │ │ │ │ │ ├── OASOrderBookApiTest.cls-meta.xml │ │ │ │ │ ├── OASOrderBookL3Api.cls │ │ │ │ │ ├── OASOrderBookL3Api.cls-meta.xml │ │ │ │ │ ├── OASOrderBookL3ApiTest.cls │ │ │ │ │ ├── OASOrderBookL3ApiTest.cls-meta.xml │ │ │ │ │ ├── OASQuotesApi.cls │ │ │ │ │ ├── OASQuotesApi.cls-meta.xml │ │ │ │ │ ├── OASQuotesApiTest.cls │ │ │ │ │ ├── OASQuotesApiTest.cls-meta.xml │ │ │ │ │ ├── OASResponseMock.cls │ │ │ │ │ ├── OASResponseMock.cls-meta.xml │ │ │ │ │ ├── OASTest.cls │ │ │ │ │ ├── OASTest.cls-meta.xml │ │ │ │ │ ├── OASTradesApi.cls │ │ │ │ │ ├── OASTradesApi.cls-meta.xml │ │ │ │ │ ├── OASTradesApiTest.cls │ │ │ │ │ ├── OASTradesApiTest.cls-meta.xml │ │ │ │ │ ├── OASV1Asset.cls │ │ │ │ │ ├── OASV1Asset.cls-meta.xml │ │ │ │ │ ├── OASV1AssetTest.cls │ │ │ │ │ ├── OASV1AssetTest.cls-meta.xml │ │ │ │ │ ├── OASV1Chain.cls │ │ │ │ │ ├── OASV1Chain.cls-meta.xml │ │ │ │ │ ├── OASV1ChainNetworkAddress.cls │ │ │ │ │ ├── OASV1ChainNetworkAddress.cls-meta.xml │ │ │ │ │ ├── OASV1ChainNetworkAddressTest.cls │ │ │ │ │ ├── OASV1ChainNetworkAddressTest.cls-meta.xml │ │ │ │ │ ├── OASV1ChainTest.cls │ │ │ │ │ ├── OASV1ChainTest.cls-meta.xml │ │ │ │ │ ├── OASV1Exchange.cls │ │ │ │ │ ├── OASV1Exchange.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRate.cls │ │ │ │ │ ├── OASV1ExchangeRate.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRateTest.cls │ │ │ │ │ ├── OASV1ExchangeRateTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRates.cls │ │ │ │ │ ├── OASV1ExchangeRates.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesRate.cls │ │ │ │ │ ├── OASV1ExchangeRatesRate.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesRateTest.cls │ │ │ │ │ ├── OASV1ExchangeRatesRateTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesTest.cls │ │ │ │ │ ├── OASV1ExchangeRatesTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesTimeseriesItem.cls │ │ │ │ │ ├── OASV1ExchangeRatesTimeseriesItem.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesTimeseriesItemTest.cls │ │ │ │ │ ├── OASV1ExchangeRatesTimeseriesItemTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeTest.cls │ │ │ │ │ ├── OASV1ExchangeTest.cls-meta.xml │ │ │ │ │ ├── OASV1GeneralData.cls │ │ │ │ │ ├── OASV1GeneralData.cls-meta.xml │ │ │ │ │ ├── OASV1GeneralDataTest.cls │ │ │ │ │ ├── OASV1GeneralDataTest.cls-meta.xml │ │ │ │ │ ├── OASV1Icon.cls │ │ │ │ │ ├── OASV1Icon.cls-meta.xml │ │ │ │ │ ├── OASV1IconTest.cls │ │ │ │ │ ├── OASV1IconTest.cls-meta.xml │ │ │ │ │ ├── OASV1LastTrade.cls │ │ │ │ │ ├── OASV1LastTrade.cls-meta.xml │ │ │ │ │ ├── OASV1LastTradeTest.cls │ │ │ │ │ ├── OASV1LastTradeTest.cls-meta.xml │ │ │ │ │ ├── OASV1ListingItem.cls │ │ │ │ │ ├── OASV1ListingItem.cls-meta.xml │ │ │ │ │ ├── OASV1ListingItemTest.cls │ │ │ │ │ ├── OASV1ListingItemTest.cls-meta.xml │ │ │ │ │ ├── OASV1Metric.cls │ │ │ │ │ ├── OASV1Metric.cls-meta.xml │ │ │ │ │ ├── OASV1MetricData.cls │ │ │ │ │ ├── OASV1MetricData.cls-meta.xml │ │ │ │ │ ├── OASV1MetricDataTest.cls │ │ │ │ │ ├── OASV1MetricDataTest.cls-meta.xml │ │ │ │ │ ├── OASV1MetricInfo.cls │ │ │ │ │ ├── OASV1MetricInfo.cls-meta.xml │ │ │ │ │ ├── OASV1MetricInfoTest.cls │ │ │ │ │ ├── OASV1MetricInfoTest.cls-meta.xml │ │ │ │ │ ├── OASV1MetricTest.cls │ │ │ │ │ ├── OASV1MetricTest.cls-meta.xml │ │ │ │ │ ├── OASV1OrderBook.cls │ │ │ │ │ ├── OASV1OrderBook.cls-meta.xml │ │ │ │ │ ├── OASV1OrderBookBase.cls │ │ │ │ │ ├── OASV1OrderBookBase.cls-meta.xml │ │ │ │ │ ├── OASV1OrderBookBaseTest.cls │ │ │ │ │ ├── OASV1OrderBookBaseTest.cls-meta.xml │ │ │ │ │ ├── OASV1OrderBookDepth.cls │ │ │ │ │ ├── OASV1OrderBookDepth.cls-meta.xml │ │ │ │ │ ├── OASV1OrderBookDepthTest.cls │ │ │ │ │ ├── OASV1OrderBookDepthTest.cls-meta.xml │ │ │ │ │ ├── OASV1OrderBookTest.cls │ │ │ │ │ ├── OASV1OrderBookTest.cls-meta.xml │ │ │ │ │ ├── OASV1Quote.cls │ │ │ │ │ ├── OASV1Quote.cls-meta.xml │ │ │ │ │ ├── OASV1QuoteTest.cls │ │ │ │ │ ├── OASV1QuoteTest.cls-meta.xml │ │ │ │ │ ├── OASV1QuoteTrade.cls │ │ │ │ │ ├── OASV1QuoteTrade.cls-meta.xml │ │ │ │ │ ├── OASV1QuoteTradeTest.cls │ │ │ │ │ ├── OASV1QuoteTradeTest.cls-meta.xml │ │ │ │ │ ├── OASV1Symbol.cls │ │ │ │ │ ├── OASV1Symbol.cls-meta.xml │ │ │ │ │ ├── OASV1SymbolMapping.cls │ │ │ │ │ ├── OASV1SymbolMapping.cls-meta.xml │ │ │ │ │ ├── OASV1SymbolMappingTest.cls │ │ │ │ │ ├── OASV1SymbolMappingTest.cls-meta.xml │ │ │ │ │ ├── OASV1SymbolTest.cls │ │ │ │ │ ├── OASV1SymbolTest.cls-meta.xml │ │ │ │ │ ├── OASV1TimeseriesItem.cls │ │ │ │ │ ├── OASV1TimeseriesItem.cls-meta.xml │ │ │ │ │ ├── OASV1TimeseriesItemTest.cls │ │ │ │ │ ├── OASV1TimeseriesItemTest.cls-meta.xml │ │ │ │ │ ├── OASV1TimeseriesPeriod.cls │ │ │ │ │ ├── OASV1TimeseriesPeriod.cls-meta.xml │ │ │ │ │ ├── OASV1TimeseriesPeriodTest.cls │ │ │ │ │ ├── OASV1TimeseriesPeriodTest.cls-meta.xml │ │ │ │ │ ├── OASV1Trade.cls │ │ │ │ │ ├── OASV1Trade.cls-meta.xml │ │ │ │ │ ├── OASV1TradeTest.cls │ │ │ │ │ └── OASV1TradeTest.cls-meta.xml │ │ │ │ │ └── namedCredentials │ │ │ │ │ └── CoinAPI_Market_Data_REST_API.namedCredential-meta.xml │ │ │ └── sfdx-project.json │ │ ├── bash │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── _client.sh │ │ │ ├── client.sh │ │ │ ├── client.sh.bash-completion │ │ │ └── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetricsV1Api.md │ │ │ │ ├── MetricsV2Api.md │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ ├── OhlcvApi.md │ │ │ │ ├── OptionsApi.md │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ ├── OptionsStrike.md │ │ │ │ ├── OrderBookApi.md │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ ├── QuotesApi.md │ │ │ │ ├── TradesApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1Chain.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1Exchange.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1GeneralData.md │ │ │ │ ├── V1Icon.md │ │ │ │ ├── V1LastTrade.md │ │ │ │ ├── V1ListingItem.md │ │ │ │ ├── V1Metric.md │ │ │ │ ├── V1MetricData.md │ │ │ │ ├── V1MetricInfo.md │ │ │ │ ├── V1OrderBook.md │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ ├── V1Quote.md │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ ├── V1Symbol.md │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ └── V1Trade.md │ │ ├── c │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── Packing.cmake │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ ├── ExchangeRatesAPI.c │ │ │ │ ├── ExchangeRatesAPI.h │ │ │ │ ├── MetadataAPI.c │ │ │ │ ├── MetadataAPI.h │ │ │ │ ├── MetricsV1API.c │ │ │ │ ├── MetricsV1API.h │ │ │ │ ├── MetricsV2API.c │ │ │ │ ├── MetricsV2API.h │ │ │ │ ├── OhlcvAPI.c │ │ │ │ ├── OhlcvAPI.h │ │ │ │ ├── OptionsAPI.c │ │ │ │ ├── OptionsAPI.h │ │ │ │ ├── OrderBookAPI.c │ │ │ │ ├── OrderBookAPI.h │ │ │ │ ├── OrderBookL3API.c │ │ │ │ ├── OrderBookL3API.h │ │ │ │ ├── QuotesAPI.c │ │ │ │ ├── QuotesAPI.h │ │ │ │ ├── TradesAPI.c │ │ │ │ └── TradesAPI.h │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesAPI.md │ │ │ │ ├── MetadataAPI.md │ │ │ │ ├── MetricsV1API.md │ │ │ │ ├── MetricsV2API.md │ │ │ │ ├── OhlcvAPI.md │ │ │ │ ├── OptionsAPI.md │ │ │ │ ├── OrderBookAPI.md │ │ │ │ ├── OrderBookL3API.md │ │ │ │ ├── QuotesAPI.md │ │ │ │ ├── TradesAPI.md │ │ │ │ ├── models_exchange_timeseries_item.md │ │ │ │ ├── options_option_exchange_group.md │ │ │ │ ├── options_strike.md │ │ │ │ ├── v1_asset.md │ │ │ │ ├── v1_chain.md │ │ │ │ ├── v1_chain_network_address.md │ │ │ │ ├── v1_exchange.md │ │ │ │ ├── v1_exchange_rate.md │ │ │ │ ├── v1_exchange_rates.md │ │ │ │ ├── v1_exchange_rates_rate.md │ │ │ │ ├── v1_exchange_rates_timeseries_item.md │ │ │ │ ├── v1_general_data.md │ │ │ │ ├── v1_icon.md │ │ │ │ ├── v1_last_trade.md │ │ │ │ ├── v1_listing_item.md │ │ │ │ ├── v1_metric.md │ │ │ │ ├── v1_metric_data.md │ │ │ │ ├── v1_metric_info.md │ │ │ │ ├── v1_order_book.md │ │ │ │ ├── v1_order_book_base.md │ │ │ │ ├── v1_order_book_depth.md │ │ │ │ ├── v1_quote.md │ │ │ │ ├── v1_quote_trade.md │ │ │ │ ├── v1_symbol.md │ │ │ │ ├── v1_symbol_mapping.md │ │ │ │ ├── v1_timeseries_item.md │ │ │ │ ├── v1_timeseries_period.md │ │ │ │ └── v1_trade.md │ │ │ ├── external │ │ │ │ ├── cJSON.c │ │ │ │ ├── cJSON.h │ │ │ │ └── cJSON.licence │ │ │ ├── include │ │ │ │ ├── apiClient.h │ │ │ │ ├── binary.h │ │ │ │ ├── keyValuePair.h │ │ │ │ └── list.h │ │ │ ├── libcurl.licence │ │ │ ├── model │ │ │ │ ├── any_type.h │ │ │ │ ├── models_exchange_timeseries_item.c │ │ │ │ ├── models_exchange_timeseries_item.h │ │ │ │ ├── object.c │ │ │ │ ├── object.h │ │ │ │ ├── options_option_exchange_group.c │ │ │ │ ├── options_option_exchange_group.h │ │ │ │ ├── options_strike.c │ │ │ │ ├── options_strike.h │ │ │ │ ├── v1_asset.c │ │ │ │ ├── v1_asset.h │ │ │ │ ├── v1_chain.c │ │ │ │ ├── v1_chain.h │ │ │ │ ├── v1_chain_network_address.c │ │ │ │ ├── v1_chain_network_address.h │ │ │ │ ├── v1_exchange.c │ │ │ │ ├── v1_exchange.h │ │ │ │ ├── v1_exchange_rate.c │ │ │ │ ├── v1_exchange_rate.h │ │ │ │ ├── v1_exchange_rates.c │ │ │ │ ├── v1_exchange_rates.h │ │ │ │ ├── v1_exchange_rates_rate.c │ │ │ │ ├── v1_exchange_rates_rate.h │ │ │ │ ├── v1_exchange_rates_timeseries_item.c │ │ │ │ ├── v1_exchange_rates_timeseries_item.h │ │ │ │ ├── v1_general_data.c │ │ │ │ ├── v1_general_data.h │ │ │ │ ├── v1_icon.c │ │ │ │ ├── v1_icon.h │ │ │ │ ├── v1_last_trade.c │ │ │ │ ├── v1_last_trade.h │ │ │ │ ├── v1_listing_item.c │ │ │ │ ├── v1_listing_item.h │ │ │ │ ├── v1_metric.c │ │ │ │ ├── v1_metric.h │ │ │ │ ├── v1_metric_data.c │ │ │ │ ├── v1_metric_data.h │ │ │ │ ├── v1_metric_info.c │ │ │ │ ├── v1_metric_info.h │ │ │ │ ├── v1_order_book.c │ │ │ │ ├── v1_order_book.h │ │ │ │ ├── v1_order_book_base.c │ │ │ │ ├── v1_order_book_base.h │ │ │ │ ├── v1_order_book_depth.c │ │ │ │ ├── v1_order_book_depth.h │ │ │ │ ├── v1_quote.c │ │ │ │ ├── v1_quote.h │ │ │ │ ├── v1_quote_trade.c │ │ │ │ ├── v1_quote_trade.h │ │ │ │ ├── v1_symbol.c │ │ │ │ ├── v1_symbol.h │ │ │ │ ├── v1_symbol_mapping.c │ │ │ │ ├── v1_symbol_mapping.h │ │ │ │ ├── v1_timeseries_item.c │ │ │ │ ├── v1_timeseries_item.h │ │ │ │ ├── v1_timeseries_period.c │ │ │ │ ├── v1_timeseries_period.h │ │ │ │ ├── v1_trade.c │ │ │ │ └── v1_trade.h │ │ │ ├── src │ │ │ │ ├── apiClient.c │ │ │ │ ├── apiKey.c │ │ │ │ ├── binary.c │ │ │ │ └── list.c │ │ │ ├── uncrustify-rules.cfg │ │ │ └── unit-test │ │ │ │ ├── test_models_exchange_timeseries_item.c │ │ │ │ ├── test_options_option_exchange_group.c │ │ │ │ ├── test_options_strike.c │ │ │ │ ├── test_v1_asset.c │ │ │ │ ├── test_v1_chain.c │ │ │ │ ├── test_v1_chain_network_address.c │ │ │ │ ├── test_v1_exchange.c │ │ │ │ ├── test_v1_exchange_rate.c │ │ │ │ ├── test_v1_exchange_rates.c │ │ │ │ ├── test_v1_exchange_rates_rate.c │ │ │ │ ├── test_v1_exchange_rates_timeseries_item.c │ │ │ │ ├── test_v1_general_data.c │ │ │ │ ├── test_v1_icon.c │ │ │ │ ├── test_v1_last_trade.c │ │ │ │ ├── test_v1_listing_item.c │ │ │ │ ├── test_v1_metric.c │ │ │ │ ├── test_v1_metric_data.c │ │ │ │ ├── test_v1_metric_info.c │ │ │ │ ├── test_v1_order_book.c │ │ │ │ ├── test_v1_order_book_base.c │ │ │ │ ├── test_v1_order_book_depth.c │ │ │ │ ├── test_v1_quote.c │ │ │ │ ├── test_v1_quote_trade.c │ │ │ │ ├── test_v1_symbol.c │ │ │ │ ├── test_v1_symbol_mapping.c │ │ │ │ ├── test_v1_timeseries_item.c │ │ │ │ ├── test_v1_timeseries_period.c │ │ │ │ └── test_v1_trade.c │ │ ├── clojure │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── project.clj │ │ │ └── src │ │ │ │ └── coin_api_market_data_rest_api │ │ │ │ ├── api │ │ │ │ ├── exchange_rates.clj │ │ │ │ ├── metadata.clj │ │ │ │ ├── metrics_v_.clj │ │ │ │ ├── ohlcv.clj │ │ │ │ ├── options.clj │ │ │ │ ├── order_book.clj │ │ │ │ ├── order_book_l_.clj │ │ │ │ ├── quotes.clj │ │ │ │ └── trades.clj │ │ │ │ ├── core.clj │ │ │ │ └── specs │ │ │ │ ├── models │ │ │ │ └── exchange_timeseries_item.clj │ │ │ │ ├── options │ │ │ │ ├── option_exchange_group.clj │ │ │ │ └── strike.clj │ │ │ │ └── v1 │ │ │ │ ├── asset.clj │ │ │ │ ├── chain.clj │ │ │ │ ├── chain_network_address.clj │ │ │ │ ├── exchange.clj │ │ │ │ ├── exchange_rate.clj │ │ │ │ ├── exchange_rates.clj │ │ │ │ ├── exchange_rates_rate.clj │ │ │ │ ├── exchange_rates_timeseries_item.clj │ │ │ │ ├── general_data.clj │ │ │ │ ├── icon.clj │ │ │ │ ├── last_trade.clj │ │ │ │ ├── listing_item.clj │ │ │ │ ├── metric.clj │ │ │ │ ├── metric_data.clj │ │ │ │ ├── metric_info.clj │ │ │ │ ├── order_book.clj │ │ │ │ ├── order_book_base.clj │ │ │ │ ├── order_book_depth.clj │ │ │ │ ├── quote.clj │ │ │ │ ├── quote_trade.clj │ │ │ │ ├── symbol.clj │ │ │ │ ├── symbol_mapping.clj │ │ │ │ ├── timeseries_item.clj │ │ │ │ ├── timeseries_period.clj │ │ │ │ └── trade.clj │ │ ├── cpp-restsdk │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── README.md │ │ │ ├── git_push.sh │ │ │ ├── include │ │ │ │ └── CppRestOpenAPIClient │ │ │ │ │ ├── AnyType.h │ │ │ │ │ ├── ApiClient.h │ │ │ │ │ ├── ApiConfiguration.h │ │ │ │ │ ├── ApiException.h │ │ │ │ │ ├── HttpContent.h │ │ │ │ │ ├── IHttpBody.h │ │ │ │ │ ├── JsonBody.h │ │ │ │ │ ├── ModelBase.h │ │ │ │ │ ├── MultipartFormData.h │ │ │ │ │ ├── Object.h │ │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.h │ │ │ │ │ ├── MetadataApi.h │ │ │ │ │ ├── MetricsV1Api.h │ │ │ │ │ ├── MetricsV2Api.h │ │ │ │ │ ├── OhlcvApi.h │ │ │ │ │ ├── OptionsApi.h │ │ │ │ │ ├── OrderBookApi.h │ │ │ │ │ ├── OrderBookL3Api.h │ │ │ │ │ ├── QuotesApi.h │ │ │ │ │ └── TradesApi.h │ │ │ │ │ └── model │ │ │ │ │ ├── Models_ExchangeTimeseriesItem.h │ │ │ │ │ ├── Options_OptionExchangeGroup.h │ │ │ │ │ ├── Options_Strike.h │ │ │ │ │ ├── V1_Asset.h │ │ │ │ │ ├── V1_Chain.h │ │ │ │ │ ├── V1_ChainNetworkAddress.h │ │ │ │ │ ├── V1_Exchange.h │ │ │ │ │ ├── V1_ExchangeRate.h │ │ │ │ │ ├── V1_ExchangeRates.h │ │ │ │ │ ├── V1_ExchangeRatesRate.h │ │ │ │ │ ├── V1_ExchangeRatesTimeseriesItem.h │ │ │ │ │ ├── V1_GeneralData.h │ │ │ │ │ ├── V1_Icon.h │ │ │ │ │ ├── V1_LastTrade.h │ │ │ │ │ ├── V1_ListingItem.h │ │ │ │ │ ├── V1_Metric.h │ │ │ │ │ ├── V1_MetricData.h │ │ │ │ │ ├── V1_MetricInfo.h │ │ │ │ │ ├── V1_OrderBook.h │ │ │ │ │ ├── V1_OrderBookBase.h │ │ │ │ │ ├── V1_OrderBookDepth.h │ │ │ │ │ ├── V1_Quote.h │ │ │ │ │ ├── V1_QuoteTrade.h │ │ │ │ │ ├── V1_Symbol.h │ │ │ │ │ ├── V1_SymbolMapping.h │ │ │ │ │ ├── V1_TimeseriesItem.h │ │ │ │ │ ├── V1_TimeseriesPeriod.h │ │ │ │ │ └── V1_Trade.h │ │ │ └── src │ │ │ │ ├── AnyType.cpp │ │ │ │ ├── ApiClient.cpp │ │ │ │ ├── ApiConfiguration.cpp │ │ │ │ ├── ApiException.cpp │ │ │ │ ├── HttpContent.cpp │ │ │ │ ├── JsonBody.cpp │ │ │ │ ├── ModelBase.cpp │ │ │ │ ├── MultipartFormData.cpp │ │ │ │ ├── Object.cpp │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.cpp │ │ │ │ ├── MetadataApi.cpp │ │ │ │ ├── MetricsV1Api.cpp │ │ │ │ ├── MetricsV2Api.cpp │ │ │ │ ├── OhlcvApi.cpp │ │ │ │ ├── OptionsApi.cpp │ │ │ │ ├── OrderBookApi.cpp │ │ │ │ ├── OrderBookL3Api.cpp │ │ │ │ ├── QuotesApi.cpp │ │ │ │ └── TradesApi.cpp │ │ │ │ └── model │ │ │ │ ├── Models_ExchangeTimeseriesItem.cpp │ │ │ │ ├── Options_OptionExchangeGroup.cpp │ │ │ │ ├── Options_Strike.cpp │ │ │ │ ├── V1_Asset.cpp │ │ │ │ ├── V1_Chain.cpp │ │ │ │ ├── V1_ChainNetworkAddress.cpp │ │ │ │ ├── V1_Exchange.cpp │ │ │ │ ├── V1_ExchangeRate.cpp │ │ │ │ ├── V1_ExchangeRates.cpp │ │ │ │ ├── V1_ExchangeRatesRate.cpp │ │ │ │ ├── V1_ExchangeRatesTimeseriesItem.cpp │ │ │ │ ├── V1_GeneralData.cpp │ │ │ │ ├── V1_Icon.cpp │ │ │ │ ├── V1_LastTrade.cpp │ │ │ │ ├── V1_ListingItem.cpp │ │ │ │ ├── V1_Metric.cpp │ │ │ │ ├── V1_MetricData.cpp │ │ │ │ ├── V1_MetricInfo.cpp │ │ │ │ ├── V1_OrderBook.cpp │ │ │ │ ├── V1_OrderBookBase.cpp │ │ │ │ ├── V1_OrderBookDepth.cpp │ │ │ │ ├── V1_Quote.cpp │ │ │ │ ├── V1_QuoteTrade.cpp │ │ │ │ ├── V1_Symbol.cpp │ │ │ │ ├── V1_SymbolMapping.cpp │ │ │ │ ├── V1_TimeseriesItem.cpp │ │ │ │ ├── V1_TimeseriesPeriod.cpp │ │ │ │ └── V1_Trade.cpp │ │ ├── cpp-tizen │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── doc │ │ │ │ ├── Doxyfile │ │ │ │ ├── README.md │ │ │ │ └── generateDocumentation.sh │ │ │ └── src │ │ │ │ ├── Error.cpp │ │ │ │ ├── Error.h │ │ │ │ ├── ExchangeRatesManager.cpp │ │ │ │ ├── ExchangeRatesManager.h │ │ │ │ ├── Helpers.cpp │ │ │ │ ├── Helpers.h │ │ │ │ ├── MetadataManager.cpp │ │ │ │ ├── MetadataManager.h │ │ │ │ ├── MetricsV1Manager.cpp │ │ │ │ ├── MetricsV1Manager.h │ │ │ │ ├── MetricsV2Manager.cpp │ │ │ │ ├── MetricsV2Manager.h │ │ │ │ ├── ModelsExchangeTimeseriesItem.cpp │ │ │ │ ├── ModelsExchangeTimeseriesItem.h │ │ │ │ ├── NetClient.cpp │ │ │ │ ├── NetClient.h │ │ │ │ ├── Object.h │ │ │ │ ├── OhlcvManager.cpp │ │ │ │ ├── OhlcvManager.h │ │ │ │ ├── OptionsManager.cpp │ │ │ │ ├── OptionsManager.h │ │ │ │ ├── OptionsOptionExchangeGroup.cpp │ │ │ │ ├── OptionsOptionExchangeGroup.h │ │ │ │ ├── OptionsStrike.cpp │ │ │ │ ├── OptionsStrike.h │ │ │ │ ├── OrderBookL3Manager.cpp │ │ │ │ ├── OrderBookL3Manager.h │ │ │ │ ├── OrderBookManager.cpp │ │ │ │ ├── OrderBookManager.h │ │ │ │ ├── QuotesManager.cpp │ │ │ │ ├── QuotesManager.h │ │ │ │ ├── RequestInfo.h │ │ │ │ ├── TradesManager.cpp │ │ │ │ ├── TradesManager.h │ │ │ │ ├── V1Asset.cpp │ │ │ │ ├── V1Asset.h │ │ │ │ ├── V1Chain.cpp │ │ │ │ ├── V1Chain.h │ │ │ │ ├── V1ChainNetworkAddress.cpp │ │ │ │ ├── V1ChainNetworkAddress.h │ │ │ │ ├── V1Exchange.cpp │ │ │ │ ├── V1Exchange.h │ │ │ │ ├── V1ExchangeRate.cpp │ │ │ │ ├── V1ExchangeRate.h │ │ │ │ ├── V1ExchangeRates.cpp │ │ │ │ ├── V1ExchangeRates.h │ │ │ │ ├── V1ExchangeRatesRate.cpp │ │ │ │ ├── V1ExchangeRatesRate.h │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.cpp │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.h │ │ │ │ ├── V1GeneralData.cpp │ │ │ │ ├── V1GeneralData.h │ │ │ │ ├── V1Icon.cpp │ │ │ │ ├── V1Icon.h │ │ │ │ ├── V1LastTrade.cpp │ │ │ │ ├── V1LastTrade.h │ │ │ │ ├── V1ListingItem.cpp │ │ │ │ ├── V1ListingItem.h │ │ │ │ ├── V1Metric.cpp │ │ │ │ ├── V1Metric.h │ │ │ │ ├── V1MetricData.cpp │ │ │ │ ├── V1MetricData.h │ │ │ │ ├── V1MetricInfo.cpp │ │ │ │ ├── V1MetricInfo.h │ │ │ │ ├── V1OrderBook.cpp │ │ │ │ ├── V1OrderBook.h │ │ │ │ ├── V1OrderBookBase.cpp │ │ │ │ ├── V1OrderBookBase.h │ │ │ │ ├── V1OrderBookDepth.cpp │ │ │ │ ├── V1OrderBookDepth.h │ │ │ │ ├── V1Quote.cpp │ │ │ │ ├── V1Quote.h │ │ │ │ ├── V1QuoteTrade.cpp │ │ │ │ ├── V1QuoteTrade.h │ │ │ │ ├── V1Symbol.cpp │ │ │ │ ├── V1Symbol.h │ │ │ │ ├── V1SymbolMapping.cpp │ │ │ │ ├── V1SymbolMapping.h │ │ │ │ ├── V1TimeseriesItem.cpp │ │ │ │ ├── V1TimeseriesItem.h │ │ │ │ ├── V1TimeseriesPeriod.cpp │ │ │ │ ├── V1TimeseriesPeriod.h │ │ │ │ ├── V1Trade.cpp │ │ │ │ └── V1Trade.h │ │ ├── csharp │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── APIBricks.CoinAPI.MarketDataAPI.REST.V1.sln │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── apis │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ ├── MetadataApi.md │ │ │ │ │ ├── MetricsV1Api.md │ │ │ │ │ ├── MetricsV2Api.md │ │ │ │ │ ├── OhlcvApi.md │ │ │ │ │ ├── OptionsApi.md │ │ │ │ │ ├── OrderBookApi.md │ │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ │ ├── QuotesApi.md │ │ │ │ │ └── TradesApi.md │ │ │ │ ├── models │ │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ │ ├── OptionsStrike.md │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1Chain.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1Exchange.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ │ ├── V1GeneralData.md │ │ │ │ │ ├── V1Icon.md │ │ │ │ │ ├── V1LastTrade.md │ │ │ │ │ ├── V1ListingItem.md │ │ │ │ │ ├── V1Metric.md │ │ │ │ │ ├── V1MetricData.md │ │ │ │ │ ├── V1MetricInfo.md │ │ │ │ │ ├── V1OrderBook.md │ │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ │ ├── V1Quote.md │ │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ │ ├── V1Symbol.md │ │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ │ └── V1Trade.md │ │ │ │ └── scripts │ │ │ │ │ ├── git_push.ps1 │ │ │ │ │ └── git_push.sh │ │ │ └── src │ │ │ │ ├── APIBricks.CoinAPI.MarketDataAPI.REST.V1.Test │ │ │ │ ├── APIBricks.CoinAPI.MarketDataAPI.REST.V1.Test.csproj │ │ │ │ ├── Api │ │ │ │ │ ├── ApiTestsBase.cs │ │ │ │ │ ├── DependencyInjectionTests.cs │ │ │ │ │ ├── ExchangeRatesApiTests.cs │ │ │ │ │ ├── MetadataApiTests.cs │ │ │ │ │ ├── MetricsV1ApiTests.cs │ │ │ │ │ ├── MetricsV2ApiTests.cs │ │ │ │ │ ├── OhlcvApiTests.cs │ │ │ │ │ ├── OptionsApiTests.cs │ │ │ │ │ ├── OrderBookApiTests.cs │ │ │ │ │ ├── OrderBookL3ApiTests.cs │ │ │ │ │ ├── QuotesApiTests.cs │ │ │ │ │ └── TradesApiTests.cs │ │ │ │ ├── Model │ │ │ │ │ ├── ModelsExchangeTimeseriesItemTests.cs │ │ │ │ │ ├── OptionsOptionExchangeGroupTests.cs │ │ │ │ │ ├── OptionsStrikeTests.cs │ │ │ │ │ ├── V1AssetTests.cs │ │ │ │ │ ├── V1ChainNetworkAddressTests.cs │ │ │ │ │ ├── V1ChainTests.cs │ │ │ │ │ ├── V1ExchangeRateTests.cs │ │ │ │ │ ├── V1ExchangeRatesRateTests.cs │ │ │ │ │ ├── V1ExchangeRatesTests.cs │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTests.cs │ │ │ │ │ ├── V1ExchangeTests.cs │ │ │ │ │ ├── V1GeneralDataTests.cs │ │ │ │ │ ├── V1IconTests.cs │ │ │ │ │ ├── V1LastTradeTests.cs │ │ │ │ │ ├── V1ListingItemTests.cs │ │ │ │ │ ├── V1MetricDataTests.cs │ │ │ │ │ ├── V1MetricInfoTests.cs │ │ │ │ │ ├── V1MetricTests.cs │ │ │ │ │ ├── V1OrderBookBaseTests.cs │ │ │ │ │ ├── V1OrderBookDepthTests.cs │ │ │ │ │ ├── V1OrderBookTests.cs │ │ │ │ │ ├── V1QuoteTests.cs │ │ │ │ │ ├── V1QuoteTradeTests.cs │ │ │ │ │ ├── V1SymbolMappingTests.cs │ │ │ │ │ ├── V1SymbolTests.cs │ │ │ │ │ ├── V1TimeseriesItemTests.cs │ │ │ │ │ ├── V1TimeseriesPeriodTests.cs │ │ │ │ │ └── V1TradeTests.cs │ │ │ │ └── README.md │ │ │ │ └── APIBricks.CoinAPI.MarketDataAPI.REST.V1 │ │ │ │ ├── APIBricks.CoinAPI.MarketDataAPI.REST.V1.csproj │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApi.cs │ │ │ │ ├── IApi.cs │ │ │ │ ├── MetadataApi.cs │ │ │ │ ├── MetricsV1Api.cs │ │ │ │ ├── MetricsV2Api.cs │ │ │ │ ├── OhlcvApi.cs │ │ │ │ ├── OptionsApi.cs │ │ │ │ ├── OrderBookApi.cs │ │ │ │ ├── OrderBookL3Api.cs │ │ │ │ ├── QuotesApi.cs │ │ │ │ └── TradesApi.cs │ │ │ │ ├── Client │ │ │ │ ├── ApiException.cs │ │ │ │ ├── ApiFactory.cs │ │ │ │ ├── ApiKeyToken.cs │ │ │ │ ├── ApiResponseEventArgs.cs │ │ │ │ ├── ApiResponse`1.cs │ │ │ │ ├── BearerToken.cs │ │ │ │ ├── ClientUtils.cs │ │ │ │ ├── CookieContainer.cs │ │ │ │ ├── DateOnlyJsonConverter.cs │ │ │ │ ├── DateOnlyNullableJsonConverter.cs │ │ │ │ ├── DateTimeJsonConverter.cs │ │ │ │ ├── DateTimeNullableJsonConverter.cs │ │ │ │ ├── ExceptionEventArgs.cs │ │ │ │ ├── HostConfiguration.cs │ │ │ │ ├── JsonSerializerOptionsProvider.cs │ │ │ │ ├── Option.cs │ │ │ │ ├── RateLimitProvider`1.cs │ │ │ │ ├── TokenBase.cs │ │ │ │ ├── TokenContainer`1.cs │ │ │ │ └── TokenProvider`1.cs │ │ │ │ ├── Extensions │ │ │ │ ├── IHostBuilderExtensions.cs │ │ │ │ ├── IHttpClientBuilderExtensions.cs │ │ │ │ └── IServiceCollectionExtensions.cs │ │ │ │ ├── Model │ │ │ │ ├── ModelsExchangeTimeseriesItem.cs │ │ │ │ ├── OptionsOptionExchangeGroup.cs │ │ │ │ ├── OptionsStrike.cs │ │ │ │ ├── V1Asset.cs │ │ │ │ ├── V1Chain.cs │ │ │ │ ├── V1ChainNetworkAddress.cs │ │ │ │ ├── V1Exchange.cs │ │ │ │ ├── V1ExchangeRate.cs │ │ │ │ ├── V1ExchangeRates.cs │ │ │ │ ├── V1ExchangeRatesRate.cs │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.cs │ │ │ │ ├── V1GeneralData.cs │ │ │ │ ├── V1Icon.cs │ │ │ │ ├── V1LastTrade.cs │ │ │ │ ├── V1ListingItem.cs │ │ │ │ ├── V1Metric.cs │ │ │ │ ├── V1MetricData.cs │ │ │ │ ├── V1MetricInfo.cs │ │ │ │ ├── V1OrderBook.cs │ │ │ │ ├── V1OrderBookBase.cs │ │ │ │ ├── V1OrderBookDepth.cs │ │ │ │ ├── V1Quote.cs │ │ │ │ ├── V1QuoteTrade.cs │ │ │ │ ├── V1Symbol.cs │ │ │ │ ├── V1SymbolMapping.cs │ │ │ │ ├── V1TimeseriesItem.cs │ │ │ │ ├── V1TimeseriesPeriod.cs │ │ │ │ └── V1Trade.cs │ │ │ │ └── README.md │ │ ├── dart-dio │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetricsV1Api.md │ │ │ │ ├── MetricsV2Api.md │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ ├── OhlcvApi.md │ │ │ │ ├── OptionsApi.md │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ ├── OptionsStrike.md │ │ │ │ ├── OrderBookApi.md │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ ├── QuotesApi.md │ │ │ │ ├── TradesApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1Chain.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1Exchange.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1GeneralData.md │ │ │ │ ├── V1Icon.md │ │ │ │ ├── V1LastTrade.md │ │ │ │ ├── V1ListingItem.md │ │ │ │ ├── V1Metric.md │ │ │ │ ├── V1MetricData.md │ │ │ │ ├── V1MetricInfo.md │ │ │ │ ├── V1OrderBook.md │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ ├── V1Quote.md │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ ├── V1Symbol.md │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ └── V1Trade.md │ │ │ ├── lib │ │ │ │ ├── openapi.dart │ │ │ │ └── src │ │ │ │ │ ├── api.dart │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.dart │ │ │ │ │ ├── metadata_api.dart │ │ │ │ │ ├── metrics_v1_api.dart │ │ │ │ │ ├── metrics_v2_api.dart │ │ │ │ │ ├── ohlcv_api.dart │ │ │ │ │ ├── options_api.dart │ │ │ │ │ ├── order_book_api.dart │ │ │ │ │ ├── order_book_l3_api.dart │ │ │ │ │ ├── quotes_api.dart │ │ │ │ │ └── trades_api.dart │ │ │ │ │ ├── api_util.dart │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── auth.dart │ │ │ │ │ ├── basic_auth.dart │ │ │ │ │ ├── bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ │ ├── date_serializer.dart │ │ │ │ │ ├── model │ │ │ │ │ ├── date.dart │ │ │ │ │ ├── models_exchange_timeseries_item.dart │ │ │ │ │ ├── options_option_exchange_group.dart │ │ │ │ │ ├── options_strike.dart │ │ │ │ │ ├── v1_asset.dart │ │ │ │ │ ├── v1_chain.dart │ │ │ │ │ ├── v1_chain_network_address.dart │ │ │ │ │ ├── v1_exchange.dart │ │ │ │ │ ├── v1_exchange_rate.dart │ │ │ │ │ ├── v1_exchange_rates.dart │ │ │ │ │ ├── v1_exchange_rates_rate.dart │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.dart │ │ │ │ │ ├── v1_general_data.dart │ │ │ │ │ ├── v1_icon.dart │ │ │ │ │ ├── v1_last_trade.dart │ │ │ │ │ ├── v1_listing_item.dart │ │ │ │ │ ├── v1_metric.dart │ │ │ │ │ ├── v1_metric_data.dart │ │ │ │ │ ├── v1_metric_info.dart │ │ │ │ │ ├── v1_order_book.dart │ │ │ │ │ ├── v1_order_book_base.dart │ │ │ │ │ ├── v1_order_book_depth.dart │ │ │ │ │ ├── v1_quote.dart │ │ │ │ │ ├── v1_quote_trade.dart │ │ │ │ │ ├── v1_symbol.dart │ │ │ │ │ ├── v1_symbol_mapping.dart │ │ │ │ │ ├── v1_timeseries_item.dart │ │ │ │ │ ├── v1_timeseries_period.dart │ │ │ │ │ └── v1_trade.dart │ │ │ │ │ └── serializers.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── exchange_rates_api_test.dart │ │ │ │ ├── metadata_api_test.dart │ │ │ │ ├── metrics_v1_api_test.dart │ │ │ │ ├── metrics_v2_api_test.dart │ │ │ │ ├── models_exchange_timeseries_item_test.dart │ │ │ │ ├── ohlcv_api_test.dart │ │ │ │ ├── options_api_test.dart │ │ │ │ ├── options_option_exchange_group_test.dart │ │ │ │ ├── options_strike_test.dart │ │ │ │ ├── order_book_api_test.dart │ │ │ │ ├── order_book_l3_api_test.dart │ │ │ │ ├── quotes_api_test.dart │ │ │ │ ├── trades_api_test.dart │ │ │ │ ├── v1_asset_test.dart │ │ │ │ ├── v1_chain_network_address_test.dart │ │ │ │ ├── v1_chain_test.dart │ │ │ │ ├── v1_exchange_rate_test.dart │ │ │ │ ├── v1_exchange_rates_rate_test.dart │ │ │ │ ├── v1_exchange_rates_test.dart │ │ │ │ ├── v1_exchange_rates_timeseries_item_test.dart │ │ │ │ ├── v1_exchange_test.dart │ │ │ │ ├── v1_general_data_test.dart │ │ │ │ ├── v1_icon_test.dart │ │ │ │ ├── v1_last_trade_test.dart │ │ │ │ ├── v1_listing_item_test.dart │ │ │ │ ├── v1_metric_data_test.dart │ │ │ │ ├── v1_metric_info_test.dart │ │ │ │ ├── v1_metric_test.dart │ │ │ │ ├── v1_order_book_base_test.dart │ │ │ │ ├── v1_order_book_depth_test.dart │ │ │ │ ├── v1_order_book_test.dart │ │ │ │ ├── v1_quote_test.dart │ │ │ │ ├── v1_quote_trade_test.dart │ │ │ │ ├── v1_symbol_mapping_test.dart │ │ │ │ ├── v1_symbol_test.dart │ │ │ │ ├── v1_timeseries_item_test.dart │ │ │ │ ├── v1_timeseries_period_test.dart │ │ │ │ └── v1_trade_test.dart │ │ ├── dart │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetricsV1Api.md │ │ │ │ ├── MetricsV2Api.md │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ ├── OhlcvApi.md │ │ │ │ ├── OptionsApi.md │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ ├── OptionsStrike.md │ │ │ │ ├── OrderBookApi.md │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ ├── QuotesApi.md │ │ │ │ ├── TradesApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1Chain.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1Exchange.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1GeneralData.md │ │ │ │ ├── V1Icon.md │ │ │ │ ├── V1LastTrade.md │ │ │ │ ├── V1ListingItem.md │ │ │ │ ├── V1Metric.md │ │ │ │ ├── V1MetricData.md │ │ │ │ ├── V1MetricInfo.md │ │ │ │ ├── V1OrderBook.md │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ ├── V1Quote.md │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ ├── V1Symbol.md │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ └── V1Trade.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── api.dart │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.dart │ │ │ │ │ ├── metadata_api.dart │ │ │ │ │ ├── metrics_v1_api.dart │ │ │ │ │ ├── metrics_v2_api.dart │ │ │ │ │ ├── ohlcv_api.dart │ │ │ │ │ ├── options_api.dart │ │ │ │ │ ├── order_book_api.dart │ │ │ │ │ ├── order_book_l3_api.dart │ │ │ │ │ ├── quotes_api.dart │ │ │ │ │ └── trades_api.dart │ │ │ │ ├── api_client.dart │ │ │ │ ├── api_exception.dart │ │ │ │ ├── api_helper.dart │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── authentication.dart │ │ │ │ │ ├── http_basic_auth.dart │ │ │ │ │ ├── http_bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ └── model │ │ │ │ │ ├── models_exchange_timeseries_item.dart │ │ │ │ │ ├── options_option_exchange_group.dart │ │ │ │ │ ├── options_strike.dart │ │ │ │ │ ├── v1_asset.dart │ │ │ │ │ ├── v1_chain.dart │ │ │ │ │ ├── v1_chain_network_address.dart │ │ │ │ │ ├── v1_exchange.dart │ │ │ │ │ ├── v1_exchange_rate.dart │ │ │ │ │ ├── v1_exchange_rates.dart │ │ │ │ │ ├── v1_exchange_rates_rate.dart │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.dart │ │ │ │ │ ├── v1_general_data.dart │ │ │ │ │ ├── v1_icon.dart │ │ │ │ │ ├── v1_last_trade.dart │ │ │ │ │ ├── v1_listing_item.dart │ │ │ │ │ ├── v1_metric.dart │ │ │ │ │ ├── v1_metric_data.dart │ │ │ │ │ ├── v1_metric_info.dart │ │ │ │ │ ├── v1_order_book.dart │ │ │ │ │ ├── v1_order_book_base.dart │ │ │ │ │ ├── v1_order_book_depth.dart │ │ │ │ │ ├── v1_quote.dart │ │ │ │ │ ├── v1_quote_trade.dart │ │ │ │ │ ├── v1_symbol.dart │ │ │ │ │ ├── v1_symbol_mapping.dart │ │ │ │ │ ├── v1_timeseries_item.dart │ │ │ │ │ ├── v1_timeseries_period.dart │ │ │ │ │ └── v1_trade.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── exchange_rates_api_test.dart │ │ │ │ ├── metadata_api_test.dart │ │ │ │ ├── metrics_v1_api_test.dart │ │ │ │ ├── metrics_v2_api_test.dart │ │ │ │ ├── models_exchange_timeseries_item_test.dart │ │ │ │ ├── ohlcv_api_test.dart │ │ │ │ ├── options_api_test.dart │ │ │ │ ├── options_option_exchange_group_test.dart │ │ │ │ ├── options_strike_test.dart │ │ │ │ ├── order_book_api_test.dart │ │ │ │ ├── order_book_l3_api_test.dart │ │ │ │ ├── quotes_api_test.dart │ │ │ │ ├── trades_api_test.dart │ │ │ │ ├── v1_asset_test.dart │ │ │ │ ├── v1_chain_network_address_test.dart │ │ │ │ ├── v1_chain_test.dart │ │ │ │ ├── v1_exchange_rate_test.dart │ │ │ │ ├── v1_exchange_rates_rate_test.dart │ │ │ │ ├── v1_exchange_rates_test.dart │ │ │ │ ├── v1_exchange_rates_timeseries_item_test.dart │ │ │ │ ├── v1_exchange_test.dart │ │ │ │ ├── v1_general_data_test.dart │ │ │ │ ├── v1_icon_test.dart │ │ │ │ ├── v1_last_trade_test.dart │ │ │ │ ├── v1_listing_item_test.dart │ │ │ │ ├── v1_metric_data_test.dart │ │ │ │ ├── v1_metric_info_test.dart │ │ │ │ ├── v1_metric_test.dart │ │ │ │ ├── v1_order_book_base_test.dart │ │ │ │ ├── v1_order_book_depth_test.dart │ │ │ │ ├── v1_order_book_test.dart │ │ │ │ ├── v1_quote_test.dart │ │ │ │ ├── v1_quote_trade_test.dart │ │ │ │ ├── v1_symbol_mapping_test.dart │ │ │ │ ├── v1_symbol_test.dart │ │ │ │ ├── v1_timeseries_item_test.dart │ │ │ │ ├── v1_timeseries_period_test.dart │ │ │ │ └── v1_trade_test.dart │ │ ├── eiffel │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api_client.ecf │ │ │ ├── docs │ │ │ │ ├── EXCHANGERATES_API.md │ │ │ │ ├── METADATA_API.md │ │ │ │ ├── METRICSV1_API.md │ │ │ │ ├── METRICSV2_API.md │ │ │ │ ├── MODELS_EXCHANGE_TIMESERIES_ITEM.md │ │ │ │ ├── OHLCV_API.md │ │ │ │ ├── OPTIONS_API.md │ │ │ │ ├── OPTIONS_OPTION_EXCHANGE_GROUP.md │ │ │ │ ├── OPTIONS_STRIKE.md │ │ │ │ ├── ORDERBOOKL3_API.md │ │ │ │ ├── ORDERBOOK_API.md │ │ │ │ ├── QUOTES_API.md │ │ │ │ ├── TRADES_API.md │ │ │ │ ├── V1_ASSET.md │ │ │ │ ├── V1_CHAIN.md │ │ │ │ ├── V1_CHAIN_NETWORK_ADDRESS.md │ │ │ │ ├── V1_EXCHANGE.md │ │ │ │ ├── V1_EXCHANGE_RATE.md │ │ │ │ ├── V1_EXCHANGE_RATES.md │ │ │ │ ├── V1_EXCHANGE_RATES_RATE.md │ │ │ │ ├── V1_EXCHANGE_RATES_TIMESERIES_ITEM.md │ │ │ │ ├── V1_GENERAL_DATA.md │ │ │ │ ├── V1_ICON.md │ │ │ │ ├── V1_LAST_TRADE.md │ │ │ │ ├── V1_LISTING_ITEM.md │ │ │ │ ├── V1_METRIC.md │ │ │ │ ├── V1_METRIC_DATA.md │ │ │ │ ├── V1_METRIC_INFO.md │ │ │ │ ├── V1_ORDER_BOOK.md │ │ │ │ ├── V1_ORDER_BOOK_BASE.md │ │ │ │ ├── V1_ORDER_BOOK_DEPTH.md │ │ │ │ ├── V1_QUOTE.md │ │ │ │ ├── V1_QUOTE_TRADE.md │ │ │ │ ├── V1_SYMBOL.md │ │ │ │ ├── V1_SYMBOL_MAPPING.md │ │ │ │ ├── V1_TIMESERIES_ITEM.md │ │ │ │ ├── V1_TIMESERIES_PERIOD.md │ │ │ │ └── V1_TRADE.md │ │ │ ├── src │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.e │ │ │ │ │ ├── metadata_api.e │ │ │ │ │ ├── metrics_v1_api.e │ │ │ │ │ ├── metrics_v2_api.e │ │ │ │ │ ├── ohlcv_api.e │ │ │ │ │ ├── options_api.e │ │ │ │ │ ├── order_book_api.e │ │ │ │ │ ├── order_book_l3_api.e │ │ │ │ │ ├── quotes_api.e │ │ │ │ │ └── trades_api.e │ │ │ │ ├── api_client.e │ │ │ │ ├── domain │ │ │ │ │ ├── models_exchange_timeseries_item.e │ │ │ │ │ ├── options_option_exchange_group.e │ │ │ │ │ ├── options_strike.e │ │ │ │ │ ├── v1_asset.e │ │ │ │ │ ├── v1_chain.e │ │ │ │ │ ├── v1_chain_network_address.e │ │ │ │ │ ├── v1_exchange.e │ │ │ │ │ ├── v1_exchange_rate.e │ │ │ │ │ ├── v1_exchange_rates.e │ │ │ │ │ ├── v1_exchange_rates_rate.e │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.e │ │ │ │ │ ├── v1_general_data.e │ │ │ │ │ ├── v1_icon.e │ │ │ │ │ ├── v1_last_trade.e │ │ │ │ │ ├── v1_listing_item.e │ │ │ │ │ ├── v1_metric.e │ │ │ │ │ ├── v1_metric_data.e │ │ │ │ │ ├── v1_metric_info.e │ │ │ │ │ ├── v1_order_book.e │ │ │ │ │ ├── v1_order_book_base.e │ │ │ │ │ ├── v1_order_book_depth.e │ │ │ │ │ ├── v1_quote.e │ │ │ │ │ ├── v1_quote_trade.e │ │ │ │ │ ├── v1_symbol.e │ │ │ │ │ ├── v1_symbol_mapping.e │ │ │ │ │ ├── v1_timeseries_item.e │ │ │ │ │ ├── v1_timeseries_period.e │ │ │ │ │ └── v1_trade.e │ │ │ │ └── framework │ │ │ │ │ ├── api_client_request.e │ │ │ │ │ ├── api_client_response.e │ │ │ │ │ ├── api_error.e │ │ │ │ │ ├── api_i.e │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.e │ │ │ │ │ ├── authentication.e │ │ │ │ │ ├── http_basic_auth.e │ │ │ │ │ └── oauth.e │ │ │ │ │ ├── configuration.e │ │ │ │ │ └── serialization │ │ │ │ │ ├── api_deserializer.e │ │ │ │ │ ├── api_json_deserializer.e │ │ │ │ │ ├── api_json_serializer.e │ │ │ │ │ ├── api_serializer.e │ │ │ │ │ ├── json_basic_reflector_deserializer.e │ │ │ │ │ └── json_type_utilities_ext.e │ │ │ └── test │ │ │ │ ├── api_test.ecf │ │ │ │ ├── apis │ │ │ │ ├── exchangerates_api_test.e │ │ │ │ ├── metadata_api_test.e │ │ │ │ ├── metricsv1_api_test.e │ │ │ │ ├── metricsv2_api_test.e │ │ │ │ ├── ohlcv_api_test.e │ │ │ │ ├── options_api_test.e │ │ │ │ ├── orderbook_api_test.e │ │ │ │ ├── orderbookl3_api_test.e │ │ │ │ ├── quotes_api_test.e │ │ │ │ └── trades_api_test.e │ │ │ │ └── application.e │ │ ├── elixir │ │ │ ├── .formatter.exs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ ├── config.exs │ │ │ │ └── runtime.exs │ │ │ ├── lib │ │ │ │ └── coin_api_market_data_restapi │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates.ex │ │ │ │ │ ├── metadata.ex │ │ │ │ │ ├── metrics_v1.ex │ │ │ │ │ ├── metrics_v2.ex │ │ │ │ │ ├── ohlcv.ex │ │ │ │ │ ├── options.ex │ │ │ │ │ ├── order_book.ex │ │ │ │ │ ├── order_book_l3.ex │ │ │ │ │ ├── quotes.ex │ │ │ │ │ └── trades.ex │ │ │ │ │ ├── connection.ex │ │ │ │ │ ├── deserializer.ex │ │ │ │ │ ├── model │ │ │ │ │ ├── models_exchange_timeseries_item.ex │ │ │ │ │ ├── options_option_exchange_group.ex │ │ │ │ │ ├── options_strike.ex │ │ │ │ │ ├── v1_asset.ex │ │ │ │ │ ├── v1_chain.ex │ │ │ │ │ ├── v1_chain_network_address.ex │ │ │ │ │ ├── v1_exchange.ex │ │ │ │ │ ├── v1_exchange_rate.ex │ │ │ │ │ ├── v1_exchange_rates.ex │ │ │ │ │ ├── v1_exchange_rates_rate.ex │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.ex │ │ │ │ │ ├── v1_general_data.ex │ │ │ │ │ ├── v1_icon.ex │ │ │ │ │ ├── v1_last_trade.ex │ │ │ │ │ ├── v1_listing_item.ex │ │ │ │ │ ├── v1_metric.ex │ │ │ │ │ ├── v1_metric_data.ex │ │ │ │ │ ├── v1_metric_info.ex │ │ │ │ │ ├── v1_order_book.ex │ │ │ │ │ ├── v1_order_book_base.ex │ │ │ │ │ ├── v1_order_book_depth.ex │ │ │ │ │ ├── v1_quote.ex │ │ │ │ │ ├── v1_quote_trade.ex │ │ │ │ │ ├── v1_symbol.ex │ │ │ │ │ ├── v1_symbol_mapping.ex │ │ │ │ │ ├── v1_timeseries_item.ex │ │ │ │ │ ├── v1_timeseries_period.ex │ │ │ │ │ └── v1_trade.ex │ │ │ │ │ └── request_builder.ex │ │ │ ├── mix.exs │ │ │ └── test │ │ │ │ └── test_helper.exs │ │ ├── elm │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ ├── Api.elm │ │ │ │ └── Api │ │ │ │ ├── Data.elm │ │ │ │ ├── Request │ │ │ │ ├── ExchangeRates.elm │ │ │ │ ├── Metadata.elm │ │ │ │ ├── MetricsV1.elm │ │ │ │ ├── MetricsV2.elm │ │ │ │ ├── Ohlcv.elm │ │ │ │ ├── Options.elm │ │ │ │ ├── OrderBook.elm │ │ │ │ ├── OrderBookL3.elm │ │ │ │ ├── Quotes.elm │ │ │ │ └── Trades.elm │ │ │ │ └── Time.elm │ │ ├── erlang-client │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ └── src │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi_exchange_rates_api.erl │ │ │ │ ├── openapi_metadata_api.erl │ │ │ │ ├── openapi_metrics_v1_api.erl │ │ │ │ ├── openapi_metrics_v2_api.erl │ │ │ │ ├── openapi_models_exchange_timeseries_item.erl │ │ │ │ ├── openapi_ohlcv_api.erl │ │ │ │ ├── openapi_options_api.erl │ │ │ │ ├── openapi_options_option_exchange_group.erl │ │ │ │ ├── openapi_options_strike.erl │ │ │ │ ├── openapi_order_book_api.erl │ │ │ │ ├── openapi_order_book_l3_api.erl │ │ │ │ ├── openapi_quotes_api.erl │ │ │ │ ├── openapi_trades_api.erl │ │ │ │ ├── openapi_utils.erl │ │ │ │ ├── openapi_v1_asset.erl │ │ │ │ ├── openapi_v1_chain.erl │ │ │ │ ├── openapi_v1_chain_network_address.erl │ │ │ │ ├── openapi_v1_exchange.erl │ │ │ │ ├── openapi_v1_exchange_rate.erl │ │ │ │ ├── openapi_v1_exchange_rates.erl │ │ │ │ ├── openapi_v1_exchange_rates_rate.erl │ │ │ │ ├── openapi_v1_exchange_rates_timeseries_item.erl │ │ │ │ ├── openapi_v1_general_data.erl │ │ │ │ ├── openapi_v1_icon.erl │ │ │ │ ├── openapi_v1_last_trade.erl │ │ │ │ ├── openapi_v1_listing_item.erl │ │ │ │ ├── openapi_v1_metric.erl │ │ │ │ ├── openapi_v1_metric_data.erl │ │ │ │ ├── openapi_v1_metric_info.erl │ │ │ │ ├── openapi_v1_order_book.erl │ │ │ │ ├── openapi_v1_order_book_base.erl │ │ │ │ ├── openapi_v1_order_book_depth.erl │ │ │ │ ├── openapi_v1_quote.erl │ │ │ │ ├── openapi_v1_quote_trade.erl │ │ │ │ ├── openapi_v1_symbol.erl │ │ │ │ ├── openapi_v1_symbol_mapping.erl │ │ │ │ ├── openapi_v1_timeseries_item.erl │ │ │ │ ├── openapi_v1_timeseries_period.erl │ │ │ │ └── openapi_v1_trade.erl │ │ ├── erlang-proper │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ ├── src │ │ │ │ ├── model │ │ │ │ │ ├── openapi_models_exchange_timeseries_item.erl │ │ │ │ │ ├── openapi_options_option_exchange_group.erl │ │ │ │ │ ├── openapi_options_strike.erl │ │ │ │ │ ├── openapi_v1_asset.erl │ │ │ │ │ ├── openapi_v1_chain.erl │ │ │ │ │ ├── openapi_v1_chain_network_address.erl │ │ │ │ │ ├── openapi_v1_exchange.erl │ │ │ │ │ ├── openapi_v1_exchange_rate.erl │ │ │ │ │ ├── openapi_v1_exchange_rates.erl │ │ │ │ │ ├── openapi_v1_exchange_rates_rate.erl │ │ │ │ │ ├── openapi_v1_exchange_rates_timeseries_item.erl │ │ │ │ │ ├── openapi_v1_general_data.erl │ │ │ │ │ ├── openapi_v1_icon.erl │ │ │ │ │ ├── openapi_v1_last_trade.erl │ │ │ │ │ ├── openapi_v1_listing_item.erl │ │ │ │ │ ├── openapi_v1_metric.erl │ │ │ │ │ ├── openapi_v1_metric_data.erl │ │ │ │ │ ├── openapi_v1_metric_info.erl │ │ │ │ │ ├── openapi_v1_order_book.erl │ │ │ │ │ ├── openapi_v1_order_book_base.erl │ │ │ │ │ ├── openapi_v1_order_book_depth.erl │ │ │ │ │ ├── openapi_v1_quote.erl │ │ │ │ │ ├── openapi_v1_quote_trade.erl │ │ │ │ │ ├── openapi_v1_symbol.erl │ │ │ │ │ ├── openapi_v1_symbol_mapping.erl │ │ │ │ │ ├── openapi_v1_timeseries_item.erl │ │ │ │ │ ├── openapi_v1_timeseries_period.erl │ │ │ │ │ └── openapi_v1_trade.erl │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi.hrl │ │ │ │ ├── openapi_api.erl │ │ │ │ ├── openapi_gen.erl │ │ │ │ ├── openapi_statem.erl │ │ │ │ ├── openapi_statem.hrl │ │ │ │ └── openapi_utils.erl │ │ │ └── test │ │ │ │ └── prop_openapi.erl │ │ ├── go │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── api_exchange_rates.go │ │ │ ├── api_metadata.go │ │ │ ├── api_metrics_v1.go │ │ │ ├── api_metrics_v2.go │ │ │ ├── api_ohlcv.go │ │ │ ├── api_options.go │ │ │ ├── api_order_book.go │ │ │ ├── api_order_book_l3.go │ │ │ ├── api_quotes.go │ │ │ ├── api_trades.go │ │ │ ├── client.go │ │ │ ├── configuration.go │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesAPI.md │ │ │ │ ├── MetadataAPI.md │ │ │ │ ├── MetricsV1API.md │ │ │ │ ├── MetricsV2API.md │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ ├── OhlcvAPI.md │ │ │ │ ├── OptionsAPI.md │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ ├── OptionsStrike.md │ │ │ │ ├── OrderBookAPI.md │ │ │ │ ├── OrderBookL3API.md │ │ │ │ ├── QuotesAPI.md │ │ │ │ ├── TradesAPI.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1Chain.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1Exchange.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1GeneralData.md │ │ │ │ ├── V1Icon.md │ │ │ │ ├── V1LastTrade.md │ │ │ │ ├── V1ListingItem.md │ │ │ │ ├── V1Metric.md │ │ │ │ ├── V1MetricData.md │ │ │ │ ├── V1MetricInfo.md │ │ │ │ ├── V1OrderBook.md │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ ├── V1Quote.md │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ ├── V1Symbol.md │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ └── V1Trade.md │ │ │ ├── git_push.sh │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── model_models_exchange_timeseries_item.go │ │ │ ├── model_options_option_exchange_group.go │ │ │ ├── model_options_strike.go │ │ │ ├── model_v1_asset.go │ │ │ ├── model_v1_chain.go │ │ │ ├── model_v1_chain_network_address.go │ │ │ ├── model_v1_exchange.go │ │ │ ├── model_v1_exchange_rate.go │ │ │ ├── model_v1_exchange_rates.go │ │ │ ├── model_v1_exchange_rates_rate.go │ │ │ ├── model_v1_exchange_rates_timeseries_item.go │ │ │ ├── model_v1_general_data.go │ │ │ ├── model_v1_icon.go │ │ │ ├── model_v1_last_trade.go │ │ │ ├── model_v1_listing_item.go │ │ │ ├── model_v1_metric.go │ │ │ ├── model_v1_metric_data.go │ │ │ ├── model_v1_metric_info.go │ │ │ ├── model_v1_order_book.go │ │ │ ├── model_v1_order_book_base.go │ │ │ ├── model_v1_order_book_depth.go │ │ │ ├── model_v1_quote.go │ │ │ ├── model_v1_quote_trade.go │ │ │ ├── model_v1_symbol.go │ │ │ ├── model_v1_symbol_mapping.go │ │ │ ├── model_v1_timeseries_item.go │ │ │ ├── model_v1_timeseries_period.go │ │ │ ├── model_v1_trade.go │ │ │ ├── response.go │ │ │ ├── test │ │ │ │ ├── api_exchange_rates_test.go │ │ │ │ ├── api_metadata_test.go │ │ │ │ ├── api_metrics_v1_test.go │ │ │ │ ├── api_metrics_v2_test.go │ │ │ │ ├── api_ohlcv_test.go │ │ │ │ ├── api_options_test.go │ │ │ │ ├── api_order_book_l3_test.go │ │ │ │ ├── api_order_book_test.go │ │ │ │ ├── api_quotes_test.go │ │ │ │ └── api_trades_test.go │ │ │ └── utils.go │ │ ├── groovy │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ ├── api │ │ │ │ ├── ApiUtils.groovy │ │ │ │ ├── ExchangeRatesApi.groovy │ │ │ │ ├── MetadataApi.groovy │ │ │ │ ├── MetricsV1Api.groovy │ │ │ │ ├── MetricsV2Api.groovy │ │ │ │ ├── OhlcvApi.groovy │ │ │ │ ├── OptionsApi.groovy │ │ │ │ ├── OrderBookApi.groovy │ │ │ │ ├── OrderBookL3Api.groovy │ │ │ │ ├── QuotesApi.groovy │ │ │ │ └── TradesApi.groovy │ │ │ │ └── model │ │ │ │ ├── ModelsExchangeTimeseriesItem.groovy │ │ │ │ ├── OptionsOptionExchangeGroup.groovy │ │ │ │ ├── OptionsStrike.groovy │ │ │ │ ├── V1Asset.groovy │ │ │ │ ├── V1Chain.groovy │ │ │ │ ├── V1ChainNetworkAddress.groovy │ │ │ │ ├── V1Exchange.groovy │ │ │ │ ├── V1ExchangeRate.groovy │ │ │ │ ├── V1ExchangeRates.groovy │ │ │ │ ├── V1ExchangeRatesRate.groovy │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.groovy │ │ │ │ ├── V1GeneralData.groovy │ │ │ │ ├── V1Icon.groovy │ │ │ │ ├── V1LastTrade.groovy │ │ │ │ ├── V1ListingItem.groovy │ │ │ │ ├── V1Metric.groovy │ │ │ │ ├── V1MetricData.groovy │ │ │ │ ├── V1MetricInfo.groovy │ │ │ │ ├── V1OrderBook.groovy │ │ │ │ ├── V1OrderBookBase.groovy │ │ │ │ ├── V1OrderBookDepth.groovy │ │ │ │ ├── V1Quote.groovy │ │ │ │ ├── V1QuoteTrade.groovy │ │ │ │ ├── V1Symbol.groovy │ │ │ │ ├── V1SymbolMapping.groovy │ │ │ │ ├── V1TimeseriesItem.groovy │ │ │ │ ├── V1TimeseriesPeriod.groovy │ │ │ │ └── V1Trade.groovy │ │ ├── haskell-http-client │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── Setup.hs │ │ │ ├── coinapi-market-data-rest.cabal │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── CoinAPIMarketDataREST.hs │ │ │ │ └── CoinAPIMarketDataREST │ │ │ │ │ ├── API.hs │ │ │ │ │ ├── API │ │ │ │ │ ├── ExchangeRates.hs │ │ │ │ │ ├── Metadata.hs │ │ │ │ │ ├── MetricsV1.hs │ │ │ │ │ ├── MetricsV2.hs │ │ │ │ │ ├── Ohlcv.hs │ │ │ │ │ ├── Options.hs │ │ │ │ │ ├── OrderBook.hs │ │ │ │ │ ├── OrderBookL3.hs │ │ │ │ │ ├── Quotes.hs │ │ │ │ │ └── Trades.hs │ │ │ │ │ ├── Client.hs │ │ │ │ │ ├── Core.hs │ │ │ │ │ ├── Logging.hs │ │ │ │ │ ├── LoggingKatip.hs │ │ │ │ │ ├── LoggingMonadLogger.hs │ │ │ │ │ ├── MimeTypes.hs │ │ │ │ │ ├── Model.hs │ │ │ │ │ └── ModelLens.hs │ │ │ ├── openapi.yaml │ │ │ ├── stack.yaml │ │ │ └── tests │ │ │ │ ├── ApproxEq.hs │ │ │ │ ├── Instances.hs │ │ │ │ ├── PropMime.hs │ │ │ │ └── Test.hs │ │ ├── java │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── maven.yml │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── build.gradle │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetricsV1Api.md │ │ │ │ ├── MetricsV2Api.md │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ ├── OhlcvApi.md │ │ │ │ ├── OptionsApi.md │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ ├── OptionsStrike.md │ │ │ │ ├── OrderBookApi.md │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ ├── QuotesApi.md │ │ │ │ ├── TradesApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1Chain.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1Exchange.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1GeneralData.md │ │ │ │ ├── V1Icon.md │ │ │ │ ├── V1LastTrade.md │ │ │ │ ├── V1ListingItem.md │ │ │ │ ├── V1Metric.md │ │ │ │ ├── V1MetricData.md │ │ │ │ ├── V1MetricInfo.md │ │ │ │ ├── V1OrderBook.md │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ ├── V1Quote.md │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ ├── V1Symbol.md │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ └── V1Trade.md │ │ │ ├── git_push.sh │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── ApiCallback.java │ │ │ │ │ ├── ApiClient.java │ │ │ │ │ ├── ApiException.java │ │ │ │ │ ├── ApiResponse.java │ │ │ │ │ ├── Configuration.java │ │ │ │ │ ├── GzipRequestInterceptor.java │ │ │ │ │ ├── JSON.java │ │ │ │ │ ├── Pair.java │ │ │ │ │ ├── ProgressRequestBody.java │ │ │ │ │ ├── ProgressResponseBody.java │ │ │ │ │ ├── ServerConfiguration.java │ │ │ │ │ ├── ServerVariable.java │ │ │ │ │ ├── StringUtil.java │ │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.java │ │ │ │ │ ├── MetadataApi.java │ │ │ │ │ ├── MetricsV1Api.java │ │ │ │ │ ├── MetricsV2Api.java │ │ │ │ │ ├── OhlcvApi.java │ │ │ │ │ ├── OptionsApi.java │ │ │ │ │ ├── OrderBookApi.java │ │ │ │ │ ├── OrderBookL3Api.java │ │ │ │ │ ├── QuotesApi.java │ │ │ │ │ └── TradesApi.java │ │ │ │ │ ├── auth │ │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ │ ├── Authentication.java │ │ │ │ │ ├── HttpBasicAuth.java │ │ │ │ │ └── HttpBearerAuth.java │ │ │ │ │ └── model │ │ │ │ │ ├── AbstractOpenApiSchema.java │ │ │ │ │ ├── ModelsExchangeTimeseriesItem.java │ │ │ │ │ ├── OptionsOptionExchangeGroup.java │ │ │ │ │ ├── OptionsStrike.java │ │ │ │ │ ├── V1Asset.java │ │ │ │ │ ├── V1Chain.java │ │ │ │ │ ├── V1ChainNetworkAddress.java │ │ │ │ │ ├── V1Exchange.java │ │ │ │ │ ├── V1ExchangeRate.java │ │ │ │ │ ├── V1ExchangeRates.java │ │ │ │ │ ├── V1ExchangeRatesRate.java │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.java │ │ │ │ │ ├── V1GeneralData.java │ │ │ │ │ ├── V1Icon.java │ │ │ │ │ ├── V1LastTrade.java │ │ │ │ │ ├── V1ListingItem.java │ │ │ │ │ ├── V1Metric.java │ │ │ │ │ ├── V1MetricData.java │ │ │ │ │ ├── V1MetricInfo.java │ │ │ │ │ ├── V1OrderBook.java │ │ │ │ │ ├── V1OrderBookBase.java │ │ │ │ │ ├── V1OrderBookDepth.java │ │ │ │ │ ├── V1Quote.java │ │ │ │ │ ├── V1QuoteTrade.java │ │ │ │ │ ├── V1Symbol.java │ │ │ │ │ ├── V1SymbolMapping.java │ │ │ │ │ ├── V1TimeseriesItem.java │ │ │ │ │ ├── V1TimeseriesPeriod.java │ │ │ │ │ └── V1Trade.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApiTest.java │ │ │ │ ├── MetadataApiTest.java │ │ │ │ ├── MetricsV1ApiTest.java │ │ │ │ ├── MetricsV2ApiTest.java │ │ │ │ ├── OhlcvApiTest.java │ │ │ │ ├── OptionsApiTest.java │ │ │ │ ├── OrderBookApiTest.java │ │ │ │ ├── OrderBookL3ApiTest.java │ │ │ │ ├── QuotesApiTest.java │ │ │ │ └── TradesApiTest.java │ │ │ │ └── model │ │ │ │ ├── ModelsExchangeTimeseriesItemTest.java │ │ │ │ ├── OptionsOptionExchangeGroupTest.java │ │ │ │ ├── OptionsStrikeTest.java │ │ │ │ ├── V1AssetTest.java │ │ │ │ ├── V1ChainNetworkAddressTest.java │ │ │ │ ├── V1ChainTest.java │ │ │ │ ├── V1ExchangeRateTest.java │ │ │ │ ├── V1ExchangeRatesRateTest.java │ │ │ │ ├── V1ExchangeRatesTest.java │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTest.java │ │ │ │ ├── V1ExchangeTest.java │ │ │ │ ├── V1GeneralDataTest.java │ │ │ │ ├── V1IconTest.java │ │ │ │ ├── V1LastTradeTest.java │ │ │ │ ├── V1ListingItemTest.java │ │ │ │ ├── V1MetricDataTest.java │ │ │ │ ├── V1MetricInfoTest.java │ │ │ │ ├── V1MetricTest.java │ │ │ │ ├── V1OrderBookBaseTest.java │ │ │ │ ├── V1OrderBookDepthTest.java │ │ │ │ ├── V1OrderBookTest.java │ │ │ │ ├── V1QuoteTest.java │ │ │ │ ├── V1QuoteTradeTest.java │ │ │ │ ├── V1SymbolMappingTest.java │ │ │ │ ├── V1SymbolTest.java │ │ │ │ ├── V1TimeseriesItemTest.java │ │ │ │ ├── V1TimeseriesPeriodTest.java │ │ │ │ └── V1TradeTest.java │ │ ├── javascript-closure-angular │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ └── API │ │ │ │ └── Client │ │ │ │ ├── ExchangeRatesApi.js │ │ │ │ ├── MetadataApi.js │ │ │ │ ├── MetricsV1Api.js │ │ │ │ ├── MetricsV2Api.js │ │ │ │ ├── ModelsExchangeTimeseriesItem.js │ │ │ │ ├── OhlcvApi.js │ │ │ │ ├── OptionsApi.js │ │ │ │ ├── OptionsOptionExchangeGroup.js │ │ │ │ ├── OptionsStrike.js │ │ │ │ ├── OrderBookApi.js │ │ │ │ ├── OrderBookL3Api.js │ │ │ │ ├── QuotesApi.js │ │ │ │ ├── TradesApi.js │ │ │ │ ├── V1Asset.js │ │ │ │ ├── V1Chain.js │ │ │ │ ├── V1ChainNetworkAddress.js │ │ │ │ ├── V1Exchange.js │ │ │ │ ├── V1ExchangeRate.js │ │ │ │ ├── V1ExchangeRates.js │ │ │ │ ├── V1ExchangeRatesRate.js │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.js │ │ │ │ ├── V1GeneralData.js │ │ │ │ ├── V1Icon.js │ │ │ │ ├── V1LastTrade.js │ │ │ │ ├── V1ListingItem.js │ │ │ │ ├── V1Metric.js │ │ │ │ ├── V1MetricData.js │ │ │ │ ├── V1MetricInfo.js │ │ │ │ ├── V1OrderBook.js │ │ │ │ ├── V1OrderBookBase.js │ │ │ │ ├── V1OrderBookDepth.js │ │ │ │ ├── V1Quote.js │ │ │ │ ├── V1QuoteTrade.js │ │ │ │ ├── V1Symbol.js │ │ │ │ ├── V1SymbolMapping.js │ │ │ │ ├── V1TimeseriesItem.js │ │ │ │ ├── V1TimeseriesPeriod.js │ │ │ │ └── V1Trade.js │ │ ├── javascript-flowtyped │ │ │ ├── .babelrc │ │ │ ├── .flowconfig │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── api.js │ │ │ │ ├── configuration.js │ │ │ │ └── index.js │ │ ├── javascript │ │ │ ├── .babelrc │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetricsV1Api.md │ │ │ │ ├── MetricsV2Api.md │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ ├── OhlcvApi.md │ │ │ │ ├── OptionsApi.md │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ ├── OptionsStrike.md │ │ │ │ ├── OrderBookApi.md │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ ├── QuotesApi.md │ │ │ │ ├── TradesApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1Chain.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1Exchange.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1GeneralData.md │ │ │ │ ├── V1Icon.md │ │ │ │ ├── V1LastTrade.md │ │ │ │ ├── V1ListingItem.md │ │ │ │ ├── V1Metric.md │ │ │ │ ├── V1MetricData.md │ │ │ │ ├── V1MetricInfo.md │ │ │ │ ├── V1OrderBook.md │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ ├── V1Quote.md │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ ├── V1Symbol.md │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ └── V1Trade.md │ │ │ ├── git_push.sh │ │ │ ├── mocha.opts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── ApiClient.js │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.js │ │ │ │ │ ├── MetadataApi.js │ │ │ │ │ ├── MetricsV1Api.js │ │ │ │ │ ├── MetricsV2Api.js │ │ │ │ │ ├── OhlcvApi.js │ │ │ │ │ ├── OptionsApi.js │ │ │ │ │ ├── OrderBookApi.js │ │ │ │ │ ├── OrderBookL3Api.js │ │ │ │ │ ├── QuotesApi.js │ │ │ │ │ └── TradesApi.js │ │ │ │ ├── index.js │ │ │ │ └── model │ │ │ │ │ ├── ModelsExchangeTimeseriesItem.js │ │ │ │ │ ├── OptionsOptionExchangeGroup.js │ │ │ │ │ ├── OptionsStrike.js │ │ │ │ │ ├── V1Asset.js │ │ │ │ │ ├── V1Chain.js │ │ │ │ │ ├── V1ChainNetworkAddress.js │ │ │ │ │ ├── V1Exchange.js │ │ │ │ │ ├── V1ExchangeRate.js │ │ │ │ │ ├── V1ExchangeRates.js │ │ │ │ │ ├── V1ExchangeRatesRate.js │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.js │ │ │ │ │ ├── V1GeneralData.js │ │ │ │ │ ├── V1Icon.js │ │ │ │ │ ├── V1LastTrade.js │ │ │ │ │ ├── V1ListingItem.js │ │ │ │ │ ├── V1Metric.js │ │ │ │ │ ├── V1MetricData.js │ │ │ │ │ ├── V1MetricInfo.js │ │ │ │ │ ├── V1OrderBook.js │ │ │ │ │ ├── V1OrderBookBase.js │ │ │ │ │ ├── V1OrderBookDepth.js │ │ │ │ │ ├── V1Quote.js │ │ │ │ │ ├── V1QuoteTrade.js │ │ │ │ │ ├── V1Symbol.js │ │ │ │ │ ├── V1SymbolMapping.js │ │ │ │ │ ├── V1TimeseriesItem.js │ │ │ │ │ ├── V1TimeseriesPeriod.js │ │ │ │ │ └── V1Trade.js │ │ │ └── test │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.spec.js │ │ │ │ ├── MetadataApi.spec.js │ │ │ │ ├── MetricsV1Api.spec.js │ │ │ │ ├── MetricsV2Api.spec.js │ │ │ │ ├── OhlcvApi.spec.js │ │ │ │ ├── OptionsApi.spec.js │ │ │ │ ├── OrderBookApi.spec.js │ │ │ │ ├── OrderBookL3Api.spec.js │ │ │ │ ├── QuotesApi.spec.js │ │ │ │ └── TradesApi.spec.js │ │ │ │ └── model │ │ │ │ ├── ModelsExchangeTimeseriesItem.spec.js │ │ │ │ ├── OptionsOptionExchangeGroup.spec.js │ │ │ │ ├── OptionsStrike.spec.js │ │ │ │ ├── V1Asset.spec.js │ │ │ │ ├── V1Chain.spec.js │ │ │ │ ├── V1ChainNetworkAddress.spec.js │ │ │ │ ├── V1Exchange.spec.js │ │ │ │ ├── V1ExchangeRate.spec.js │ │ │ │ ├── V1ExchangeRates.spec.js │ │ │ │ ├── V1ExchangeRatesRate.spec.js │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.spec.js │ │ │ │ ├── V1GeneralData.spec.js │ │ │ │ ├── V1Icon.spec.js │ │ │ │ ├── V1LastTrade.spec.js │ │ │ │ ├── V1ListingItem.spec.js │ │ │ │ ├── V1Metric.spec.js │ │ │ │ ├── V1MetricData.spec.js │ │ │ │ ├── V1MetricInfo.spec.js │ │ │ │ ├── V1OrderBook.spec.js │ │ │ │ ├── V1OrderBookBase.spec.js │ │ │ │ ├── V1OrderBookDepth.spec.js │ │ │ │ ├── V1Quote.spec.js │ │ │ │ ├── V1QuoteTrade.spec.js │ │ │ │ ├── V1Symbol.spec.js │ │ │ │ ├── V1SymbolMapping.spec.js │ │ │ │ ├── V1TimeseriesItem.spec.js │ │ │ │ ├── V1TimeseriesPeriod.spec.js │ │ │ │ └── V1Trade.spec.js │ │ ├── kotlin │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetricsV1Api.md │ │ │ │ ├── MetricsV2Api.md │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ ├── OhlcvApi.md │ │ │ │ ├── OptionsApi.md │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ ├── OptionsStrike.md │ │ │ │ ├── OrderBookApi.md │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ ├── QuotesApi.md │ │ │ │ ├── TradesApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1Chain.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1Exchange.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1GeneralData.md │ │ │ │ ├── V1Icon.md │ │ │ │ ├── V1LastTrade.md │ │ │ │ ├── V1ListingItem.md │ │ │ │ ├── V1Metric.md │ │ │ │ ├── V1MetricData.md │ │ │ │ ├── V1MetricInfo.md │ │ │ │ ├── V1OrderBook.md │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ ├── V1Quote.md │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ ├── V1Symbol.md │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ └── V1Trade.md │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── apis │ │ │ │ │ ├── ExchangeRatesApi.kt │ │ │ │ │ ├── MetadataApi.kt │ │ │ │ │ ├── MetricsV1Api.kt │ │ │ │ │ ├── MetricsV2Api.kt │ │ │ │ │ ├── OhlcvApi.kt │ │ │ │ │ ├── OptionsApi.kt │ │ │ │ │ ├── OrderBookApi.kt │ │ │ │ │ ├── OrderBookL3Api.kt │ │ │ │ │ ├── QuotesApi.kt │ │ │ │ │ └── TradesApi.kt │ │ │ │ │ ├── infrastructure │ │ │ │ │ ├── ApiAbstractions.kt │ │ │ │ │ ├── ApiClient.kt │ │ │ │ │ ├── ApiResponse.kt │ │ │ │ │ ├── BigDecimalAdapter.kt │ │ │ │ │ ├── BigIntegerAdapter.kt │ │ │ │ │ ├── ByteArrayAdapter.kt │ │ │ │ │ ├── Errors.kt │ │ │ │ │ ├── LocalDateAdapter.kt │ │ │ │ │ ├── LocalDateTimeAdapter.kt │ │ │ │ │ ├── OffsetDateTimeAdapter.kt │ │ │ │ │ ├── PartConfig.kt │ │ │ │ │ ├── RequestConfig.kt │ │ │ │ │ ├── RequestMethod.kt │ │ │ │ │ ├── ResponseExtensions.kt │ │ │ │ │ ├── Serializer.kt │ │ │ │ │ ├── URIAdapter.kt │ │ │ │ │ └── UUIDAdapter.kt │ │ │ │ │ └── models │ │ │ │ │ ├── ModelsExchangeTimeseriesItem.kt │ │ │ │ │ ├── OptionsOptionExchangeGroup.kt │ │ │ │ │ ├── OptionsStrike.kt │ │ │ │ │ ├── V1Asset.kt │ │ │ │ │ ├── V1Chain.kt │ │ │ │ │ ├── V1ChainNetworkAddress.kt │ │ │ │ │ ├── V1Exchange.kt │ │ │ │ │ ├── V1ExchangeRate.kt │ │ │ │ │ ├── V1ExchangeRates.kt │ │ │ │ │ ├── V1ExchangeRatesRate.kt │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.kt │ │ │ │ │ ├── V1GeneralData.kt │ │ │ │ │ ├── V1Icon.kt │ │ │ │ │ ├── V1LastTrade.kt │ │ │ │ │ ├── V1ListingItem.kt │ │ │ │ │ ├── V1Metric.kt │ │ │ │ │ ├── V1MetricData.kt │ │ │ │ │ ├── V1MetricInfo.kt │ │ │ │ │ ├── V1OrderBook.kt │ │ │ │ │ ├── V1OrderBookBase.kt │ │ │ │ │ ├── V1OrderBookDepth.kt │ │ │ │ │ ├── V1Quote.kt │ │ │ │ │ ├── V1QuoteTrade.kt │ │ │ │ │ ├── V1Symbol.kt │ │ │ │ │ ├── V1SymbolMapping.kt │ │ │ │ │ ├── V1TimeseriesItem.kt │ │ │ │ │ ├── V1TimeseriesPeriod.kt │ │ │ │ │ └── V1Trade.kt │ │ │ │ └── test │ │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── apis │ │ │ │ ├── ExchangeRatesApiTest.kt │ │ │ │ ├── MetadataApiTest.kt │ │ │ │ ├── MetricsV1ApiTest.kt │ │ │ │ ├── MetricsV2ApiTest.kt │ │ │ │ ├── OhlcvApiTest.kt │ │ │ │ ├── OptionsApiTest.kt │ │ │ │ ├── OrderBookApiTest.kt │ │ │ │ ├── OrderBookL3ApiTest.kt │ │ │ │ ├── QuotesApiTest.kt │ │ │ │ └── TradesApiTest.kt │ │ │ │ └── models │ │ │ │ ├── ModelsExchangeTimeseriesItemTest.kt │ │ │ │ ├── OptionsOptionExchangeGroupTest.kt │ │ │ │ ├── OptionsStrikeTest.kt │ │ │ │ ├── V1AssetTest.kt │ │ │ │ ├── V1ChainNetworkAddressTest.kt │ │ │ │ ├── V1ChainTest.kt │ │ │ │ ├── V1ExchangeRateTest.kt │ │ │ │ ├── V1ExchangeRatesRateTest.kt │ │ │ │ ├── V1ExchangeRatesTest.kt │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTest.kt │ │ │ │ ├── V1ExchangeTest.kt │ │ │ │ ├── V1GeneralDataTest.kt │ │ │ │ ├── V1IconTest.kt │ │ │ │ ├── V1LastTradeTest.kt │ │ │ │ ├── V1ListingItemTest.kt │ │ │ │ ├── V1MetricDataTest.kt │ │ │ │ ├── V1MetricInfoTest.kt │ │ │ │ ├── V1MetricTest.kt │ │ │ │ ├── V1OrderBookBaseTest.kt │ │ │ │ ├── V1OrderBookDepthTest.kt │ │ │ │ ├── V1OrderBookTest.kt │ │ │ │ ├── V1QuoteTest.kt │ │ │ │ ├── V1QuoteTradeTest.kt │ │ │ │ ├── V1SymbolMappingTest.kt │ │ │ │ ├── V1SymbolTest.kt │ │ │ │ ├── V1TimeseriesItemTest.kt │ │ │ │ ├── V1TimeseriesPeriodTest.kt │ │ │ │ └── V1TradeTest.kt │ │ ├── lua │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── openapiclient-1.0.0-1.rockspec │ │ │ ├── openapiclient │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.lua │ │ │ │ │ ├── metadata_api.lua │ │ │ │ │ ├── metrics_v1_api.lua │ │ │ │ │ ├── metrics_v2_api.lua │ │ │ │ │ ├── ohlcv_api.lua │ │ │ │ │ ├── options_api.lua │ │ │ │ │ ├── order_book_api.lua │ │ │ │ │ ├── order_book_l3_api.lua │ │ │ │ │ ├── quotes_api.lua │ │ │ │ │ └── trades_api.lua │ │ │ │ └── model │ │ │ │ │ ├── models_exchange_timeseries_item.lua │ │ │ │ │ ├── options_option_exchange_group.lua │ │ │ │ │ ├── options_strike.lua │ │ │ │ │ ├── v1_asset.lua │ │ │ │ │ ├── v1_chain.lua │ │ │ │ │ ├── v1_chain_network_address.lua │ │ │ │ │ ├── v1_exchange.lua │ │ │ │ │ ├── v1_exchange_rate.lua │ │ │ │ │ ├── v1_exchange_rates.lua │ │ │ │ │ ├── v1_exchange_rates_rate.lua │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.lua │ │ │ │ │ ├── v1_general_data.lua │ │ │ │ │ ├── v1_icon.lua │ │ │ │ │ ├── v1_last_trade.lua │ │ │ │ │ ├── v1_listing_item.lua │ │ │ │ │ ├── v1_metric.lua │ │ │ │ │ ├── v1_metric_data.lua │ │ │ │ │ ├── v1_metric_info.lua │ │ │ │ │ ├── v1_order_book.lua │ │ │ │ │ ├── v1_order_book_base.lua │ │ │ │ │ ├── v1_order_book_depth.lua │ │ │ │ │ ├── v1_quote.lua │ │ │ │ │ ├── v1_quote_trade.lua │ │ │ │ │ ├── v1_symbol.lua │ │ │ │ │ ├── v1_symbol_mapping.lua │ │ │ │ │ ├── v1_timeseries_item.lua │ │ │ │ │ ├── v1_timeseries_period.lua │ │ │ │ │ └── v1_trade.lua │ │ │ └── spec │ │ │ │ ├── exchange_rates_api_spec.lua │ │ │ │ ├── metadata_api_spec.lua │ │ │ │ ├── metrics_v1_api_spec.lua │ │ │ │ ├── metrics_v2_api_spec.lua │ │ │ │ ├── models_exchange_timeseries_item_spec.lua │ │ │ │ ├── ohlcv_api_spec.lua │ │ │ │ ├── options_api_spec.lua │ │ │ │ ├── options_option_exchange_group_spec.lua │ │ │ │ ├── options_strike_spec.lua │ │ │ │ ├── order_book_api_spec.lua │ │ │ │ ├── order_book_l3_api_spec.lua │ │ │ │ ├── quotes_api_spec.lua │ │ │ │ ├── trades_api_spec.lua │ │ │ │ ├── v1_asset_spec.lua │ │ │ │ ├── v1_chain_network_address_spec.lua │ │ │ │ ├── v1_chain_spec.lua │ │ │ │ ├── v1_exchange_rate_spec.lua │ │ │ │ ├── v1_exchange_rates_rate_spec.lua │ │ │ │ ├── v1_exchange_rates_spec.lua │ │ │ │ ├── v1_exchange_rates_timeseries_item_spec.lua │ │ │ │ ├── v1_exchange_spec.lua │ │ │ │ ├── v1_general_data_spec.lua │ │ │ │ ├── v1_icon_spec.lua │ │ │ │ ├── v1_last_trade_spec.lua │ │ │ │ ├── v1_listing_item_spec.lua │ │ │ │ ├── v1_metric_data_spec.lua │ │ │ │ ├── v1_metric_info_spec.lua │ │ │ │ ├── v1_metric_spec.lua │ │ │ │ ├── v1_order_book_base_spec.lua │ │ │ │ ├── v1_order_book_depth_spec.lua │ │ │ │ ├── v1_order_book_spec.lua │ │ │ │ ├── v1_quote_spec.lua │ │ │ │ ├── v1_quote_trade_spec.lua │ │ │ │ ├── v1_symbol_mapping_spec.lua │ │ │ │ ├── v1_symbol_spec.lua │ │ │ │ ├── v1_timeseries_item_spec.lua │ │ │ │ ├── v1_timeseries_period_spec.lua │ │ │ │ └── v1_trade_spec.lua │ │ ├── perl │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── autodoc │ │ │ ├── cpanfile │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetricsV1Api.md │ │ │ │ ├── MetricsV2Api.md │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ ├── OhlcvApi.md │ │ │ │ ├── OptionsApi.md │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ ├── OptionsStrike.md │ │ │ │ ├── OrderBookApi.md │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ ├── QuotesApi.md │ │ │ │ ├── TradesApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1Chain.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1Exchange.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1GeneralData.md │ │ │ │ ├── V1Icon.md │ │ │ │ ├── V1LastTrade.md │ │ │ │ ├── V1ListingItem.md │ │ │ │ ├── V1Metric.md │ │ │ │ ├── V1MetricData.md │ │ │ │ ├── V1MetricInfo.md │ │ │ │ ├── V1OrderBook.md │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ ├── V1Quote.md │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ ├── V1Symbol.md │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ └── V1Trade.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ └── WWW │ │ │ │ │ └── OpenAPIClient │ │ │ │ │ ├── ApiClient.pm │ │ │ │ │ ├── ApiFactory.pm │ │ │ │ │ ├── Configuration.pm │ │ │ │ │ ├── ExchangeRatesApi.pm │ │ │ │ │ ├── MetadataApi.pm │ │ │ │ │ ├── MetricsV1Api.pm │ │ │ │ │ ├── MetricsV2Api.pm │ │ │ │ │ ├── Object │ │ │ │ │ ├── ModelsExchangeTimeseriesItem.pm │ │ │ │ │ ├── OptionsOptionExchangeGroup.pm │ │ │ │ │ ├── OptionsStrike.pm │ │ │ │ │ ├── V1Asset.pm │ │ │ │ │ ├── V1Chain.pm │ │ │ │ │ ├── V1ChainNetworkAddress.pm │ │ │ │ │ ├── V1Exchange.pm │ │ │ │ │ ├── V1ExchangeRate.pm │ │ │ │ │ ├── V1ExchangeRates.pm │ │ │ │ │ ├── V1ExchangeRatesRate.pm │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.pm │ │ │ │ │ ├── V1GeneralData.pm │ │ │ │ │ ├── V1Icon.pm │ │ │ │ │ ├── V1LastTrade.pm │ │ │ │ │ ├── V1ListingItem.pm │ │ │ │ │ ├── V1Metric.pm │ │ │ │ │ ├── V1MetricData.pm │ │ │ │ │ ├── V1MetricInfo.pm │ │ │ │ │ ├── V1OrderBook.pm │ │ │ │ │ ├── V1OrderBookBase.pm │ │ │ │ │ ├── V1OrderBookDepth.pm │ │ │ │ │ ├── V1Quote.pm │ │ │ │ │ ├── V1QuoteTrade.pm │ │ │ │ │ ├── V1Symbol.pm │ │ │ │ │ ├── V1SymbolMapping.pm │ │ │ │ │ ├── V1TimeseriesItem.pm │ │ │ │ │ ├── V1TimeseriesPeriod.pm │ │ │ │ │ └── V1Trade.pm │ │ │ │ │ ├── OhlcvApi.pm │ │ │ │ │ ├── OptionsApi.pm │ │ │ │ │ ├── OrderBookApi.pm │ │ │ │ │ ├── OrderBookL3Api.pm │ │ │ │ │ ├── QuotesApi.pm │ │ │ │ │ ├── Role.pm │ │ │ │ │ ├── Role │ │ │ │ │ └── AutoDoc.pm │ │ │ │ │ └── TradesApi.pm │ │ │ └── t │ │ │ │ ├── ExchangeRatesApiTest.t │ │ │ │ ├── MetadataApiTest.t │ │ │ │ ├── MetricsV1ApiTest.t │ │ │ │ ├── MetricsV2ApiTest.t │ │ │ │ ├── ModelsExchangeTimeseriesItemTest.t │ │ │ │ ├── OhlcvApiTest.t │ │ │ │ ├── OptionsApiTest.t │ │ │ │ ├── OptionsOptionExchangeGroupTest.t │ │ │ │ ├── OptionsStrikeTest.t │ │ │ │ ├── OrderBookApiTest.t │ │ │ │ ├── OrderBookL3ApiTest.t │ │ │ │ ├── QuotesApiTest.t │ │ │ │ ├── TradesApiTest.t │ │ │ │ ├── V1AssetTest.t │ │ │ │ ├── V1ChainNetworkAddressTest.t │ │ │ │ ├── V1ChainTest.t │ │ │ │ ├── V1ExchangeRateTest.t │ │ │ │ ├── V1ExchangeRatesRateTest.t │ │ │ │ ├── V1ExchangeRatesTest.t │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTest.t │ │ │ │ ├── V1ExchangeTest.t │ │ │ │ ├── V1GeneralDataTest.t │ │ │ │ ├── V1IconTest.t │ │ │ │ ├── V1LastTradeTest.t │ │ │ │ ├── V1ListingItemTest.t │ │ │ │ ├── V1MetricDataTest.t │ │ │ │ ├── V1MetricInfoTest.t │ │ │ │ ├── V1MetricTest.t │ │ │ │ ├── V1OrderBookBaseTest.t │ │ │ │ ├── V1OrderBookDepthTest.t │ │ │ │ ├── V1OrderBookTest.t │ │ │ │ ├── V1QuoteTest.t │ │ │ │ ├── V1QuoteTradeTest.t │ │ │ │ ├── V1SymbolMappingTest.t │ │ │ │ ├── V1SymbolTest.t │ │ │ │ ├── V1TimeseriesItemTest.t │ │ │ │ ├── V1TimeseriesPeriodTest.t │ │ │ │ └── V1TradeTest.t │ │ ├── php │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ ├── MetadataApi.md │ │ │ │ │ ├── MetricsV1Api.md │ │ │ │ │ ├── MetricsV2Api.md │ │ │ │ │ ├── OhlcvApi.md │ │ │ │ │ ├── OptionsApi.md │ │ │ │ │ ├── OrderBookApi.md │ │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ │ ├── QuotesApi.md │ │ │ │ │ └── TradesApi.md │ │ │ │ └── Model │ │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ │ ├── OptionsStrike.md │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1Chain.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1Exchange.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ │ ├── V1GeneralData.md │ │ │ │ │ ├── V1Icon.md │ │ │ │ │ ├── V1LastTrade.md │ │ │ │ │ ├── V1ListingItem.md │ │ │ │ │ ├── V1Metric.md │ │ │ │ │ ├── V1MetricData.md │ │ │ │ │ ├── V1MetricInfo.md │ │ │ │ │ ├── V1OrderBook.md │ │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ │ ├── V1Quote.md │ │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ │ ├── V1Symbol.md │ │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ │ └── V1Trade.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.php │ │ │ │ │ ├── MetadataApi.php │ │ │ │ │ ├── MetricsV1Api.php │ │ │ │ │ ├── MetricsV2Api.php │ │ │ │ │ ├── OhlcvApi.php │ │ │ │ │ ├── OptionsApi.php │ │ │ │ │ ├── OrderBookApi.php │ │ │ │ │ ├── OrderBookL3Api.php │ │ │ │ │ ├── QuotesApi.php │ │ │ │ │ └── TradesApi.php │ │ │ │ ├── ApiException.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── FormDataProcessor.php │ │ │ │ ├── HeaderSelector.php │ │ │ │ ├── Model │ │ │ │ │ ├── ModelInterface.php │ │ │ │ │ ├── ModelsExchangeTimeseriesItem.php │ │ │ │ │ ├── OptionsOptionExchangeGroup.php │ │ │ │ │ ├── OptionsStrike.php │ │ │ │ │ ├── V1Asset.php │ │ │ │ │ ├── V1Chain.php │ │ │ │ │ ├── V1ChainNetworkAddress.php │ │ │ │ │ ├── V1Exchange.php │ │ │ │ │ ├── V1ExchangeRate.php │ │ │ │ │ ├── V1ExchangeRates.php │ │ │ │ │ ├── V1ExchangeRatesRate.php │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.php │ │ │ │ │ ├── V1GeneralData.php │ │ │ │ │ ├── V1Icon.php │ │ │ │ │ ├── V1LastTrade.php │ │ │ │ │ ├── V1ListingItem.php │ │ │ │ │ ├── V1Metric.php │ │ │ │ │ ├── V1MetricData.php │ │ │ │ │ ├── V1MetricInfo.php │ │ │ │ │ ├── V1OrderBook.php │ │ │ │ │ ├── V1OrderBookBase.php │ │ │ │ │ ├── V1OrderBookDepth.php │ │ │ │ │ ├── V1Quote.php │ │ │ │ │ ├── V1QuoteTrade.php │ │ │ │ │ ├── V1Symbol.php │ │ │ │ │ ├── V1SymbolMapping.php │ │ │ │ │ ├── V1TimeseriesItem.php │ │ │ │ │ ├── V1TimeseriesPeriod.php │ │ │ │ │ └── V1Trade.php │ │ │ │ └── ObjectSerializer.php │ │ │ ├── phpunit.xml.dist │ │ │ └── test │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApiTest.php │ │ │ │ ├── MetadataApiTest.php │ │ │ │ ├── MetricsV1ApiTest.php │ │ │ │ ├── MetricsV2ApiTest.php │ │ │ │ ├── OhlcvApiTest.php │ │ │ │ ├── OptionsApiTest.php │ │ │ │ ├── OrderBookApiTest.php │ │ │ │ ├── OrderBookL3ApiTest.php │ │ │ │ ├── QuotesApiTest.php │ │ │ │ └── TradesApiTest.php │ │ │ │ └── Model │ │ │ │ ├── ModelsExchangeTimeseriesItemTest.php │ │ │ │ ├── OptionsOptionExchangeGroupTest.php │ │ │ │ ├── OptionsStrikeTest.php │ │ │ │ ├── V1AssetTest.php │ │ │ │ ├── V1ChainNetworkAddressTest.php │ │ │ │ ├── V1ChainTest.php │ │ │ │ ├── V1ExchangeRateTest.php │ │ │ │ ├── V1ExchangeRatesRateTest.php │ │ │ │ ├── V1ExchangeRatesTest.php │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTest.php │ │ │ │ ├── V1ExchangeTest.php │ │ │ │ ├── V1GeneralDataTest.php │ │ │ │ ├── V1IconTest.php │ │ │ │ ├── V1LastTradeTest.php │ │ │ │ ├── V1ListingItemTest.php │ │ │ │ ├── V1MetricDataTest.php │ │ │ │ ├── V1MetricInfoTest.php │ │ │ │ ├── V1MetricTest.php │ │ │ │ ├── V1OrderBookBaseTest.php │ │ │ │ ├── V1OrderBookDepthTest.php │ │ │ │ ├── V1OrderBookTest.php │ │ │ │ ├── V1QuoteTest.php │ │ │ │ ├── V1QuoteTradeTest.php │ │ │ │ ├── V1SymbolMappingTest.php │ │ │ │ ├── V1SymbolTest.php │ │ │ │ ├── V1TimeseriesItemTest.php │ │ │ │ ├── V1TimeseriesPeriodTest.php │ │ │ │ └── V1TradeTest.php │ │ ├── powershell │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Build.ps1 │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetricsV1Api.md │ │ │ │ ├── MetricsV2Api.md │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ ├── OhlcvApi.md │ │ │ │ ├── OptionsApi.md │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ ├── OptionsStrike.md │ │ │ │ ├── OrderBookApi.md │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ ├── QuotesApi.md │ │ │ │ ├── TradesApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1Chain.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1Exchange.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1GeneralData.md │ │ │ │ ├── V1Icon.md │ │ │ │ ├── V1LastTrade.md │ │ │ │ ├── V1ListingItem.md │ │ │ │ ├── V1Metric.md │ │ │ │ ├── V1MetricData.md │ │ │ │ ├── V1MetricInfo.md │ │ │ │ ├── V1OrderBook.md │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ ├── V1Quote.md │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ ├── V1Symbol.md │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ └── V1Trade.md │ │ │ ├── src │ │ │ │ └── PSOpenAPITools │ │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.ps1 │ │ │ │ │ ├── MetadataApi.ps1 │ │ │ │ │ ├── MetricsV1Api.ps1 │ │ │ │ │ ├── MetricsV2Api.ps1 │ │ │ │ │ ├── OhlcvApi.ps1 │ │ │ │ │ ├── OptionsApi.ps1 │ │ │ │ │ ├── OrderBookApi.ps1 │ │ │ │ │ ├── OrderBookL3Api.ps1 │ │ │ │ │ ├── QuotesApi.ps1 │ │ │ │ │ └── TradesApi.ps1 │ │ │ │ │ ├── Client │ │ │ │ │ └── Configuration.ps1 │ │ │ │ │ ├── Model │ │ │ │ │ ├── ModelsExchangeTimeseriesItem.ps1 │ │ │ │ │ ├── OptionsOptionExchangeGroup.ps1 │ │ │ │ │ ├── OptionsStrike.ps1 │ │ │ │ │ ├── V1Asset.ps1 │ │ │ │ │ ├── V1Chain.ps1 │ │ │ │ │ ├── V1ChainNetworkAddress.ps1 │ │ │ │ │ ├── V1Exchange.ps1 │ │ │ │ │ ├── V1ExchangeRate.ps1 │ │ │ │ │ ├── V1ExchangeRates.ps1 │ │ │ │ │ ├── V1ExchangeRatesRate.ps1 │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.ps1 │ │ │ │ │ ├── V1GeneralData.ps1 │ │ │ │ │ ├── V1Icon.ps1 │ │ │ │ │ ├── V1LastTrade.ps1 │ │ │ │ │ ├── V1ListingItem.ps1 │ │ │ │ │ ├── V1Metric.ps1 │ │ │ │ │ ├── V1MetricData.ps1 │ │ │ │ │ ├── V1MetricInfo.ps1 │ │ │ │ │ ├── V1OrderBook.ps1 │ │ │ │ │ ├── V1OrderBookBase.ps1 │ │ │ │ │ ├── V1OrderBookDepth.ps1 │ │ │ │ │ ├── V1Quote.ps1 │ │ │ │ │ ├── V1QuoteTrade.ps1 │ │ │ │ │ ├── V1Symbol.ps1 │ │ │ │ │ ├── V1SymbolMapping.ps1 │ │ │ │ │ ├── V1TimeseriesItem.ps1 │ │ │ │ │ ├── V1TimeseriesPeriod.ps1 │ │ │ │ │ └── V1Trade.ps1 │ │ │ │ │ ├── PSOpenAPITools.psm1 │ │ │ │ │ ├── Private │ │ │ │ │ ├── ApiClient.ps1 │ │ │ │ │ ├── Get-CommonParameters.ps1 │ │ │ │ │ ├── HttpSignatureAuth.ps1 │ │ │ │ │ ├── Out-DebugParameter.ps1 │ │ │ │ │ └── RSAEncryptionProvider.cs │ │ │ │ │ └── en-US │ │ │ │ │ └── about_PSOpenAPITools.help.txt │ │ │ └── tests │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApi.Tests.ps1 │ │ │ │ ├── MetadataApi.Tests.ps1 │ │ │ │ ├── MetricsV1Api.Tests.ps1 │ │ │ │ ├── MetricsV2Api.Tests.ps1 │ │ │ │ ├── OhlcvApi.Tests.ps1 │ │ │ │ ├── OptionsApi.Tests.ps1 │ │ │ │ ├── OrderBookApi.Tests.ps1 │ │ │ │ ├── OrderBookL3Api.Tests.ps1 │ │ │ │ ├── QuotesApi.Tests.ps1 │ │ │ │ └── TradesApi.Tests.ps1 │ │ │ │ └── Model │ │ │ │ ├── ModelsExchangeTimeseriesItem.Tests.ps1 │ │ │ │ ├── OptionsOptionExchangeGroup.Tests.ps1 │ │ │ │ ├── OptionsStrike.Tests.ps1 │ │ │ │ ├── V1Asset.Tests.ps1 │ │ │ │ ├── V1Chain.Tests.ps1 │ │ │ │ ├── V1ChainNetworkAddress.Tests.ps1 │ │ │ │ ├── V1Exchange.Tests.ps1 │ │ │ │ ├── V1ExchangeRate.Tests.ps1 │ │ │ │ ├── V1ExchangeRates.Tests.ps1 │ │ │ │ ├── V1ExchangeRatesRate.Tests.ps1 │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.Tests.ps1 │ │ │ │ ├── V1GeneralData.Tests.ps1 │ │ │ │ ├── V1Icon.Tests.ps1 │ │ │ │ ├── V1LastTrade.Tests.ps1 │ │ │ │ ├── V1ListingItem.Tests.ps1 │ │ │ │ ├── V1Metric.Tests.ps1 │ │ │ │ ├── V1MetricData.Tests.ps1 │ │ │ │ ├── V1MetricInfo.Tests.ps1 │ │ │ │ ├── V1OrderBook.Tests.ps1 │ │ │ │ ├── V1OrderBookBase.Tests.ps1 │ │ │ │ ├── V1OrderBookDepth.Tests.ps1 │ │ │ │ ├── V1Quote.Tests.ps1 │ │ │ │ ├── V1QuoteTrade.Tests.ps1 │ │ │ │ ├── V1Symbol.Tests.ps1 │ │ │ │ ├── V1SymbolMapping.Tests.ps1 │ │ │ │ ├── V1TimeseriesItem.Tests.ps1 │ │ │ │ ├── V1TimeseriesPeriod.Tests.ps1 │ │ │ │ └── V1Trade.Tests.ps1 │ │ ├── python │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api_bricks_coinapi_market_data_api_rest │ │ │ │ ├── __init__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exchange_rates_api.py │ │ │ │ │ ├── metadata_api.py │ │ │ │ │ ├── metrics_v1_api.py │ │ │ │ │ ├── metrics_v2_api.py │ │ │ │ │ ├── ohlcv_api.py │ │ │ │ │ ├── options_api.py │ │ │ │ │ ├── order_book_api.py │ │ │ │ │ ├── order_book_l3_api.py │ │ │ │ │ ├── quotes_api.py │ │ │ │ │ └── trades_api.py │ │ │ │ ├── api_client.py │ │ │ │ ├── api_response.py │ │ │ │ ├── configuration.py │ │ │ │ ├── docs │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ ├── MetadataApi.md │ │ │ │ │ ├── MetricsV1Api.md │ │ │ │ │ ├── MetricsV2Api.md │ │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ │ ├── OhlcvApi.md │ │ │ │ │ ├── OptionsApi.md │ │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ │ ├── OptionsStrike.md │ │ │ │ │ ├── OrderBookApi.md │ │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ │ ├── QuotesApi.md │ │ │ │ │ ├── TradesApi.md │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1Chain.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1Exchange.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ │ ├── V1GeneralData.md │ │ │ │ │ ├── V1Icon.md │ │ │ │ │ ├── V1LastTrade.md │ │ │ │ │ ├── V1ListingItem.md │ │ │ │ │ ├── V1Metric.md │ │ │ │ │ ├── V1MetricData.md │ │ │ │ │ ├── V1MetricInfo.md │ │ │ │ │ ├── V1OrderBook.md │ │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ │ ├── V1Quote.md │ │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ │ ├── V1Symbol.md │ │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ │ └── V1Trade.md │ │ │ │ ├── exceptions.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── models_exchange_timeseries_item.py │ │ │ │ │ ├── options_option_exchange_group.py │ │ │ │ │ ├── options_strike.py │ │ │ │ │ ├── v1_asset.py │ │ │ │ │ ├── v1_chain.py │ │ │ │ │ ├── v1_chain_network_address.py │ │ │ │ │ ├── v1_exchange.py │ │ │ │ │ ├── v1_exchange_rate.py │ │ │ │ │ ├── v1_exchange_rates.py │ │ │ │ │ ├── v1_exchange_rates_rate.py │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.py │ │ │ │ │ ├── v1_general_data.py │ │ │ │ │ ├── v1_icon.py │ │ │ │ │ ├── v1_last_trade.py │ │ │ │ │ ├── v1_listing_item.py │ │ │ │ │ ├── v1_metric.py │ │ │ │ │ ├── v1_metric_data.py │ │ │ │ │ ├── v1_metric_info.py │ │ │ │ │ ├── v1_order_book.py │ │ │ │ │ ├── v1_order_book_base.py │ │ │ │ │ ├── v1_order_book_depth.py │ │ │ │ │ ├── v1_quote.py │ │ │ │ │ ├── v1_quote_trade.py │ │ │ │ │ ├── v1_symbol.py │ │ │ │ │ ├── v1_symbol_mapping.py │ │ │ │ │ ├── v1_timeseries_item.py │ │ │ │ │ ├── v1_timeseries_period.py │ │ │ │ │ └── v1_trade.py │ │ │ │ ├── rest.py │ │ │ │ └── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_exchange_rates_api.py │ │ │ │ │ ├── test_metadata_api.py │ │ │ │ │ ├── test_metrics_v1_api.py │ │ │ │ │ ├── test_metrics_v2_api.py │ │ │ │ │ ├── test_models_exchange_timeseries_item.py │ │ │ │ │ ├── test_ohlcv_api.py │ │ │ │ │ ├── test_options_api.py │ │ │ │ │ ├── test_options_option_exchange_group.py │ │ │ │ │ ├── test_options_strike.py │ │ │ │ │ ├── test_order_book_api.py │ │ │ │ │ ├── test_order_book_l3_api.py │ │ │ │ │ ├── test_quotes_api.py │ │ │ │ │ ├── test_trades_api.py │ │ │ │ │ ├── test_v1_asset.py │ │ │ │ │ ├── test_v1_chain.py │ │ │ │ │ ├── test_v1_chain_network_address.py │ │ │ │ │ ├── test_v1_exchange.py │ │ │ │ │ ├── test_v1_exchange_rate.py │ │ │ │ │ ├── test_v1_exchange_rates.py │ │ │ │ │ ├── test_v1_exchange_rates_rate.py │ │ │ │ │ ├── test_v1_exchange_rates_timeseries_item.py │ │ │ │ │ ├── test_v1_general_data.py │ │ │ │ │ ├── test_v1_icon.py │ │ │ │ │ ├── test_v1_last_trade.py │ │ │ │ │ ├── test_v1_listing_item.py │ │ │ │ │ ├── test_v1_metric.py │ │ │ │ │ ├── test_v1_metric_data.py │ │ │ │ │ ├── test_v1_metric_info.py │ │ │ │ │ ├── test_v1_order_book.py │ │ │ │ │ ├── test_v1_order_book_base.py │ │ │ │ │ ├── test_v1_order_book_depth.py │ │ │ │ │ ├── test_v1_quote.py │ │ │ │ │ ├── test_v1_quote_trade.py │ │ │ │ │ ├── test_v1_symbol.py │ │ │ │ │ ├── test_v1_symbol_mapping.py │ │ │ │ │ ├── test_v1_timeseries_item.py │ │ │ │ │ ├── test_v1_timeseries_period.py │ │ │ │ │ └── test_v1_trade.py │ │ │ └── api_bricks_coinapi_market_data_api_rest_README.md │ │ ├── r │ │ │ ├── .Rbuildignore │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── r-client.yaml │ │ │ ├── .gitignore │ │ │ ├── .lintr │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── api_client.R │ │ │ │ ├── api_response.R │ │ │ │ ├── exchange_rates_api.R │ │ │ │ ├── metadata_api.R │ │ │ │ ├── metrics_v1_api.R │ │ │ │ ├── metrics_v2_api.R │ │ │ │ ├── models_exchange_timeseries_item.R │ │ │ │ ├── ohlcv_api.R │ │ │ │ ├── options_api.R │ │ │ │ ├── options_option_exchange_group.R │ │ │ │ ├── options_strike.R │ │ │ │ ├── order_book_api.R │ │ │ │ ├── order_book_l3_api.R │ │ │ │ ├── quotes_api.R │ │ │ │ ├── trades_api.R │ │ │ │ ├── v1_asset.R │ │ │ │ ├── v1_chain.R │ │ │ │ ├── v1_chain_network_address.R │ │ │ │ ├── v1_exchange.R │ │ │ │ ├── v1_exchange_rate.R │ │ │ │ ├── v1_exchange_rates.R │ │ │ │ ├── v1_exchange_rates_rate.R │ │ │ │ ├── v1_exchange_rates_timeseries_item.R │ │ │ │ ├── v1_general_data.R │ │ │ │ ├── v1_icon.R │ │ │ │ ├── v1_last_trade.R │ │ │ │ ├── v1_listing_item.R │ │ │ │ ├── v1_metric.R │ │ │ │ ├── v1_metric_data.R │ │ │ │ ├── v1_metric_info.R │ │ │ │ ├── v1_order_book.R │ │ │ │ ├── v1_order_book_base.R │ │ │ │ ├── v1_order_book_depth.R │ │ │ │ ├── v1_quote.R │ │ │ │ ├── v1_quote_trade.R │ │ │ │ ├── v1_symbol.R │ │ │ │ ├── v1_symbol_mapping.R │ │ │ │ ├── v1_timeseries_item.R │ │ │ │ ├── v1_timeseries_period.R │ │ │ │ └── v1_trade.R │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetricsV1Api.md │ │ │ │ ├── MetricsV2Api.md │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ ├── OhlcvApi.md │ │ │ │ ├── OptionsApi.md │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ ├── OptionsStrike.md │ │ │ │ ├── OrderBookApi.md │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ ├── QuotesApi.md │ │ │ │ ├── TradesApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1Chain.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1Exchange.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1GeneralData.md │ │ │ │ ├── V1Icon.md │ │ │ │ ├── V1LastTrade.md │ │ │ │ ├── V1ListingItem.md │ │ │ │ ├── V1Metric.md │ │ │ │ ├── V1MetricData.md │ │ │ │ ├── V1MetricInfo.md │ │ │ │ ├── V1OrderBook.md │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ ├── V1Quote.md │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ ├── V1Symbol.md │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ └── V1Trade.md │ │ │ ├── git_push.sh │ │ │ └── tests │ │ │ │ ├── testthat.R │ │ │ │ └── testthat │ │ │ │ ├── test_exchange_rates_api.R │ │ │ │ ├── test_metadata_api.R │ │ │ │ ├── test_metrics_v1_api.R │ │ │ │ ├── test_metrics_v2_api.R │ │ │ │ ├── test_models_exchange_timeseries_item.R │ │ │ │ ├── test_ohlcv_api.R │ │ │ │ ├── test_options_api.R │ │ │ │ ├── test_options_option_exchange_group.R │ │ │ │ ├── test_options_strike.R │ │ │ │ ├── test_order_book_api.R │ │ │ │ ├── test_order_book_l3_api.R │ │ │ │ ├── test_quotes_api.R │ │ │ │ ├── test_trades_api.R │ │ │ │ ├── test_v1_asset.R │ │ │ │ ├── test_v1_chain.R │ │ │ │ ├── test_v1_chain_network_address.R │ │ │ │ ├── test_v1_exchange.R │ │ │ │ ├── test_v1_exchange_rate.R │ │ │ │ ├── test_v1_exchange_rates.R │ │ │ │ ├── test_v1_exchange_rates_rate.R │ │ │ │ ├── test_v1_exchange_rates_timeseries_item.R │ │ │ │ ├── test_v1_general_data.R │ │ │ │ ├── test_v1_icon.R │ │ │ │ ├── test_v1_last_trade.R │ │ │ │ ├── test_v1_listing_item.R │ │ │ │ ├── test_v1_metric.R │ │ │ │ ├── test_v1_metric_data.R │ │ │ │ ├── test_v1_metric_info.R │ │ │ │ ├── test_v1_order_book.R │ │ │ │ ├── test_v1_order_book_base.R │ │ │ │ ├── test_v1_order_book_depth.R │ │ │ │ ├── test_v1_quote.R │ │ │ │ ├── test_v1_quote_trade.R │ │ │ │ ├── test_v1_symbol.R │ │ │ │ ├── test_v1_symbol_mapping.R │ │ │ │ ├── test_v1_timeseries_item.R │ │ │ │ ├── test_v1_timeseries_period.R │ │ │ │ └── test_v1_trade.R │ │ ├── ruby │ │ │ ├── .gitignore │ │ │ ├── .gitlab-ci.yml │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .rspec │ │ │ ├── .rubocop.yml │ │ │ ├── .travis.yml │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetricsV1Api.md │ │ │ │ ├── MetricsV2Api.md │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ ├── OhlcvApi.md │ │ │ │ ├── OptionsApi.md │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ ├── OptionsStrike.md │ │ │ │ ├── OrderBookApi.md │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ ├── QuotesApi.md │ │ │ │ ├── TradesApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1Chain.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1Exchange.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1GeneralData.md │ │ │ │ ├── V1Icon.md │ │ │ │ ├── V1LastTrade.md │ │ │ │ ├── V1ListingItem.md │ │ │ │ ├── V1Metric.md │ │ │ │ ├── V1MetricData.md │ │ │ │ ├── V1MetricInfo.md │ │ │ │ ├── V1OrderBook.md │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ ├── V1Quote.md │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ ├── V1Symbol.md │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ └── V1Trade.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── openapi_client.rb │ │ │ │ └── openapi_client │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.rb │ │ │ │ │ ├── metadata_api.rb │ │ │ │ │ ├── metrics_v1_api.rb │ │ │ │ │ ├── metrics_v2_api.rb │ │ │ │ │ ├── ohlcv_api.rb │ │ │ │ │ ├── options_api.rb │ │ │ │ │ ├── order_book_api.rb │ │ │ │ │ ├── order_book_l3_api.rb │ │ │ │ │ ├── quotes_api.rb │ │ │ │ │ └── trades_api.rb │ │ │ │ │ ├── api_client.rb │ │ │ │ │ ├── api_error.rb │ │ │ │ │ ├── api_model_base.rb │ │ │ │ │ ├── configuration.rb │ │ │ │ │ ├── models │ │ │ │ │ ├── models_exchange_timeseries_item.rb │ │ │ │ │ ├── options_option_exchange_group.rb │ │ │ │ │ ├── options_strike.rb │ │ │ │ │ ├── v1_asset.rb │ │ │ │ │ ├── v1_chain.rb │ │ │ │ │ ├── v1_chain_network_address.rb │ │ │ │ │ ├── v1_exchange.rb │ │ │ │ │ ├── v1_exchange_rate.rb │ │ │ │ │ ├── v1_exchange_rates.rb │ │ │ │ │ ├── v1_exchange_rates_rate.rb │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.rb │ │ │ │ │ ├── v1_general_data.rb │ │ │ │ │ ├── v1_icon.rb │ │ │ │ │ ├── v1_last_trade.rb │ │ │ │ │ ├── v1_listing_item.rb │ │ │ │ │ ├── v1_metric.rb │ │ │ │ │ ├── v1_metric_data.rb │ │ │ │ │ ├── v1_metric_info.rb │ │ │ │ │ ├── v1_order_book.rb │ │ │ │ │ ├── v1_order_book_base.rb │ │ │ │ │ ├── v1_order_book_depth.rb │ │ │ │ │ ├── v1_quote.rb │ │ │ │ │ ├── v1_quote_trade.rb │ │ │ │ │ ├── v1_symbol.rb │ │ │ │ │ ├── v1_symbol_mapping.rb │ │ │ │ │ ├── v1_timeseries_item.rb │ │ │ │ │ ├── v1_timeseries_period.rb │ │ │ │ │ └── v1_trade.rb │ │ │ │ │ └── version.rb │ │ │ ├── openapi_client.gemspec │ │ │ └── spec │ │ │ │ ├── api │ │ │ │ ├── exchange_rates_api_spec.rb │ │ │ │ ├── metadata_api_spec.rb │ │ │ │ ├── metrics_v1_api_spec.rb │ │ │ │ ├── metrics_v2_api_spec.rb │ │ │ │ ├── ohlcv_api_spec.rb │ │ │ │ ├── options_api_spec.rb │ │ │ │ ├── order_book_api_spec.rb │ │ │ │ ├── order_book_l3_api_spec.rb │ │ │ │ ├── quotes_api_spec.rb │ │ │ │ └── trades_api_spec.rb │ │ │ │ ├── models │ │ │ │ ├── models_exchange_timeseries_item_spec.rb │ │ │ │ ├── options_option_exchange_group_spec.rb │ │ │ │ ├── options_strike_spec.rb │ │ │ │ ├── v1_asset_spec.rb │ │ │ │ ├── v1_chain_network_address_spec.rb │ │ │ │ ├── v1_chain_spec.rb │ │ │ │ ├── v1_exchange_rate_spec.rb │ │ │ │ ├── v1_exchange_rates_rate_spec.rb │ │ │ │ ├── v1_exchange_rates_spec.rb │ │ │ │ ├── v1_exchange_rates_timeseries_item_spec.rb │ │ │ │ ├── v1_exchange_spec.rb │ │ │ │ ├── v1_general_data_spec.rb │ │ │ │ ├── v1_icon_spec.rb │ │ │ │ ├── v1_last_trade_spec.rb │ │ │ │ ├── v1_listing_item_spec.rb │ │ │ │ ├── v1_metric_data_spec.rb │ │ │ │ ├── v1_metric_info_spec.rb │ │ │ │ ├── v1_metric_spec.rb │ │ │ │ ├── v1_order_book_base_spec.rb │ │ │ │ ├── v1_order_book_depth_spec.rb │ │ │ │ ├── v1_order_book_spec.rb │ │ │ │ ├── v1_quote_spec.rb │ │ │ │ ├── v1_quote_trade_spec.rb │ │ │ │ ├── v1_symbol_mapping_spec.rb │ │ │ │ ├── v1_symbol_spec.rb │ │ │ │ ├── v1_timeseries_item_spec.rb │ │ │ │ ├── v1_timeseries_period_spec.rb │ │ │ │ └── v1_trade_spec.rb │ │ │ │ └── spec_helper.rb │ │ ├── scala-akka │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── MetricsV1Api.md │ │ │ │ ├── MetricsV2Api.md │ │ │ │ ├── ModelsExchangeTimeseriesItem.md │ │ │ │ ├── OhlcvApi.md │ │ │ │ ├── OptionsApi.md │ │ │ │ ├── OptionsOptionExchangeGroup.md │ │ │ │ ├── OptionsStrike.md │ │ │ │ ├── OrderBookApi.md │ │ │ │ ├── OrderBookL3Api.md │ │ │ │ ├── QuotesApi.md │ │ │ │ ├── TradesApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1Chain.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1Exchange.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1GeneralData.md │ │ │ │ ├── V1Icon.md │ │ │ │ ├── V1LastTrade.md │ │ │ │ ├── V1ListingItem.md │ │ │ │ ├── V1Metric.md │ │ │ │ ├── V1MetricData.md │ │ │ │ ├── V1MetricInfo.md │ │ │ │ ├── V1OrderBook.md │ │ │ │ ├── V1OrderBookBase.md │ │ │ │ ├── V1OrderBookDepth.md │ │ │ │ ├── V1Quote.md │ │ │ │ ├── V1QuoteTrade.md │ │ │ │ ├── V1Symbol.md │ │ │ │ ├── V1SymbolMapping.md │ │ │ │ ├── V1TimeseriesItem.md │ │ │ │ ├── V1TimeseriesPeriod.md │ │ │ │ └── V1Trade.md │ │ │ ├── pom.xml │ │ │ ├── project │ │ │ │ └── build.properties │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── reference.conf │ │ │ │ └── scala │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── EnumsSerializers.scala │ │ │ │ ├── ExchangeRatesApi.scala │ │ │ │ ├── MetadataApi.scala │ │ │ │ ├── MetricsV1Api.scala │ │ │ │ ├── MetricsV2Api.scala │ │ │ │ ├── OhlcvApi.scala │ │ │ │ ├── OptionsApi.scala │ │ │ │ ├── OrderBookApi.scala │ │ │ │ ├── OrderBookL3Api.scala │ │ │ │ ├── QuotesApi.scala │ │ │ │ └── TradesApi.scala │ │ │ │ ├── core │ │ │ │ ├── ApiInvoker.scala │ │ │ │ ├── ApiRequest.scala │ │ │ │ ├── ApiSettings.scala │ │ │ │ ├── Serializers.scala │ │ │ │ └── requests.scala │ │ │ │ └── model │ │ │ │ ├── Asset.scala │ │ │ │ ├── Chain.scala │ │ │ │ ├── ChainNetworkAddress.scala │ │ │ │ ├── Exchange.scala │ │ │ │ ├── ExchangeRate.scala │ │ │ │ ├── ExchangeRates.scala │ │ │ │ ├── ExchangeRatesRate.scala │ │ │ │ ├── ExchangeRatesTimeseriesItem.scala │ │ │ │ ├── ExchangeTimeseriesItem.scala │ │ │ │ ├── GeneralData.scala │ │ │ │ ├── Icon.scala │ │ │ │ ├── LastTrade.scala │ │ │ │ ├── ListingItem.scala │ │ │ │ ├── Metric.scala │ │ │ │ ├── MetricData.scala │ │ │ │ ├── MetricInfo.scala │ │ │ │ ├── OptionExchangeGroup.scala │ │ │ │ ├── OrderBook.scala │ │ │ │ ├── OrderBookBase.scala │ │ │ │ ├── OrderBookDepth.scala │ │ │ │ ├── Quote.scala │ │ │ │ ├── QuoteTrade.scala │ │ │ │ ├── Strike.scala │ │ │ │ ├── Symbol.scala │ │ │ │ ├── SymbolMapping.scala │ │ │ │ ├── TimeseriesItem.scala │ │ │ │ ├── TimeseriesPeriod.scala │ │ │ │ └── Trade.scala │ │ ├── typescript-angular │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── api.base.service.ts │ │ │ ├── api.module.ts │ │ │ ├── api │ │ │ │ ├── api.ts │ │ │ │ ├── exchangeRates.service.ts │ │ │ │ ├── metadata.service.ts │ │ │ │ ├── metricsV1.service.ts │ │ │ │ ├── metricsV2.service.ts │ │ │ │ ├── ohlcv.service.ts │ │ │ │ ├── options.service.ts │ │ │ │ ├── orderBook.service.ts │ │ │ │ ├── orderBookL3.service.ts │ │ │ │ ├── quotes.service.ts │ │ │ │ └── trades.service.ts │ │ │ ├── configuration.ts │ │ │ ├── encoder.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── models.ts │ │ │ │ ├── modelsExchangeTimeseriesItem.ts │ │ │ │ ├── optionsOptionExchangeGroup.ts │ │ │ │ ├── optionsStrike.ts │ │ │ │ ├── v1Asset.ts │ │ │ │ ├── v1Chain.ts │ │ │ │ ├── v1ChainNetworkAddress.ts │ │ │ │ ├── v1Exchange.ts │ │ │ │ ├── v1ExchangeRate.ts │ │ │ │ ├── v1ExchangeRates.ts │ │ │ │ ├── v1ExchangeRatesRate.ts │ │ │ │ ├── v1ExchangeRatesTimeseriesItem.ts │ │ │ │ ├── v1GeneralData.ts │ │ │ │ ├── v1Icon.ts │ │ │ │ ├── v1LastTrade.ts │ │ │ │ ├── v1ListingItem.ts │ │ │ │ ├── v1Metric.ts │ │ │ │ ├── v1MetricData.ts │ │ │ │ ├── v1MetricInfo.ts │ │ │ │ ├── v1OrderBook.ts │ │ │ │ ├── v1OrderBookBase.ts │ │ │ │ ├── v1OrderBookDepth.ts │ │ │ │ ├── v1Quote.ts │ │ │ │ ├── v1QuoteTrade.ts │ │ │ │ ├── v1Symbol.ts │ │ │ │ ├── v1SymbolMapping.ts │ │ │ │ ├── v1TimeseriesItem.ts │ │ │ │ ├── v1TimeseriesPeriod.ts │ │ │ │ └── v1Trade.ts │ │ │ ├── param.ts │ │ │ ├── provide-api.ts │ │ │ └── variables.ts │ │ ├── typescript-jquery │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.ts │ │ │ │ ├── MetadataApi.ts │ │ │ │ ├── MetricsV1Api.ts │ │ │ │ ├── MetricsV2Api.ts │ │ │ │ ├── OhlcvApi.ts │ │ │ │ ├── OptionsApi.ts │ │ │ │ ├── OrderBookApi.ts │ │ │ │ ├── OrderBookL3Api.ts │ │ │ │ ├── QuotesApi.ts │ │ │ │ ├── TradesApi.ts │ │ │ │ └── api.ts │ │ │ ├── configuration.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── ModelsExchangeTimeseriesItem.ts │ │ │ │ ├── OptionsOptionExchangeGroup.ts │ │ │ │ ├── OptionsStrike.ts │ │ │ │ ├── V1Asset.ts │ │ │ │ ├── V1Chain.ts │ │ │ │ ├── V1ChainNetworkAddress.ts │ │ │ │ ├── V1Exchange.ts │ │ │ │ ├── V1ExchangeRate.ts │ │ │ │ ├── V1ExchangeRates.ts │ │ │ │ ├── V1ExchangeRatesRate.ts │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.ts │ │ │ │ ├── V1GeneralData.ts │ │ │ │ ├── V1Icon.ts │ │ │ │ ├── V1LastTrade.ts │ │ │ │ ├── V1ListingItem.ts │ │ │ │ ├── V1Metric.ts │ │ │ │ ├── V1MetricData.ts │ │ │ │ ├── V1MetricInfo.ts │ │ │ │ ├── V1OrderBook.ts │ │ │ │ ├── V1OrderBookBase.ts │ │ │ │ ├── V1OrderBookDepth.ts │ │ │ │ ├── V1Quote.ts │ │ │ │ ├── V1QuoteTrade.ts │ │ │ │ ├── V1Symbol.ts │ │ │ │ ├── V1SymbolMapping.ts │ │ │ │ ├── V1TimeseriesItem.ts │ │ │ │ ├── V1TimeseriesPeriod.ts │ │ │ │ ├── V1Trade.ts │ │ │ │ └── models.ts │ │ │ └── variables.ts │ │ ├── typescript-node │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── api │ │ │ │ ├── apis.ts │ │ │ │ ├── exchangeRatesApi.ts │ │ │ │ ├── metadataApi.ts │ │ │ │ ├── metricsV1Api.ts │ │ │ │ ├── metricsV2Api.ts │ │ │ │ ├── ohlcvApi.ts │ │ │ │ ├── optionsApi.ts │ │ │ │ ├── orderBookApi.ts │ │ │ │ ├── orderBookL3Api.ts │ │ │ │ ├── quotesApi.ts │ │ │ │ └── tradesApi.ts │ │ │ ├── git_push.sh │ │ │ └── model │ │ │ │ ├── models.ts │ │ │ │ ├── modelsExchangeTimeseriesItem.ts │ │ │ │ ├── optionsOptionExchangeGroup.ts │ │ │ │ ├── optionsStrike.ts │ │ │ │ ├── v1Asset.ts │ │ │ │ ├── v1Chain.ts │ │ │ │ ├── v1ChainNetworkAddress.ts │ │ │ │ ├── v1Exchange.ts │ │ │ │ ├── v1ExchangeRate.ts │ │ │ │ ├── v1ExchangeRates.ts │ │ │ │ ├── v1ExchangeRatesRate.ts │ │ │ │ ├── v1ExchangeRatesTimeseriesItem.ts │ │ │ │ ├── v1GeneralData.ts │ │ │ │ ├── v1Icon.ts │ │ │ │ ├── v1LastTrade.ts │ │ │ │ ├── v1ListingItem.ts │ │ │ │ ├── v1Metric.ts │ │ │ │ ├── v1MetricData.ts │ │ │ │ ├── v1MetricInfo.ts │ │ │ │ ├── v1OrderBook.ts │ │ │ │ ├── v1OrderBookBase.ts │ │ │ │ ├── v1OrderBookDepth.ts │ │ │ │ ├── v1Quote.ts │ │ │ │ ├── v1QuoteTrade.ts │ │ │ │ ├── v1Symbol.ts │ │ │ │ ├── v1SymbolMapping.ts │ │ │ │ ├── v1TimeseriesItem.ts │ │ │ │ ├── v1TimeseriesPeriod.ts │ │ │ │ └── v1Trade.ts │ │ └── typescript-rxjs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ │ ├── apis │ │ │ ├── ExchangeRatesApi.ts │ │ │ ├── MetadataApi.ts │ │ │ ├── MetricsV1Api.ts │ │ │ ├── MetricsV2Api.ts │ │ │ ├── OhlcvApi.ts │ │ │ ├── OptionsApi.ts │ │ │ ├── OrderBookApi.ts │ │ │ ├── OrderBookL3Api.ts │ │ │ ├── QuotesApi.ts │ │ │ ├── TradesApi.ts │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ ├── ModelsExchangeTimeseriesItem.ts │ │ │ ├── OptionsOptionExchangeGroup.ts │ │ │ ├── OptionsStrike.ts │ │ │ ├── V1Asset.ts │ │ │ ├── V1Chain.ts │ │ │ ├── V1ChainNetworkAddress.ts │ │ │ ├── V1Exchange.ts │ │ │ ├── V1ExchangeRate.ts │ │ │ ├── V1ExchangeRates.ts │ │ │ ├── V1ExchangeRatesRate.ts │ │ │ ├── V1ExchangeRatesTimeseriesItem.ts │ │ │ ├── V1GeneralData.ts │ │ │ ├── V1Icon.ts │ │ │ ├── V1LastTrade.ts │ │ │ ├── V1ListingItem.ts │ │ │ ├── V1Metric.ts │ │ │ ├── V1MetricData.ts │ │ │ ├── V1MetricInfo.ts │ │ │ ├── V1OrderBook.ts │ │ │ ├── V1OrderBookBase.ts │ │ │ ├── V1OrderBookDepth.ts │ │ │ ├── V1Quote.ts │ │ │ ├── V1QuoteTrade.ts │ │ │ ├── V1Symbol.ts │ │ │ ├── V1SymbolMapping.ts │ │ │ ├── V1TimeseriesItem.ts │ │ │ ├── V1TimeseriesPeriod.ts │ │ │ ├── V1Trade.ts │ │ │ └── index.ts │ │ │ ├── runtime.ts │ │ │ ├── servers.ts │ │ │ └── tsconfig.json │ └── spec │ │ ├── openapi.json │ │ └── openapi.yaml ├── market-data-api-ws │ ├── sdk │ │ ├── LICENSE │ │ ├── README.md │ │ ├── csharp-ws │ │ │ ├── .gitignore │ │ │ ├── CoinAPI.WebSocket.Stats.Console │ │ │ │ ├── CoinAPI.WebSocket.Stats.Console.csproj │ │ │ │ ├── Infrastructure │ │ │ │ │ ├── AppConfiguration.cs │ │ │ │ │ ├── CompositeDataOutput.cs │ │ │ │ │ ├── ConsoleDataOutput.cs │ │ │ │ │ ├── FileDataOutput.cs │ │ │ │ │ ├── InputData.cs │ │ │ │ │ └── OutputData.cs │ │ │ │ ├── Interfaces │ │ │ │ │ └── IDataOutput.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── launchSettings.json │ │ │ │ └── README.md │ │ │ ├── CoinAPI.WebSocket.V1.Tests │ │ │ │ ├── .gitignore │ │ │ │ ├── CoinAPI.WebSocket.V1.Tests.csproj │ │ │ │ ├── TestChangeHello.cs │ │ │ │ ├── TestExchangeRate.cs │ │ │ │ ├── TestOhlcv.cs │ │ │ │ ├── TestOrderBook.cs │ │ │ │ ├── TestOrderBook3.cs │ │ │ │ ├── TestQuote.cs │ │ │ │ ├── TestReconnect.cs │ │ │ │ ├── TestTicker.cs │ │ │ │ ├── TestTrade.cs │ │ │ │ └── TestVolume.cs │ │ │ ├── CoinAPI.WebSocket.V1 │ │ │ │ ├── CoinAPI.WebSocket.V1.csproj │ │ │ │ ├── CoinAPIException.cs │ │ │ │ ├── CoinApiWsClient.cs │ │ │ │ ├── DataModels │ │ │ │ │ ├── BidAsk.cs │ │ │ │ │ ├── BidAskL3.cs │ │ │ │ │ ├── Error.cs │ │ │ │ │ ├── ExchangeRate.cs │ │ │ │ │ ├── Hello.cs │ │ │ │ │ ├── MessageBase.cs │ │ │ │ │ ├── MessageType.cs │ │ │ │ │ ├── OHLCV.cs │ │ │ │ │ ├── OrderBook.cs │ │ │ │ │ ├── OrderBook3.cs │ │ │ │ │ ├── Quote.cs │ │ │ │ │ ├── Ticker.cs │ │ │ │ │ ├── Trade.cs │ │ │ │ │ └── Volume.cs │ │ │ │ ├── ICoinApiWsClient.cs │ │ │ │ ├── MessageData.cs │ │ │ │ ├── QueueThread.cs │ │ │ │ ├── Testing │ │ │ │ │ ├── CoinApiWsClientNoHb.cs │ │ │ │ │ └── CoinApiWsClientReconnect.cs │ │ │ │ └── WSUtils.cs │ │ │ └── CoinAPI.WebSocket.sln │ │ ├── go-ws │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ ├── sdk.go │ │ │ │ ├── types │ │ │ │ │ ├── config.go │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── functions.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── messages.go │ │ │ │ ├── utils.go │ │ │ │ └── v1 │ │ │ │ │ ├── dbg_utils.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── sdk.go │ │ │ │ │ ├── sdk_utils.go │ │ │ │ │ ├── set_methods.go │ │ │ │ │ ├── websocket.go │ │ │ │ │ ├── ws_connection.go │ │ │ │ │ └── ws_handler.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── main.go │ │ ├── java-websocket │ │ │ ├── README.md │ │ │ ├── deploy.sh │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── coinapi │ │ │ │ │ │ └── websocket │ │ │ │ │ │ ├── CoinAPIWebSocket.java │ │ │ │ │ │ ├── CoinAPIWebSocketImpl.java │ │ │ │ │ │ ├── communication │ │ │ │ │ │ └── WebsocketReconnectHandler.java │ │ │ │ │ │ ├── exception │ │ │ │ │ │ └── NotImplementedException.java │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── InvokeFunction.java │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── Asks.java │ │ │ │ │ │ ├── Bids.java │ │ │ │ │ │ ├── Book.java │ │ │ │ │ │ ├── Data.java │ │ │ │ │ │ ├── Error.java │ │ │ │ │ │ ├── Hello.java │ │ │ │ │ │ ├── MessageBase.java │ │ │ │ │ │ ├── MessageTypeEnum.java │ │ │ │ │ │ ├── OHLCV.java │ │ │ │ │ │ ├── Quotes.java │ │ │ │ │ │ ├── Reconnect.java │ │ │ │ │ │ ├── Trades.java │ │ │ │ │ │ ├── Volume.java │ │ │ │ │ │ └── VolumeBySymbol.java │ │ │ │ └── resources │ │ │ │ │ └── config.properties │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ ├── BookTest.java │ │ │ │ ├── CoinAPISDKTest.java │ │ │ │ ├── Config.java │ │ │ │ ├── ErrorTest.java │ │ │ │ ├── MessageInjectableCoinAPISDKTest.java │ │ │ │ ├── OHLCVTest.java │ │ │ │ ├── QuotesTest.java │ │ │ │ ├── ReconnectTest.java │ │ │ │ ├── TradesTest.java │ │ │ │ └── VolumeTest.java │ │ ├── nodejs-ws │ │ │ ├── example.js │ │ │ └── readme.md │ │ └── python-ws │ │ │ ├── README.md │ │ │ └── examples.py │ └── spec │ │ └── sandy-ws-v1.json └── tutorials │ ├── Audit_Compliance_PRIMKT_Tutorial.ipynb │ ├── Backtesting_Crypto_Trades_CoinAPI_Flat_Files.ipynb │ ├── Historical_OHLCV_REST_Build_Candlestick_Charts.ipynb │ ├── Market_Trends_VWAP_Intraday_Analysis.ipynb │ ├── Price_Trend_Analysis.ipynb │ └── README.md ├── finfeedapi ├── currencies-api-rest-historical │ ├── sdk-config │ │ ├── ada.yaml │ │ ├── android.yaml │ │ ├── apex.yaml │ │ ├── bash.yaml │ │ ├── c.yaml │ │ ├── clojure.yaml │ │ ├── cpp-restsdk.yaml │ │ ├── cpp-tizen.yaml │ │ ├── csharp.yaml │ │ ├── dart-dio.yaml │ │ ├── dart.yaml │ │ ├── eiffel.yaml │ │ ├── elixir.yaml │ │ ├── elm.yaml │ │ ├── erlang-client.yaml │ │ ├── erlang-proper.yaml │ │ ├── go.yaml │ │ ├── groovy.yaml │ │ ├── haskell-http-client.yaml │ │ ├── java.yaml │ │ ├── javascript-closure-angular.yaml │ │ ├── javascript-flowtyped.yaml │ │ ├── javascript.yaml │ │ ├── kotlin.yaml │ │ ├── lua.yaml │ │ ├── perl.yaml │ │ ├── php.yaml │ │ ├── powershell.yaml │ │ ├── python.yaml │ │ ├── r.yaml │ │ ├── ruby.yaml │ │ ├── scala-akka.yaml │ │ ├── shared │ │ │ └── common.yaml │ │ ├── typescript-angular.yaml │ │ ├── typescript-jquery.yaml │ │ ├── typescript-node.yaml │ │ └── typescript-rxjs.yaml │ ├── sdk │ │ ├── ada │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── config.gpr │ │ │ ├── defaultpackage.gpr │ │ │ └── src │ │ │ │ ├── -client.adb │ │ │ │ ├── .ads │ │ │ │ ├── client │ │ │ │ ├── -clients.adb │ │ │ │ └── -clients.ads │ │ │ │ └── model │ │ │ │ ├── -models.adb │ │ │ │ └── -models.ads │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── ApiException.java │ │ │ │ ├── ApiInvoker.java │ │ │ │ ├── JsonUtil.java │ │ │ │ ├── Pair.java │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.java │ │ │ │ └── MetadataApi.java │ │ │ │ ├── auth │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ ├── Authentication.java │ │ │ │ └── HttpBasicAuth.java │ │ │ │ ├── model │ │ │ │ ├── V1Asset.java │ │ │ │ ├── V1ChainNetworkAddress.java │ │ │ │ ├── V1ExchangeRate.java │ │ │ │ ├── V1ExchangeRates.java │ │ │ │ ├── V1ExchangeRatesRate.java │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.java │ │ │ │ ├── V1Icon.java │ │ │ │ └── V1TimeseriesPeriod.java │ │ │ │ └── request │ │ │ │ ├── DeleteRequest.java │ │ │ │ ├── GetRequest.java │ │ │ │ ├── PatchRequest.java │ │ │ │ ├── PostRequest.java │ │ │ │ └── PutRequest.java │ │ ├── apex │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── project-scratch-def.json │ │ │ ├── force-app │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ ├── classes │ │ │ │ │ ├── OAS.cls │ │ │ │ │ ├── OAS.cls-meta.xml │ │ │ │ │ ├── OASClient.cls │ │ │ │ │ ├── OASClient.cls-meta.xml │ │ │ │ │ ├── OASExchangeRatesApi.cls │ │ │ │ │ ├── OASExchangeRatesApi.cls-meta.xml │ │ │ │ │ ├── OASExchangeRatesApiTest.cls │ │ │ │ │ ├── OASExchangeRatesApiTest.cls-meta.xml │ │ │ │ │ ├── OASMetadataApi.cls │ │ │ │ │ ├── OASMetadataApi.cls-meta.xml │ │ │ │ │ ├── OASMetadataApiTest.cls │ │ │ │ │ ├── OASMetadataApiTest.cls-meta.xml │ │ │ │ │ ├── OASResponseMock.cls │ │ │ │ │ ├── OASResponseMock.cls-meta.xml │ │ │ │ │ ├── OASTest.cls │ │ │ │ │ ├── OASTest.cls-meta.xml │ │ │ │ │ ├── OASV1Asset.cls │ │ │ │ │ ├── OASV1Asset.cls-meta.xml │ │ │ │ │ ├── OASV1AssetTest.cls │ │ │ │ │ ├── OASV1AssetTest.cls-meta.xml │ │ │ │ │ ├── OASV1ChainNetworkAddress.cls │ │ │ │ │ ├── OASV1ChainNetworkAddress.cls-meta.xml │ │ │ │ │ ├── OASV1ChainNetworkAddressTest.cls │ │ │ │ │ ├── OASV1ChainNetworkAddressTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRate.cls │ │ │ │ │ ├── OASV1ExchangeRate.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRateTest.cls │ │ │ │ │ ├── OASV1ExchangeRateTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRates.cls │ │ │ │ │ ├── OASV1ExchangeRates.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesRate.cls │ │ │ │ │ ├── OASV1ExchangeRatesRate.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesRateTest.cls │ │ │ │ │ ├── OASV1ExchangeRatesRateTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesTest.cls │ │ │ │ │ ├── OASV1ExchangeRatesTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesTimeseriesItem.cls │ │ │ │ │ ├── OASV1ExchangeRatesTimeseriesItem.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesTimeseriesItemTest.cls │ │ │ │ │ ├── OASV1ExchangeRatesTimeseriesItemTest.cls-meta.xml │ │ │ │ │ ├── OASV1Icon.cls │ │ │ │ │ ├── OASV1Icon.cls-meta.xml │ │ │ │ │ ├── OASV1IconTest.cls │ │ │ │ │ ├── OASV1IconTest.cls-meta.xml │ │ │ │ │ ├── OASV1TimeseriesPeriod.cls │ │ │ │ │ ├── OASV1TimeseriesPeriod.cls-meta.xml │ │ │ │ │ ├── OASV1TimeseriesPeriodTest.cls │ │ │ │ │ └── OASV1TimeseriesPeriodTest.cls-meta.xml │ │ │ │ │ └── namedCredentials │ │ │ │ │ └── FX_Historical_REST_API.namedCredential-meta.xml │ │ │ └── sfdx-project.json │ │ ├── bash │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── _client.sh │ │ │ ├── client.sh │ │ │ ├── client.sh.bash-completion │ │ │ └── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ ├── c │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── Packing.cmake │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ ├── ExchangeRatesAPI.c │ │ │ │ ├── ExchangeRatesAPI.h │ │ │ │ ├── MetadataAPI.c │ │ │ │ └── MetadataAPI.h │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesAPI.md │ │ │ │ ├── MetadataAPI.md │ │ │ │ ├── v1_asset.md │ │ │ │ ├── v1_chain_network_address.md │ │ │ │ ├── v1_exchange_rate.md │ │ │ │ ├── v1_exchange_rates.md │ │ │ │ ├── v1_exchange_rates_rate.md │ │ │ │ ├── v1_exchange_rates_timeseries_item.md │ │ │ │ ├── v1_icon.md │ │ │ │ └── v1_timeseries_period.md │ │ │ ├── external │ │ │ │ ├── cJSON.c │ │ │ │ ├── cJSON.h │ │ │ │ └── cJSON.licence │ │ │ ├── include │ │ │ │ ├── apiClient.h │ │ │ │ ├── binary.h │ │ │ │ ├── keyValuePair.h │ │ │ │ └── list.h │ │ │ ├── libcurl.licence │ │ │ ├── model │ │ │ │ ├── any_type.h │ │ │ │ ├── object.c │ │ │ │ ├── object.h │ │ │ │ ├── v1_asset.c │ │ │ │ ├── v1_asset.h │ │ │ │ ├── v1_chain_network_address.c │ │ │ │ ├── v1_chain_network_address.h │ │ │ │ ├── v1_exchange_rate.c │ │ │ │ ├── v1_exchange_rate.h │ │ │ │ ├── v1_exchange_rates.c │ │ │ │ ├── v1_exchange_rates.h │ │ │ │ ├── v1_exchange_rates_rate.c │ │ │ │ ├── v1_exchange_rates_rate.h │ │ │ │ ├── v1_exchange_rates_timeseries_item.c │ │ │ │ ├── v1_exchange_rates_timeseries_item.h │ │ │ │ ├── v1_icon.c │ │ │ │ ├── v1_icon.h │ │ │ │ ├── v1_timeseries_period.c │ │ │ │ └── v1_timeseries_period.h │ │ │ ├── src │ │ │ │ ├── apiClient.c │ │ │ │ ├── apiKey.c │ │ │ │ ├── binary.c │ │ │ │ └── list.c │ │ │ ├── uncrustify-rules.cfg │ │ │ └── unit-test │ │ │ │ ├── test_v1_asset.c │ │ │ │ ├── test_v1_chain_network_address.c │ │ │ │ ├── test_v1_exchange_rate.c │ │ │ │ ├── test_v1_exchange_rates.c │ │ │ │ ├── test_v1_exchange_rates_rate.c │ │ │ │ ├── test_v1_exchange_rates_timeseries_item.c │ │ │ │ ├── test_v1_icon.c │ │ │ │ └── test_v1_timeseries_period.c │ │ ├── clojure │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── project.clj │ │ │ └── src │ │ │ │ └── fx_historical_rest_api │ │ │ │ ├── api │ │ │ │ ├── exchange_rates.clj │ │ │ │ └── metadata.clj │ │ │ │ ├── core.clj │ │ │ │ └── specs │ │ │ │ └── v1 │ │ │ │ ├── asset.clj │ │ │ │ ├── chain_network_address.clj │ │ │ │ ├── exchange_rate.clj │ │ │ │ ├── exchange_rates.clj │ │ │ │ ├── exchange_rates_rate.clj │ │ │ │ ├── exchange_rates_timeseries_item.clj │ │ │ │ ├── icon.clj │ │ │ │ └── timeseries_period.clj │ │ ├── cpp-restsdk │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── README.md │ │ │ ├── git_push.sh │ │ │ ├── include │ │ │ │ └── CppRestOpenAPIClient │ │ │ │ │ ├── AnyType.h │ │ │ │ │ ├── ApiClient.h │ │ │ │ │ ├── ApiConfiguration.h │ │ │ │ │ ├── ApiException.h │ │ │ │ │ ├── HttpContent.h │ │ │ │ │ ├── IHttpBody.h │ │ │ │ │ ├── JsonBody.h │ │ │ │ │ ├── ModelBase.h │ │ │ │ │ ├── MultipartFormData.h │ │ │ │ │ ├── Object.h │ │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.h │ │ │ │ │ └── MetadataApi.h │ │ │ │ │ └── model │ │ │ │ │ ├── V1_Asset.h │ │ │ │ │ ├── V1_ChainNetworkAddress.h │ │ │ │ │ ├── V1_ExchangeRate.h │ │ │ │ │ ├── V1_ExchangeRates.h │ │ │ │ │ ├── V1_ExchangeRatesRate.h │ │ │ │ │ ├── V1_ExchangeRatesTimeseriesItem.h │ │ │ │ │ ├── V1_Icon.h │ │ │ │ │ └── V1_TimeseriesPeriod.h │ │ │ └── src │ │ │ │ ├── AnyType.cpp │ │ │ │ ├── ApiClient.cpp │ │ │ │ ├── ApiConfiguration.cpp │ │ │ │ ├── ApiException.cpp │ │ │ │ ├── HttpContent.cpp │ │ │ │ ├── JsonBody.cpp │ │ │ │ ├── ModelBase.cpp │ │ │ │ ├── MultipartFormData.cpp │ │ │ │ ├── Object.cpp │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.cpp │ │ │ │ └── MetadataApi.cpp │ │ │ │ └── model │ │ │ │ ├── V1_Asset.cpp │ │ │ │ ├── V1_ChainNetworkAddress.cpp │ │ │ │ ├── V1_ExchangeRate.cpp │ │ │ │ ├── V1_ExchangeRates.cpp │ │ │ │ ├── V1_ExchangeRatesRate.cpp │ │ │ │ ├── V1_ExchangeRatesTimeseriesItem.cpp │ │ │ │ ├── V1_Icon.cpp │ │ │ │ └── V1_TimeseriesPeriod.cpp │ │ ├── cpp-tizen │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── doc │ │ │ │ ├── Doxyfile │ │ │ │ ├── README.md │ │ │ │ └── generateDocumentation.sh │ │ │ └── src │ │ │ │ ├── Error.cpp │ │ │ │ ├── Error.h │ │ │ │ ├── ExchangeRatesManager.cpp │ │ │ │ ├── ExchangeRatesManager.h │ │ │ │ ├── Helpers.cpp │ │ │ │ ├── Helpers.h │ │ │ │ ├── MetadataManager.cpp │ │ │ │ ├── MetadataManager.h │ │ │ │ ├── NetClient.cpp │ │ │ │ ├── NetClient.h │ │ │ │ ├── Object.h │ │ │ │ ├── RequestInfo.h │ │ │ │ ├── V1Asset.cpp │ │ │ │ ├── V1Asset.h │ │ │ │ ├── V1ChainNetworkAddress.cpp │ │ │ │ ├── V1ChainNetworkAddress.h │ │ │ │ ├── V1ExchangeRate.cpp │ │ │ │ ├── V1ExchangeRate.h │ │ │ │ ├── V1ExchangeRates.cpp │ │ │ │ ├── V1ExchangeRates.h │ │ │ │ ├── V1ExchangeRatesRate.cpp │ │ │ │ ├── V1ExchangeRatesRate.h │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.cpp │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.h │ │ │ │ ├── V1Icon.cpp │ │ │ │ ├── V1Icon.h │ │ │ │ ├── V1TimeseriesPeriod.cpp │ │ │ │ └── V1TimeseriesPeriod.h │ │ ├── csharp │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── APIBricks.FinFeedAPI.CurrenciesAPI.REST.V1.Historical.sln │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── apis │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ └── MetadataApi.md │ │ │ │ ├── models │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ │ ├── V1Icon.md │ │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ │ └── scripts │ │ │ │ │ ├── git_push.ps1 │ │ │ │ │ └── git_push.sh │ │ │ └── src │ │ │ │ ├── APIBricks.FinFeedAPI.CurrenciesAPI.REST.V1.Historical.Test │ │ │ │ ├── APIBricks.FinFeedAPI.CurrenciesAPI.REST.V1.Historical.Test.csproj │ │ │ │ ├── Api │ │ │ │ │ ├── ApiTestsBase.cs │ │ │ │ │ ├── DependencyInjectionTests.cs │ │ │ │ │ ├── ExchangeRatesApiTests.cs │ │ │ │ │ └── MetadataApiTests.cs │ │ │ │ ├── Model │ │ │ │ │ ├── V1AssetTests.cs │ │ │ │ │ ├── V1ChainNetworkAddressTests.cs │ │ │ │ │ ├── V1ExchangeRateTests.cs │ │ │ │ │ ├── V1ExchangeRatesRateTests.cs │ │ │ │ │ ├── V1ExchangeRatesTests.cs │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTests.cs │ │ │ │ │ ├── V1IconTests.cs │ │ │ │ │ └── V1TimeseriesPeriodTests.cs │ │ │ │ └── README.md │ │ │ │ └── APIBricks.FinFeedAPI.CurrenciesAPI.REST.V1.Historical │ │ │ │ ├── APIBricks.FinFeedAPI.CurrenciesAPI.REST.V1.Historical.csproj │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApi.cs │ │ │ │ ├── IApi.cs │ │ │ │ └── MetadataApi.cs │ │ │ │ ├── Client │ │ │ │ ├── ApiException.cs │ │ │ │ ├── ApiFactory.cs │ │ │ │ ├── ApiKeyToken.cs │ │ │ │ ├── ApiResponseEventArgs.cs │ │ │ │ ├── ApiResponse`1.cs │ │ │ │ ├── ClientUtils.cs │ │ │ │ ├── CookieContainer.cs │ │ │ │ ├── DateOnlyJsonConverter.cs │ │ │ │ ├── DateOnlyNullableJsonConverter.cs │ │ │ │ ├── DateTimeJsonConverter.cs │ │ │ │ ├── DateTimeNullableJsonConverter.cs │ │ │ │ ├── ExceptionEventArgs.cs │ │ │ │ ├── HostConfiguration.cs │ │ │ │ ├── JsonSerializerOptionsProvider.cs │ │ │ │ ├── Option.cs │ │ │ │ ├── RateLimitProvider`1.cs │ │ │ │ ├── TokenBase.cs │ │ │ │ ├── TokenContainer`1.cs │ │ │ │ └── TokenProvider`1.cs │ │ │ │ ├── Extensions │ │ │ │ ├── IHostBuilderExtensions.cs │ │ │ │ ├── IHttpClientBuilderExtensions.cs │ │ │ │ └── IServiceCollectionExtensions.cs │ │ │ │ ├── Model │ │ │ │ ├── V1Asset.cs │ │ │ │ ├── V1ChainNetworkAddress.cs │ │ │ │ ├── V1ExchangeRate.cs │ │ │ │ ├── V1ExchangeRates.cs │ │ │ │ ├── V1ExchangeRatesRate.cs │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.cs │ │ │ │ ├── V1Icon.cs │ │ │ │ └── V1TimeseriesPeriod.cs │ │ │ │ └── README.md │ │ ├── dart-dio │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── lib │ │ │ │ ├── openapi.dart │ │ │ │ └── src │ │ │ │ │ ├── api.dart │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.dart │ │ │ │ │ └── metadata_api.dart │ │ │ │ │ ├── api_util.dart │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── auth.dart │ │ │ │ │ ├── basic_auth.dart │ │ │ │ │ ├── bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ │ ├── date_serializer.dart │ │ │ │ │ ├── model │ │ │ │ │ ├── date.dart │ │ │ │ │ ├── v1_asset.dart │ │ │ │ │ ├── v1_chain_network_address.dart │ │ │ │ │ ├── v1_exchange_rate.dart │ │ │ │ │ ├── v1_exchange_rates.dart │ │ │ │ │ ├── v1_exchange_rates_rate.dart │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.dart │ │ │ │ │ ├── v1_icon.dart │ │ │ │ │ └── v1_timeseries_period.dart │ │ │ │ │ └── serializers.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── exchange_rates_api_test.dart │ │ │ │ ├── metadata_api_test.dart │ │ │ │ ├── v1_asset_test.dart │ │ │ │ ├── v1_chain_network_address_test.dart │ │ │ │ ├── v1_exchange_rate_test.dart │ │ │ │ ├── v1_exchange_rates_rate_test.dart │ │ │ │ ├── v1_exchange_rates_test.dart │ │ │ │ ├── v1_exchange_rates_timeseries_item_test.dart │ │ │ │ ├── v1_icon_test.dart │ │ │ │ └── v1_timeseries_period_test.dart │ │ ├── dart │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── api.dart │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.dart │ │ │ │ │ └── metadata_api.dart │ │ │ │ ├── api_client.dart │ │ │ │ ├── api_exception.dart │ │ │ │ ├── api_helper.dart │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── authentication.dart │ │ │ │ │ ├── http_basic_auth.dart │ │ │ │ │ ├── http_bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ └── model │ │ │ │ │ ├── v1_asset.dart │ │ │ │ │ ├── v1_chain_network_address.dart │ │ │ │ │ ├── v1_exchange_rate.dart │ │ │ │ │ ├── v1_exchange_rates.dart │ │ │ │ │ ├── v1_exchange_rates_rate.dart │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.dart │ │ │ │ │ ├── v1_icon.dart │ │ │ │ │ └── v1_timeseries_period.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── exchange_rates_api_test.dart │ │ │ │ ├── metadata_api_test.dart │ │ │ │ ├── v1_asset_test.dart │ │ │ │ ├── v1_chain_network_address_test.dart │ │ │ │ ├── v1_exchange_rate_test.dart │ │ │ │ ├── v1_exchange_rates_rate_test.dart │ │ │ │ ├── v1_exchange_rates_test.dart │ │ │ │ ├── v1_exchange_rates_timeseries_item_test.dart │ │ │ │ ├── v1_icon_test.dart │ │ │ │ └── v1_timeseries_period_test.dart │ │ ├── eiffel │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api_client.ecf │ │ │ ├── docs │ │ │ │ ├── EXCHANGERATES_API.md │ │ │ │ ├── METADATA_API.md │ │ │ │ ├── V1_ASSET.md │ │ │ │ ├── V1_CHAIN_NETWORK_ADDRESS.md │ │ │ │ ├── V1_EXCHANGE_RATE.md │ │ │ │ ├── V1_EXCHANGE_RATES.md │ │ │ │ ├── V1_EXCHANGE_RATES_RATE.md │ │ │ │ ├── V1_EXCHANGE_RATES_TIMESERIES_ITEM.md │ │ │ │ ├── V1_ICON.md │ │ │ │ └── V1_TIMESERIES_PERIOD.md │ │ │ ├── src │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.e │ │ │ │ │ └── metadata_api.e │ │ │ │ ├── api_client.e │ │ │ │ ├── domain │ │ │ │ │ ├── v1_asset.e │ │ │ │ │ ├── v1_chain_network_address.e │ │ │ │ │ ├── v1_exchange_rate.e │ │ │ │ │ ├── v1_exchange_rates.e │ │ │ │ │ ├── v1_exchange_rates_rate.e │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.e │ │ │ │ │ ├── v1_icon.e │ │ │ │ │ └── v1_timeseries_period.e │ │ │ │ └── framework │ │ │ │ │ ├── api_client_request.e │ │ │ │ │ ├── api_client_response.e │ │ │ │ │ ├── api_error.e │ │ │ │ │ ├── api_i.e │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.e │ │ │ │ │ ├── authentication.e │ │ │ │ │ ├── http_basic_auth.e │ │ │ │ │ └── oauth.e │ │ │ │ │ ├── configuration.e │ │ │ │ │ └── serialization │ │ │ │ │ ├── api_deserializer.e │ │ │ │ │ ├── api_json_deserializer.e │ │ │ │ │ ├── api_json_serializer.e │ │ │ │ │ ├── api_serializer.e │ │ │ │ │ ├── json_basic_reflector_deserializer.e │ │ │ │ │ └── json_type_utilities_ext.e │ │ │ └── test │ │ │ │ ├── api_test.ecf │ │ │ │ ├── apis │ │ │ │ ├── exchangerates_api_test.e │ │ │ │ └── metadata_api_test.e │ │ │ │ └── application.e │ │ ├── elixir │ │ │ ├── .formatter.exs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ ├── config.exs │ │ │ │ └── runtime.exs │ │ │ ├── lib │ │ │ │ └── fx_historical_restapi │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates.ex │ │ │ │ │ └── metadata.ex │ │ │ │ │ ├── connection.ex │ │ │ │ │ ├── deserializer.ex │ │ │ │ │ ├── model │ │ │ │ │ ├── v1_asset.ex │ │ │ │ │ ├── v1_chain_network_address.ex │ │ │ │ │ ├── v1_exchange_rate.ex │ │ │ │ │ ├── v1_exchange_rates.ex │ │ │ │ │ ├── v1_exchange_rates_rate.ex │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.ex │ │ │ │ │ ├── v1_icon.ex │ │ │ │ │ └── v1_timeseries_period.ex │ │ │ │ │ └── request_builder.ex │ │ │ ├── mix.exs │ │ │ └── test │ │ │ │ └── test_helper.exs │ │ ├── elm │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ ├── Api.elm │ │ │ │ └── Api │ │ │ │ ├── Data.elm │ │ │ │ ├── Request │ │ │ │ ├── ExchangeRates.elm │ │ │ │ └── Metadata.elm │ │ │ │ └── Time.elm │ │ ├── erlang-client │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ └── src │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi_exchange_rates_api.erl │ │ │ │ ├── openapi_metadata_api.erl │ │ │ │ ├── openapi_utils.erl │ │ │ │ ├── openapi_v1_asset.erl │ │ │ │ ├── openapi_v1_chain_network_address.erl │ │ │ │ ├── openapi_v1_exchange_rate.erl │ │ │ │ ├── openapi_v1_exchange_rates.erl │ │ │ │ ├── openapi_v1_exchange_rates_rate.erl │ │ │ │ ├── openapi_v1_exchange_rates_timeseries_item.erl │ │ │ │ ├── openapi_v1_icon.erl │ │ │ │ └── openapi_v1_timeseries_period.erl │ │ ├── erlang-proper │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ ├── src │ │ │ │ ├── model │ │ │ │ │ ├── openapi_v1_asset.erl │ │ │ │ │ ├── openapi_v1_chain_network_address.erl │ │ │ │ │ ├── openapi_v1_exchange_rate.erl │ │ │ │ │ ├── openapi_v1_exchange_rates.erl │ │ │ │ │ ├── openapi_v1_exchange_rates_rate.erl │ │ │ │ │ ├── openapi_v1_exchange_rates_timeseries_item.erl │ │ │ │ │ ├── openapi_v1_icon.erl │ │ │ │ │ └── openapi_v1_timeseries_period.erl │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi.hrl │ │ │ │ ├── openapi_api.erl │ │ │ │ ├── openapi_gen.erl │ │ │ │ ├── openapi_statem.erl │ │ │ │ ├── openapi_statem.hrl │ │ │ │ └── openapi_utils.erl │ │ │ └── test │ │ │ │ └── prop_openapi.erl │ │ ├── go │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── api_exchange_rates.go │ │ │ ├── api_metadata.go │ │ │ ├── client.go │ │ │ ├── configuration.go │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesAPI.md │ │ │ │ ├── MetadataAPI.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── model_v1_asset.go │ │ │ ├── model_v1_chain_network_address.go │ │ │ ├── model_v1_exchange_rate.go │ │ │ ├── model_v1_exchange_rates.go │ │ │ ├── model_v1_exchange_rates_rate.go │ │ │ ├── model_v1_exchange_rates_timeseries_item.go │ │ │ ├── model_v1_icon.go │ │ │ ├── model_v1_timeseries_period.go │ │ │ ├── response.go │ │ │ ├── test │ │ │ │ ├── api_exchange_rates_test.go │ │ │ │ └── api_metadata_test.go │ │ │ └── utils.go │ │ ├── groovy │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ ├── api │ │ │ │ ├── ApiUtils.groovy │ │ │ │ ├── ExchangeRatesApi.groovy │ │ │ │ └── MetadataApi.groovy │ │ │ │ └── model │ │ │ │ ├── V1Asset.groovy │ │ │ │ ├── V1ChainNetworkAddress.groovy │ │ │ │ ├── V1ExchangeRate.groovy │ │ │ │ ├── V1ExchangeRates.groovy │ │ │ │ ├── V1ExchangeRatesRate.groovy │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.groovy │ │ │ │ ├── V1Icon.groovy │ │ │ │ └── V1TimeseriesPeriod.groovy │ │ ├── haskell-http-client │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── Setup.hs │ │ │ ├── fx-historical-rest.cabal │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── FXHistoricalREST.hs │ │ │ │ └── FXHistoricalREST │ │ │ │ │ ├── API.hs │ │ │ │ │ ├── API │ │ │ │ │ ├── ExchangeRates.hs │ │ │ │ │ └── Metadata.hs │ │ │ │ │ ├── Client.hs │ │ │ │ │ ├── Core.hs │ │ │ │ │ ├── Logging.hs │ │ │ │ │ ├── LoggingKatip.hs │ │ │ │ │ ├── LoggingMonadLogger.hs │ │ │ │ │ ├── MimeTypes.hs │ │ │ │ │ ├── Model.hs │ │ │ │ │ └── ModelLens.hs │ │ │ ├── openapi.yaml │ │ │ ├── stack.yaml │ │ │ └── tests │ │ │ │ ├── ApproxEq.hs │ │ │ │ ├── Instances.hs │ │ │ │ ├── PropMime.hs │ │ │ │ └── Test.hs │ │ ├── java │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── maven.yml │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── build.gradle │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── ApiCallback.java │ │ │ │ │ ├── ApiClient.java │ │ │ │ │ ├── ApiException.java │ │ │ │ │ ├── ApiResponse.java │ │ │ │ │ ├── Configuration.java │ │ │ │ │ ├── GzipRequestInterceptor.java │ │ │ │ │ ├── JSON.java │ │ │ │ │ ├── Pair.java │ │ │ │ │ ├── ProgressRequestBody.java │ │ │ │ │ ├── ProgressResponseBody.java │ │ │ │ │ ├── ServerConfiguration.java │ │ │ │ │ ├── ServerVariable.java │ │ │ │ │ ├── StringUtil.java │ │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.java │ │ │ │ │ └── MetadataApi.java │ │ │ │ │ ├── auth │ │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ │ ├── Authentication.java │ │ │ │ │ ├── HttpBasicAuth.java │ │ │ │ │ └── HttpBearerAuth.java │ │ │ │ │ └── model │ │ │ │ │ ├── AbstractOpenApiSchema.java │ │ │ │ │ ├── V1Asset.java │ │ │ │ │ ├── V1ChainNetworkAddress.java │ │ │ │ │ ├── V1ExchangeRate.java │ │ │ │ │ ├── V1ExchangeRates.java │ │ │ │ │ ├── V1ExchangeRatesRate.java │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.java │ │ │ │ │ ├── V1Icon.java │ │ │ │ │ └── V1TimeseriesPeriod.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApiTest.java │ │ │ │ └── MetadataApiTest.java │ │ │ │ └── model │ │ │ │ ├── V1AssetTest.java │ │ │ │ ├── V1ChainNetworkAddressTest.java │ │ │ │ ├── V1ExchangeRateTest.java │ │ │ │ ├── V1ExchangeRatesRateTest.java │ │ │ │ ├── V1ExchangeRatesTest.java │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTest.java │ │ │ │ ├── V1IconTest.java │ │ │ │ └── V1TimeseriesPeriodTest.java │ │ ├── javascript-closure-angular │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ └── API │ │ │ │ └── Client │ │ │ │ ├── ExchangeRatesApi.js │ │ │ │ ├── MetadataApi.js │ │ │ │ ├── V1Asset.js │ │ │ │ ├── V1ChainNetworkAddress.js │ │ │ │ ├── V1ExchangeRate.js │ │ │ │ ├── V1ExchangeRates.js │ │ │ │ ├── V1ExchangeRatesRate.js │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.js │ │ │ │ ├── V1Icon.js │ │ │ │ └── V1TimeseriesPeriod.js │ │ ├── javascript-flowtyped │ │ │ ├── .babelrc │ │ │ ├── .flowconfig │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── api.js │ │ │ │ ├── configuration.js │ │ │ │ └── index.js │ │ ├── javascript │ │ │ ├── .babelrc │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── mocha.opts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── ApiClient.js │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.js │ │ │ │ │ └── MetadataApi.js │ │ │ │ ├── index.js │ │ │ │ └── model │ │ │ │ │ ├── V1Asset.js │ │ │ │ │ ├── V1ChainNetworkAddress.js │ │ │ │ │ ├── V1ExchangeRate.js │ │ │ │ │ ├── V1ExchangeRates.js │ │ │ │ │ ├── V1ExchangeRatesRate.js │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.js │ │ │ │ │ ├── V1Icon.js │ │ │ │ │ └── V1TimeseriesPeriod.js │ │ │ └── test │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.spec.js │ │ │ │ └── MetadataApi.spec.js │ │ │ │ └── model │ │ │ │ ├── V1Asset.spec.js │ │ │ │ ├── V1ChainNetworkAddress.spec.js │ │ │ │ ├── V1ExchangeRate.spec.js │ │ │ │ ├── V1ExchangeRates.spec.js │ │ │ │ ├── V1ExchangeRatesRate.spec.js │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.spec.js │ │ │ │ ├── V1Icon.spec.js │ │ │ │ └── V1TimeseriesPeriod.spec.js │ │ ├── kotlin │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── apis │ │ │ │ │ ├── ExchangeRatesApi.kt │ │ │ │ │ └── MetadataApi.kt │ │ │ │ │ ├── infrastructure │ │ │ │ │ ├── ApiAbstractions.kt │ │ │ │ │ ├── ApiClient.kt │ │ │ │ │ ├── ApiResponse.kt │ │ │ │ │ ├── BigDecimalAdapter.kt │ │ │ │ │ ├── BigIntegerAdapter.kt │ │ │ │ │ ├── ByteArrayAdapter.kt │ │ │ │ │ ├── Errors.kt │ │ │ │ │ ├── LocalDateAdapter.kt │ │ │ │ │ ├── LocalDateTimeAdapter.kt │ │ │ │ │ ├── OffsetDateTimeAdapter.kt │ │ │ │ │ ├── PartConfig.kt │ │ │ │ │ ├── RequestConfig.kt │ │ │ │ │ ├── RequestMethod.kt │ │ │ │ │ ├── ResponseExtensions.kt │ │ │ │ │ ├── Serializer.kt │ │ │ │ │ ├── URIAdapter.kt │ │ │ │ │ └── UUIDAdapter.kt │ │ │ │ │ └── models │ │ │ │ │ ├── V1Asset.kt │ │ │ │ │ ├── V1ChainNetworkAddress.kt │ │ │ │ │ ├── V1ExchangeRate.kt │ │ │ │ │ ├── V1ExchangeRates.kt │ │ │ │ │ ├── V1ExchangeRatesRate.kt │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.kt │ │ │ │ │ ├── V1Icon.kt │ │ │ │ │ └── V1TimeseriesPeriod.kt │ │ │ │ └── test │ │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── apis │ │ │ │ ├── ExchangeRatesApiTest.kt │ │ │ │ └── MetadataApiTest.kt │ │ │ │ └── models │ │ │ │ ├── V1AssetTest.kt │ │ │ │ ├── V1ChainNetworkAddressTest.kt │ │ │ │ ├── V1ExchangeRateTest.kt │ │ │ │ ├── V1ExchangeRatesRateTest.kt │ │ │ │ ├── V1ExchangeRatesTest.kt │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTest.kt │ │ │ │ ├── V1IconTest.kt │ │ │ │ └── V1TimeseriesPeriodTest.kt │ │ ├── lua │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── openapiclient-1.0.0-1.rockspec │ │ │ ├── openapiclient │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.lua │ │ │ │ │ └── metadata_api.lua │ │ │ │ └── model │ │ │ │ │ ├── v1_asset.lua │ │ │ │ │ ├── v1_chain_network_address.lua │ │ │ │ │ ├── v1_exchange_rate.lua │ │ │ │ │ ├── v1_exchange_rates.lua │ │ │ │ │ ├── v1_exchange_rates_rate.lua │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.lua │ │ │ │ │ ├── v1_icon.lua │ │ │ │ │ └── v1_timeseries_period.lua │ │ │ └── spec │ │ │ │ ├── exchange_rates_api_spec.lua │ │ │ │ ├── metadata_api_spec.lua │ │ │ │ ├── v1_asset_spec.lua │ │ │ │ ├── v1_chain_network_address_spec.lua │ │ │ │ ├── v1_exchange_rate_spec.lua │ │ │ │ ├── v1_exchange_rates_rate_spec.lua │ │ │ │ ├── v1_exchange_rates_spec.lua │ │ │ │ ├── v1_exchange_rates_timeseries_item_spec.lua │ │ │ │ ├── v1_icon_spec.lua │ │ │ │ └── v1_timeseries_period_spec.lua │ │ ├── perl │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── autodoc │ │ │ ├── cpanfile │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ └── WWW │ │ │ │ │ └── OpenAPIClient │ │ │ │ │ ├── ApiClient.pm │ │ │ │ │ ├── ApiFactory.pm │ │ │ │ │ ├── Configuration.pm │ │ │ │ │ ├── ExchangeRatesApi.pm │ │ │ │ │ ├── MetadataApi.pm │ │ │ │ │ ├── Object │ │ │ │ │ ├── V1Asset.pm │ │ │ │ │ ├── V1ChainNetworkAddress.pm │ │ │ │ │ ├── V1ExchangeRate.pm │ │ │ │ │ ├── V1ExchangeRates.pm │ │ │ │ │ ├── V1ExchangeRatesRate.pm │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.pm │ │ │ │ │ ├── V1Icon.pm │ │ │ │ │ └── V1TimeseriesPeriod.pm │ │ │ │ │ ├── Role.pm │ │ │ │ │ └── Role │ │ │ │ │ └── AutoDoc.pm │ │ │ └── t │ │ │ │ ├── ExchangeRatesApiTest.t │ │ │ │ ├── MetadataApiTest.t │ │ │ │ ├── V1AssetTest.t │ │ │ │ ├── V1ChainNetworkAddressTest.t │ │ │ │ ├── V1ExchangeRateTest.t │ │ │ │ ├── V1ExchangeRatesRateTest.t │ │ │ │ ├── V1ExchangeRatesTest.t │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTest.t │ │ │ │ ├── V1IconTest.t │ │ │ │ └── V1TimeseriesPeriodTest.t │ │ ├── php │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ └── MetadataApi.md │ │ │ │ └── Model │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ │ ├── V1Icon.md │ │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.php │ │ │ │ │ └── MetadataApi.php │ │ │ │ ├── ApiException.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── FormDataProcessor.php │ │ │ │ ├── HeaderSelector.php │ │ │ │ ├── Model │ │ │ │ │ ├── ModelInterface.php │ │ │ │ │ ├── V1Asset.php │ │ │ │ │ ├── V1ChainNetworkAddress.php │ │ │ │ │ ├── V1ExchangeRate.php │ │ │ │ │ ├── V1ExchangeRates.php │ │ │ │ │ ├── V1ExchangeRatesRate.php │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.php │ │ │ │ │ ├── V1Icon.php │ │ │ │ │ └── V1TimeseriesPeriod.php │ │ │ │ └── ObjectSerializer.php │ │ │ ├── phpunit.xml.dist │ │ │ └── test │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApiTest.php │ │ │ │ └── MetadataApiTest.php │ │ │ │ └── Model │ │ │ │ ├── V1AssetTest.php │ │ │ │ ├── V1ChainNetworkAddressTest.php │ │ │ │ ├── V1ExchangeRateTest.php │ │ │ │ ├── V1ExchangeRatesRateTest.php │ │ │ │ ├── V1ExchangeRatesTest.php │ │ │ │ ├── V1ExchangeRatesTimeseriesItemTest.php │ │ │ │ ├── V1IconTest.php │ │ │ │ └── V1TimeseriesPeriodTest.php │ │ ├── powershell │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Build.ps1 │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── src │ │ │ │ └── PSOpenAPITools │ │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.ps1 │ │ │ │ │ └── MetadataApi.ps1 │ │ │ │ │ ├── Client │ │ │ │ │ └── Configuration.ps1 │ │ │ │ │ ├── Model │ │ │ │ │ ├── V1Asset.ps1 │ │ │ │ │ ├── V1ChainNetworkAddress.ps1 │ │ │ │ │ ├── V1ExchangeRate.ps1 │ │ │ │ │ ├── V1ExchangeRates.ps1 │ │ │ │ │ ├── V1ExchangeRatesRate.ps1 │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.ps1 │ │ │ │ │ ├── V1Icon.ps1 │ │ │ │ │ └── V1TimeseriesPeriod.ps1 │ │ │ │ │ ├── PSOpenAPITools.psm1 │ │ │ │ │ ├── Private │ │ │ │ │ ├── ApiClient.ps1 │ │ │ │ │ ├── Get-CommonParameters.ps1 │ │ │ │ │ ├── HttpSignatureAuth.ps1 │ │ │ │ │ ├── Out-DebugParameter.ps1 │ │ │ │ │ └── RSAEncryptionProvider.cs │ │ │ │ │ └── en-US │ │ │ │ │ └── about_PSOpenAPITools.help.txt │ │ │ └── tests │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApi.Tests.ps1 │ │ │ │ └── MetadataApi.Tests.ps1 │ │ │ │ └── Model │ │ │ │ ├── V1Asset.Tests.ps1 │ │ │ │ ├── V1ChainNetworkAddress.Tests.ps1 │ │ │ │ ├── V1ExchangeRate.Tests.ps1 │ │ │ │ ├── V1ExchangeRates.Tests.ps1 │ │ │ │ ├── V1ExchangeRatesRate.Tests.ps1 │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.Tests.ps1 │ │ │ │ ├── V1Icon.Tests.ps1 │ │ │ │ └── V1TimeseriesPeriod.Tests.ps1 │ │ ├── python │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api_bricks_currencies_api_rest_historical │ │ │ │ ├── __init__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exchange_rates_api.py │ │ │ │ │ └── metadata_api.py │ │ │ │ ├── api_client.py │ │ │ │ ├── api_response.py │ │ │ │ ├── configuration.py │ │ │ │ ├── docs │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ ├── MetadataApi.md │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ │ ├── V1Icon.md │ │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ │ ├── exceptions.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── v1_asset.py │ │ │ │ │ ├── v1_chain_network_address.py │ │ │ │ │ ├── v1_exchange_rate.py │ │ │ │ │ ├── v1_exchange_rates.py │ │ │ │ │ ├── v1_exchange_rates_rate.py │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.py │ │ │ │ │ ├── v1_icon.py │ │ │ │ │ └── v1_timeseries_period.py │ │ │ │ ├── rest.py │ │ │ │ └── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_exchange_rates_api.py │ │ │ │ │ ├── test_metadata_api.py │ │ │ │ │ ├── test_v1_asset.py │ │ │ │ │ ├── test_v1_chain_network_address.py │ │ │ │ │ ├── test_v1_exchange_rate.py │ │ │ │ │ ├── test_v1_exchange_rates.py │ │ │ │ │ ├── test_v1_exchange_rates_rate.py │ │ │ │ │ ├── test_v1_exchange_rates_timeseries_item.py │ │ │ │ │ ├── test_v1_icon.py │ │ │ │ │ └── test_v1_timeseries_period.py │ │ │ └── api_bricks_currencies_api_rest_historical_README.md │ │ ├── r │ │ │ ├── .Rbuildignore │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── r-client.yaml │ │ │ ├── .gitignore │ │ │ ├── .lintr │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── api_client.R │ │ │ │ ├── api_response.R │ │ │ │ ├── exchange_rates_api.R │ │ │ │ ├── metadata_api.R │ │ │ │ ├── v1_asset.R │ │ │ │ ├── v1_chain_network_address.R │ │ │ │ ├── v1_exchange_rate.R │ │ │ │ ├── v1_exchange_rates.R │ │ │ │ ├── v1_exchange_rates_rate.R │ │ │ │ ├── v1_exchange_rates_timeseries_item.R │ │ │ │ ├── v1_icon.R │ │ │ │ └── v1_timeseries_period.R │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ └── tests │ │ │ │ ├── testthat.R │ │ │ │ └── testthat │ │ │ │ ├── test_exchange_rates_api.R │ │ │ │ ├── test_metadata_api.R │ │ │ │ ├── test_v1_asset.R │ │ │ │ ├── test_v1_chain_network_address.R │ │ │ │ ├── test_v1_exchange_rate.R │ │ │ │ ├── test_v1_exchange_rates.R │ │ │ │ ├── test_v1_exchange_rates_rate.R │ │ │ │ ├── test_v1_exchange_rates_timeseries_item.R │ │ │ │ ├── test_v1_icon.R │ │ │ │ └── test_v1_timeseries_period.R │ │ ├── ruby │ │ │ ├── .gitignore │ │ │ ├── .gitlab-ci.yml │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .rspec │ │ │ ├── .rubocop.yml │ │ │ ├── .travis.yml │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── openapi_client.rb │ │ │ │ └── openapi_client │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.rb │ │ │ │ │ └── metadata_api.rb │ │ │ │ │ ├── api_client.rb │ │ │ │ │ ├── api_error.rb │ │ │ │ │ ├── api_model_base.rb │ │ │ │ │ ├── configuration.rb │ │ │ │ │ ├── models │ │ │ │ │ ├── v1_asset.rb │ │ │ │ │ ├── v1_chain_network_address.rb │ │ │ │ │ ├── v1_exchange_rate.rb │ │ │ │ │ ├── v1_exchange_rates.rb │ │ │ │ │ ├── v1_exchange_rates_rate.rb │ │ │ │ │ ├── v1_exchange_rates_timeseries_item.rb │ │ │ │ │ ├── v1_icon.rb │ │ │ │ │ └── v1_timeseries_period.rb │ │ │ │ │ └── version.rb │ │ │ ├── openapi_client.gemspec │ │ │ └── spec │ │ │ │ ├── api │ │ │ │ ├── exchange_rates_api_spec.rb │ │ │ │ └── metadata_api_spec.rb │ │ │ │ ├── models │ │ │ │ ├── v1_asset_spec.rb │ │ │ │ ├── v1_chain_network_address_spec.rb │ │ │ │ ├── v1_exchange_rate_spec.rb │ │ │ │ ├── v1_exchange_rates_rate_spec.rb │ │ │ │ ├── v1_exchange_rates_spec.rb │ │ │ │ ├── v1_exchange_rates_timeseries_item_spec.rb │ │ │ │ ├── v1_icon_spec.rb │ │ │ │ └── v1_timeseries_period_spec.rb │ │ │ │ └── spec_helper.rb │ │ ├── scala-akka │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.md │ │ │ │ ├── V1Icon.md │ │ │ │ └── V1TimeseriesPeriod.md │ │ │ ├── pom.xml │ │ │ ├── project │ │ │ │ └── build.properties │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── reference.conf │ │ │ │ └── scala │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── EnumsSerializers.scala │ │ │ │ ├── ExchangeRatesApi.scala │ │ │ │ └── MetadataApi.scala │ │ │ │ ├── core │ │ │ │ ├── ApiInvoker.scala │ │ │ │ ├── ApiRequest.scala │ │ │ │ ├── ApiSettings.scala │ │ │ │ ├── Serializers.scala │ │ │ │ └── requests.scala │ │ │ │ └── model │ │ │ │ ├── Asset.scala │ │ │ │ ├── ChainNetworkAddress.scala │ │ │ │ ├── ExchangeRate.scala │ │ │ │ ├── ExchangeRates.scala │ │ │ │ ├── ExchangeRatesRate.scala │ │ │ │ ├── ExchangeRatesTimeseriesItem.scala │ │ │ │ ├── Icon.scala │ │ │ │ └── TimeseriesPeriod.scala │ │ ├── typescript-angular │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── api.base.service.ts │ │ │ ├── api.module.ts │ │ │ ├── api │ │ │ │ ├── api.ts │ │ │ │ ├── exchangeRates.service.ts │ │ │ │ └── metadata.service.ts │ │ │ ├── configuration.ts │ │ │ ├── encoder.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── models.ts │ │ │ │ ├── v1Asset.ts │ │ │ │ ├── v1ChainNetworkAddress.ts │ │ │ │ ├── v1ExchangeRate.ts │ │ │ │ ├── v1ExchangeRates.ts │ │ │ │ ├── v1ExchangeRatesRate.ts │ │ │ │ ├── v1ExchangeRatesTimeseriesItem.ts │ │ │ │ ├── v1Icon.ts │ │ │ │ └── v1TimeseriesPeriod.ts │ │ │ ├── param.ts │ │ │ ├── provide-api.ts │ │ │ └── variables.ts │ │ ├── typescript-jquery │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.ts │ │ │ │ ├── MetadataApi.ts │ │ │ │ └── api.ts │ │ │ ├── configuration.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── V1Asset.ts │ │ │ │ ├── V1ChainNetworkAddress.ts │ │ │ │ ├── V1ExchangeRate.ts │ │ │ │ ├── V1ExchangeRates.ts │ │ │ │ ├── V1ExchangeRatesRate.ts │ │ │ │ ├── V1ExchangeRatesTimeseriesItem.ts │ │ │ │ ├── V1Icon.ts │ │ │ │ ├── V1TimeseriesPeriod.ts │ │ │ │ └── models.ts │ │ │ └── variables.ts │ │ ├── typescript-node │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── api │ │ │ │ ├── apis.ts │ │ │ │ ├── exchangeRatesApi.ts │ │ │ │ └── metadataApi.ts │ │ │ ├── git_push.sh │ │ │ └── model │ │ │ │ ├── models.ts │ │ │ │ ├── v1Asset.ts │ │ │ │ ├── v1ChainNetworkAddress.ts │ │ │ │ ├── v1ExchangeRate.ts │ │ │ │ ├── v1ExchangeRates.ts │ │ │ │ ├── v1ExchangeRatesRate.ts │ │ │ │ ├── v1ExchangeRatesTimeseriesItem.ts │ │ │ │ ├── v1Icon.ts │ │ │ │ └── v1TimeseriesPeriod.ts │ │ └── typescript-rxjs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ │ ├── apis │ │ │ ├── ExchangeRatesApi.ts │ │ │ ├── MetadataApi.ts │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ ├── V1Asset.ts │ │ │ ├── V1ChainNetworkAddress.ts │ │ │ ├── V1ExchangeRate.ts │ │ │ ├── V1ExchangeRates.ts │ │ │ ├── V1ExchangeRatesRate.ts │ │ │ ├── V1ExchangeRatesTimeseriesItem.ts │ │ │ ├── V1Icon.ts │ │ │ ├── V1TimeseriesPeriod.ts │ │ │ └── index.ts │ │ │ ├── runtime.ts │ │ │ ├── servers.ts │ │ │ └── tsconfig.json │ ├── spec │ │ ├── openapi.json │ │ └── openapi.yaml │ └── tutorials │ │ └── Volatility_Heatmap_Currency_Risk_Analysis.ipynb ├── currencies-api-rest-realtime │ ├── sdk-config │ │ ├── ada.yaml │ │ ├── android.yaml │ │ ├── apex.yaml │ │ ├── bash.yaml │ │ ├── c.yaml │ │ ├── clojure.yaml │ │ ├── cpp-restsdk.yaml │ │ ├── cpp-tizen.yaml │ │ ├── csharp.yaml │ │ ├── dart-dio.yaml │ │ ├── dart.yaml │ │ ├── eiffel.yaml │ │ ├── elixir.yaml │ │ ├── elm.yaml │ │ ├── erlang-client.yaml │ │ ├── erlang-proper.yaml │ │ ├── go.yaml │ │ ├── groovy.yaml │ │ ├── haskell-http-client.yaml │ │ ├── java.yaml │ │ ├── javascript-closure-angular.yaml │ │ ├── javascript-flowtyped.yaml │ │ ├── javascript.yaml │ │ ├── kotlin.yaml │ │ ├── lua.yaml │ │ ├── perl.yaml │ │ ├── php.yaml │ │ ├── powershell.yaml │ │ ├── python.yaml │ │ ├── r.yaml │ │ ├── ruby.yaml │ │ ├── scala-akka.yaml │ │ ├── shared │ │ │ └── common.yaml │ │ ├── typescript-angular.yaml │ │ ├── typescript-jquery.yaml │ │ ├── typescript-node.yaml │ │ └── typescript-rxjs.yaml │ ├── sdk │ │ ├── ada │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── config.gpr │ │ │ ├── defaultpackage.gpr │ │ │ └── src │ │ │ │ ├── -client.adb │ │ │ │ ├── .ads │ │ │ │ ├── client │ │ │ │ ├── -clients.adb │ │ │ │ └── -clients.ads │ │ │ │ └── model │ │ │ │ ├── -models.adb │ │ │ │ └── -models.ads │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── ApiException.java │ │ │ │ ├── ApiInvoker.java │ │ │ │ ├── JsonUtil.java │ │ │ │ ├── Pair.java │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.java │ │ │ │ └── MetadataApi.java │ │ │ │ ├── auth │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ ├── Authentication.java │ │ │ │ └── HttpBasicAuth.java │ │ │ │ ├── model │ │ │ │ ├── V1Asset.java │ │ │ │ ├── V1ChainNetworkAddress.java │ │ │ │ ├── V1ExchangeRate.java │ │ │ │ ├── V1ExchangeRates.java │ │ │ │ ├── V1ExchangeRatesRate.java │ │ │ │ └── V1Icon.java │ │ │ │ └── request │ │ │ │ ├── DeleteRequest.java │ │ │ │ ├── GetRequest.java │ │ │ │ ├── PatchRequest.java │ │ │ │ ├── PostRequest.java │ │ │ │ └── PutRequest.java │ │ ├── apex │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── project-scratch-def.json │ │ │ ├── force-app │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ ├── classes │ │ │ │ │ ├── OAS.cls │ │ │ │ │ ├── OAS.cls-meta.xml │ │ │ │ │ ├── OASClient.cls │ │ │ │ │ ├── OASClient.cls-meta.xml │ │ │ │ │ ├── OASExchangeRatesApi.cls │ │ │ │ │ ├── OASExchangeRatesApi.cls-meta.xml │ │ │ │ │ ├── OASExchangeRatesApiTest.cls │ │ │ │ │ ├── OASExchangeRatesApiTest.cls-meta.xml │ │ │ │ │ ├── OASMetadataApi.cls │ │ │ │ │ ├── OASMetadataApi.cls-meta.xml │ │ │ │ │ ├── OASMetadataApiTest.cls │ │ │ │ │ ├── OASMetadataApiTest.cls-meta.xml │ │ │ │ │ ├── OASResponseMock.cls │ │ │ │ │ ├── OASResponseMock.cls-meta.xml │ │ │ │ │ ├── OASTest.cls │ │ │ │ │ ├── OASTest.cls-meta.xml │ │ │ │ │ ├── OASV1Asset.cls │ │ │ │ │ ├── OASV1Asset.cls-meta.xml │ │ │ │ │ ├── OASV1AssetTest.cls │ │ │ │ │ ├── OASV1AssetTest.cls-meta.xml │ │ │ │ │ ├── OASV1ChainNetworkAddress.cls │ │ │ │ │ ├── OASV1ChainNetworkAddress.cls-meta.xml │ │ │ │ │ ├── OASV1ChainNetworkAddressTest.cls │ │ │ │ │ ├── OASV1ChainNetworkAddressTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRate.cls │ │ │ │ │ ├── OASV1ExchangeRate.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRateTest.cls │ │ │ │ │ ├── OASV1ExchangeRateTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRates.cls │ │ │ │ │ ├── OASV1ExchangeRates.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesRate.cls │ │ │ │ │ ├── OASV1ExchangeRatesRate.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesRateTest.cls │ │ │ │ │ ├── OASV1ExchangeRatesRateTest.cls-meta.xml │ │ │ │ │ ├── OASV1ExchangeRatesTest.cls │ │ │ │ │ ├── OASV1ExchangeRatesTest.cls-meta.xml │ │ │ │ │ ├── OASV1Icon.cls │ │ │ │ │ ├── OASV1Icon.cls-meta.xml │ │ │ │ │ ├── OASV1IconTest.cls │ │ │ │ │ └── OASV1IconTest.cls-meta.xml │ │ │ │ │ └── namedCredentials │ │ │ │ │ └── FX_Realtime_REST_API.namedCredential-meta.xml │ │ │ └── sfdx-project.json │ │ ├── bash │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── _client.sh │ │ │ ├── client.sh │ │ │ ├── client.sh.bash-completion │ │ │ └── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ ├── c │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── Packing.cmake │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ ├── ExchangeRatesAPI.c │ │ │ │ ├── ExchangeRatesAPI.h │ │ │ │ ├── MetadataAPI.c │ │ │ │ └── MetadataAPI.h │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesAPI.md │ │ │ │ ├── MetadataAPI.md │ │ │ │ ├── v1_asset.md │ │ │ │ ├── v1_chain_network_address.md │ │ │ │ ├── v1_exchange_rate.md │ │ │ │ ├── v1_exchange_rates.md │ │ │ │ ├── v1_exchange_rates_rate.md │ │ │ │ └── v1_icon.md │ │ │ ├── external │ │ │ │ ├── cJSON.c │ │ │ │ ├── cJSON.h │ │ │ │ └── cJSON.licence │ │ │ ├── include │ │ │ │ ├── apiClient.h │ │ │ │ ├── binary.h │ │ │ │ ├── keyValuePair.h │ │ │ │ └── list.h │ │ │ ├── libcurl.licence │ │ │ ├── model │ │ │ │ ├── any_type.h │ │ │ │ ├── object.c │ │ │ │ ├── object.h │ │ │ │ ├── v1_asset.c │ │ │ │ ├── v1_asset.h │ │ │ │ ├── v1_chain_network_address.c │ │ │ │ ├── v1_chain_network_address.h │ │ │ │ ├── v1_exchange_rate.c │ │ │ │ ├── v1_exchange_rate.h │ │ │ │ ├── v1_exchange_rates.c │ │ │ │ ├── v1_exchange_rates.h │ │ │ │ ├── v1_exchange_rates_rate.c │ │ │ │ ├── v1_exchange_rates_rate.h │ │ │ │ ├── v1_icon.c │ │ │ │ └── v1_icon.h │ │ │ ├── src │ │ │ │ ├── apiClient.c │ │ │ │ ├── apiKey.c │ │ │ │ ├── binary.c │ │ │ │ └── list.c │ │ │ ├── uncrustify-rules.cfg │ │ │ └── unit-test │ │ │ │ ├── test_v1_asset.c │ │ │ │ ├── test_v1_chain_network_address.c │ │ │ │ ├── test_v1_exchange_rate.c │ │ │ │ ├── test_v1_exchange_rates.c │ │ │ │ ├── test_v1_exchange_rates_rate.c │ │ │ │ └── test_v1_icon.c │ │ ├── clojure │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── project.clj │ │ │ └── src │ │ │ │ └── fx_realtime_rest_api │ │ │ │ ├── api │ │ │ │ ├── exchange_rates.clj │ │ │ │ └── metadata.clj │ │ │ │ ├── core.clj │ │ │ │ └── specs │ │ │ │ └── v1 │ │ │ │ ├── asset.clj │ │ │ │ ├── chain_network_address.clj │ │ │ │ ├── exchange_rate.clj │ │ │ │ ├── exchange_rates.clj │ │ │ │ ├── exchange_rates_rate.clj │ │ │ │ └── icon.clj │ │ ├── cpp-restsdk │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── README.md │ │ │ ├── git_push.sh │ │ │ ├── include │ │ │ │ └── CppRestOpenAPIClient │ │ │ │ │ ├── AnyType.h │ │ │ │ │ ├── ApiClient.h │ │ │ │ │ ├── ApiConfiguration.h │ │ │ │ │ ├── ApiException.h │ │ │ │ │ ├── HttpContent.h │ │ │ │ │ ├── IHttpBody.h │ │ │ │ │ ├── JsonBody.h │ │ │ │ │ ├── ModelBase.h │ │ │ │ │ ├── MultipartFormData.h │ │ │ │ │ ├── Object.h │ │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.h │ │ │ │ │ └── MetadataApi.h │ │ │ │ │ └── model │ │ │ │ │ ├── V1_Asset.h │ │ │ │ │ ├── V1_ChainNetworkAddress.h │ │ │ │ │ ├── V1_ExchangeRate.h │ │ │ │ │ ├── V1_ExchangeRates.h │ │ │ │ │ ├── V1_ExchangeRatesRate.h │ │ │ │ │ └── V1_Icon.h │ │ │ └── src │ │ │ │ ├── AnyType.cpp │ │ │ │ ├── ApiClient.cpp │ │ │ │ ├── ApiConfiguration.cpp │ │ │ │ ├── ApiException.cpp │ │ │ │ ├── HttpContent.cpp │ │ │ │ ├── JsonBody.cpp │ │ │ │ ├── ModelBase.cpp │ │ │ │ ├── MultipartFormData.cpp │ │ │ │ ├── Object.cpp │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.cpp │ │ │ │ └── MetadataApi.cpp │ │ │ │ └── model │ │ │ │ ├── V1_Asset.cpp │ │ │ │ ├── V1_ChainNetworkAddress.cpp │ │ │ │ ├── V1_ExchangeRate.cpp │ │ │ │ ├── V1_ExchangeRates.cpp │ │ │ │ ├── V1_ExchangeRatesRate.cpp │ │ │ │ └── V1_Icon.cpp │ │ ├── cpp-tizen │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── doc │ │ │ │ ├── Doxyfile │ │ │ │ ├── README.md │ │ │ │ └── generateDocumentation.sh │ │ │ └── src │ │ │ │ ├── Error.cpp │ │ │ │ ├── Error.h │ │ │ │ ├── ExchangeRatesManager.cpp │ │ │ │ ├── ExchangeRatesManager.h │ │ │ │ ├── Helpers.cpp │ │ │ │ ├── Helpers.h │ │ │ │ ├── MetadataManager.cpp │ │ │ │ ├── MetadataManager.h │ │ │ │ ├── NetClient.cpp │ │ │ │ ├── NetClient.h │ │ │ │ ├── Object.h │ │ │ │ ├── RequestInfo.h │ │ │ │ ├── V1Asset.cpp │ │ │ │ ├── V1Asset.h │ │ │ │ ├── V1ChainNetworkAddress.cpp │ │ │ │ ├── V1ChainNetworkAddress.h │ │ │ │ ├── V1ExchangeRate.cpp │ │ │ │ ├── V1ExchangeRate.h │ │ │ │ ├── V1ExchangeRates.cpp │ │ │ │ ├── V1ExchangeRates.h │ │ │ │ ├── V1ExchangeRatesRate.cpp │ │ │ │ ├── V1ExchangeRatesRate.h │ │ │ │ ├── V1Icon.cpp │ │ │ │ └── V1Icon.h │ │ ├── csharp │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── APIBricks.FinFeedAPI.CurrenciesAPI.REST.V1.Realtime.sln │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── apis │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ └── MetadataApi.md │ │ │ │ ├── models │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ └── V1Icon.md │ │ │ │ └── scripts │ │ │ │ │ ├── git_push.ps1 │ │ │ │ │ └── git_push.sh │ │ │ └── src │ │ │ │ ├── APIBricks.FinFeedAPI.CurrenciesAPI.REST.V1.Realtime.Test │ │ │ │ ├── APIBricks.FinFeedAPI.CurrenciesAPI.REST.V1.Realtime.Test.csproj │ │ │ │ ├── Api │ │ │ │ │ ├── ApiTestsBase.cs │ │ │ │ │ ├── DependencyInjectionTests.cs │ │ │ │ │ ├── ExchangeRatesApiTests.cs │ │ │ │ │ └── MetadataApiTests.cs │ │ │ │ ├── Model │ │ │ │ │ ├── V1AssetTests.cs │ │ │ │ │ ├── V1ChainNetworkAddressTests.cs │ │ │ │ │ ├── V1ExchangeRateTests.cs │ │ │ │ │ ├── V1ExchangeRatesRateTests.cs │ │ │ │ │ ├── V1ExchangeRatesTests.cs │ │ │ │ │ └── V1IconTests.cs │ │ │ │ └── README.md │ │ │ │ └── APIBricks.FinFeedAPI.CurrenciesAPI.REST.V1.Realtime │ │ │ │ ├── APIBricks.FinFeedAPI.CurrenciesAPI.REST.V1.Realtime.csproj │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApi.cs │ │ │ │ ├── IApi.cs │ │ │ │ └── MetadataApi.cs │ │ │ │ ├── Client │ │ │ │ ├── ApiException.cs │ │ │ │ ├── ApiFactory.cs │ │ │ │ ├── ApiKeyToken.cs │ │ │ │ ├── ApiResponseEventArgs.cs │ │ │ │ ├── ApiResponse`1.cs │ │ │ │ ├── BearerToken.cs │ │ │ │ ├── ClientUtils.cs │ │ │ │ ├── CookieContainer.cs │ │ │ │ ├── DateOnlyJsonConverter.cs │ │ │ │ ├── DateOnlyNullableJsonConverter.cs │ │ │ │ ├── DateTimeJsonConverter.cs │ │ │ │ ├── DateTimeNullableJsonConverter.cs │ │ │ │ ├── ExceptionEventArgs.cs │ │ │ │ ├── HostConfiguration.cs │ │ │ │ ├── JsonSerializerOptionsProvider.cs │ │ │ │ ├── Option.cs │ │ │ │ ├── RateLimitProvider`1.cs │ │ │ │ ├── TokenBase.cs │ │ │ │ ├── TokenContainer`1.cs │ │ │ │ └── TokenProvider`1.cs │ │ │ │ ├── Extensions │ │ │ │ ├── IHostBuilderExtensions.cs │ │ │ │ ├── IHttpClientBuilderExtensions.cs │ │ │ │ └── IServiceCollectionExtensions.cs │ │ │ │ ├── Model │ │ │ │ ├── V1Asset.cs │ │ │ │ ├── V1ChainNetworkAddress.cs │ │ │ │ ├── V1ExchangeRate.cs │ │ │ │ ├── V1ExchangeRates.cs │ │ │ │ ├── V1ExchangeRatesRate.cs │ │ │ │ └── V1Icon.cs │ │ │ │ └── README.md │ │ ├── dart-dio │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── lib │ │ │ │ ├── openapi.dart │ │ │ │ └── src │ │ │ │ │ ├── api.dart │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.dart │ │ │ │ │ └── metadata_api.dart │ │ │ │ │ ├── api_util.dart │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── auth.dart │ │ │ │ │ ├── basic_auth.dart │ │ │ │ │ ├── bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ │ ├── date_serializer.dart │ │ │ │ │ ├── model │ │ │ │ │ ├── date.dart │ │ │ │ │ ├── v1_asset.dart │ │ │ │ │ ├── v1_chain_network_address.dart │ │ │ │ │ ├── v1_exchange_rate.dart │ │ │ │ │ ├── v1_exchange_rates.dart │ │ │ │ │ ├── v1_exchange_rates_rate.dart │ │ │ │ │ └── v1_icon.dart │ │ │ │ │ └── serializers.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── exchange_rates_api_test.dart │ │ │ │ ├── metadata_api_test.dart │ │ │ │ ├── v1_asset_test.dart │ │ │ │ ├── v1_chain_network_address_test.dart │ │ │ │ ├── v1_exchange_rate_test.dart │ │ │ │ ├── v1_exchange_rates_rate_test.dart │ │ │ │ ├── v1_exchange_rates_test.dart │ │ │ │ └── v1_icon_test.dart │ │ ├── dart │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── api.dart │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.dart │ │ │ │ │ └── metadata_api.dart │ │ │ │ ├── api_client.dart │ │ │ │ ├── api_exception.dart │ │ │ │ ├── api_helper.dart │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── authentication.dart │ │ │ │ │ ├── http_basic_auth.dart │ │ │ │ │ ├── http_bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ └── model │ │ │ │ │ ├── v1_asset.dart │ │ │ │ │ ├── v1_chain_network_address.dart │ │ │ │ │ ├── v1_exchange_rate.dart │ │ │ │ │ ├── v1_exchange_rates.dart │ │ │ │ │ ├── v1_exchange_rates_rate.dart │ │ │ │ │ └── v1_icon.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── exchange_rates_api_test.dart │ │ │ │ ├── metadata_api_test.dart │ │ │ │ ├── v1_asset_test.dart │ │ │ │ ├── v1_chain_network_address_test.dart │ │ │ │ ├── v1_exchange_rate_test.dart │ │ │ │ ├── v1_exchange_rates_rate_test.dart │ │ │ │ ├── v1_exchange_rates_test.dart │ │ │ │ └── v1_icon_test.dart │ │ ├── eiffel │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api_client.ecf │ │ │ ├── docs │ │ │ │ ├── EXCHANGERATES_API.md │ │ │ │ ├── METADATA_API.md │ │ │ │ ├── V1_ASSET.md │ │ │ │ ├── V1_CHAIN_NETWORK_ADDRESS.md │ │ │ │ ├── V1_EXCHANGE_RATE.md │ │ │ │ ├── V1_EXCHANGE_RATES.md │ │ │ │ ├── V1_EXCHANGE_RATES_RATE.md │ │ │ │ └── V1_ICON.md │ │ │ ├── src │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.e │ │ │ │ │ └── metadata_api.e │ │ │ │ ├── api_client.e │ │ │ │ ├── domain │ │ │ │ │ ├── v1_asset.e │ │ │ │ │ ├── v1_chain_network_address.e │ │ │ │ │ ├── v1_exchange_rate.e │ │ │ │ │ ├── v1_exchange_rates.e │ │ │ │ │ ├── v1_exchange_rates_rate.e │ │ │ │ │ └── v1_icon.e │ │ │ │ └── framework │ │ │ │ │ ├── api_client_request.e │ │ │ │ │ ├── api_client_response.e │ │ │ │ │ ├── api_error.e │ │ │ │ │ ├── api_i.e │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.e │ │ │ │ │ ├── authentication.e │ │ │ │ │ ├── http_basic_auth.e │ │ │ │ │ └── oauth.e │ │ │ │ │ ├── configuration.e │ │ │ │ │ └── serialization │ │ │ │ │ ├── api_deserializer.e │ │ │ │ │ ├── api_json_deserializer.e │ │ │ │ │ ├── api_json_serializer.e │ │ │ │ │ ├── api_serializer.e │ │ │ │ │ ├── json_basic_reflector_deserializer.e │ │ │ │ │ └── json_type_utilities_ext.e │ │ │ └── test │ │ │ │ ├── api_test.ecf │ │ │ │ ├── apis │ │ │ │ ├── exchangerates_api_test.e │ │ │ │ └── metadata_api_test.e │ │ │ │ └── application.e │ │ ├── elixir │ │ │ ├── .formatter.exs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ ├── config.exs │ │ │ │ └── runtime.exs │ │ │ ├── lib │ │ │ │ └── fx_realtime_restapi │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates.ex │ │ │ │ │ └── metadata.ex │ │ │ │ │ ├── connection.ex │ │ │ │ │ ├── deserializer.ex │ │ │ │ │ ├── model │ │ │ │ │ ├── v1_asset.ex │ │ │ │ │ ├── v1_chain_network_address.ex │ │ │ │ │ ├── v1_exchange_rate.ex │ │ │ │ │ ├── v1_exchange_rates.ex │ │ │ │ │ ├── v1_exchange_rates_rate.ex │ │ │ │ │ └── v1_icon.ex │ │ │ │ │ └── request_builder.ex │ │ │ ├── mix.exs │ │ │ └── test │ │ │ │ └── test_helper.exs │ │ ├── elm │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ ├── Api.elm │ │ │ │ └── Api │ │ │ │ ├── Data.elm │ │ │ │ ├── Request │ │ │ │ ├── ExchangeRates.elm │ │ │ │ └── Metadata.elm │ │ │ │ └── Time.elm │ │ ├── erlang-client │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ └── src │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi_exchange_rates_api.erl │ │ │ │ ├── openapi_metadata_api.erl │ │ │ │ ├── openapi_utils.erl │ │ │ │ ├── openapi_v1_asset.erl │ │ │ │ ├── openapi_v1_chain_network_address.erl │ │ │ │ ├── openapi_v1_exchange_rate.erl │ │ │ │ ├── openapi_v1_exchange_rates.erl │ │ │ │ ├── openapi_v1_exchange_rates_rate.erl │ │ │ │ └── openapi_v1_icon.erl │ │ ├── erlang-proper │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ ├── src │ │ │ │ ├── model │ │ │ │ │ ├── openapi_v1_asset.erl │ │ │ │ │ ├── openapi_v1_chain_network_address.erl │ │ │ │ │ ├── openapi_v1_exchange_rate.erl │ │ │ │ │ ├── openapi_v1_exchange_rates.erl │ │ │ │ │ ├── openapi_v1_exchange_rates_rate.erl │ │ │ │ │ └── openapi_v1_icon.erl │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi.hrl │ │ │ │ ├── openapi_api.erl │ │ │ │ ├── openapi_gen.erl │ │ │ │ ├── openapi_statem.erl │ │ │ │ ├── openapi_statem.hrl │ │ │ │ └── openapi_utils.erl │ │ │ └── test │ │ │ │ └── prop_openapi.erl │ │ ├── go │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── api_exchange_rates.go │ │ │ ├── api_metadata.go │ │ │ ├── client.go │ │ │ ├── configuration.go │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesAPI.md │ │ │ │ ├── MetadataAPI.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── model_v1_asset.go │ │ │ ├── model_v1_chain_network_address.go │ │ │ ├── model_v1_exchange_rate.go │ │ │ ├── model_v1_exchange_rates.go │ │ │ ├── model_v1_exchange_rates_rate.go │ │ │ ├── model_v1_icon.go │ │ │ ├── response.go │ │ │ ├── test │ │ │ │ ├── api_exchange_rates_test.go │ │ │ │ └── api_metadata_test.go │ │ │ └── utils.go │ │ ├── groovy │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ ├── api │ │ │ │ ├── ApiUtils.groovy │ │ │ │ ├── ExchangeRatesApi.groovy │ │ │ │ └── MetadataApi.groovy │ │ │ │ └── model │ │ │ │ ├── V1Asset.groovy │ │ │ │ ├── V1ChainNetworkAddress.groovy │ │ │ │ ├── V1ExchangeRate.groovy │ │ │ │ ├── V1ExchangeRates.groovy │ │ │ │ ├── V1ExchangeRatesRate.groovy │ │ │ │ └── V1Icon.groovy │ │ ├── haskell-http-client │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── Setup.hs │ │ │ ├── fx-realtime-rest.cabal │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── FXRealtimeREST.hs │ │ │ │ └── FXRealtimeREST │ │ │ │ │ ├── API.hs │ │ │ │ │ ├── API │ │ │ │ │ ├── ExchangeRates.hs │ │ │ │ │ └── Metadata.hs │ │ │ │ │ ├── Client.hs │ │ │ │ │ ├── Core.hs │ │ │ │ │ ├── Logging.hs │ │ │ │ │ ├── LoggingKatip.hs │ │ │ │ │ ├── LoggingMonadLogger.hs │ │ │ │ │ ├── MimeTypes.hs │ │ │ │ │ ├── Model.hs │ │ │ │ │ └── ModelLens.hs │ │ │ ├── openapi.yaml │ │ │ ├── stack.yaml │ │ │ └── tests │ │ │ │ ├── ApproxEq.hs │ │ │ │ ├── Instances.hs │ │ │ │ ├── PropMime.hs │ │ │ │ └── Test.hs │ │ ├── java │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── maven.yml │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── build.gradle │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── ApiCallback.java │ │ │ │ │ ├── ApiClient.java │ │ │ │ │ ├── ApiException.java │ │ │ │ │ ├── ApiResponse.java │ │ │ │ │ ├── Configuration.java │ │ │ │ │ ├── GzipRequestInterceptor.java │ │ │ │ │ ├── JSON.java │ │ │ │ │ ├── Pair.java │ │ │ │ │ ├── ProgressRequestBody.java │ │ │ │ │ ├── ProgressResponseBody.java │ │ │ │ │ ├── ServerConfiguration.java │ │ │ │ │ ├── ServerVariable.java │ │ │ │ │ ├── StringUtil.java │ │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.java │ │ │ │ │ └── MetadataApi.java │ │ │ │ │ ├── auth │ │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ │ ├── Authentication.java │ │ │ │ │ ├── HttpBasicAuth.java │ │ │ │ │ └── HttpBearerAuth.java │ │ │ │ │ └── model │ │ │ │ │ ├── AbstractOpenApiSchema.java │ │ │ │ │ ├── V1Asset.java │ │ │ │ │ ├── V1ChainNetworkAddress.java │ │ │ │ │ ├── V1ExchangeRate.java │ │ │ │ │ ├── V1ExchangeRates.java │ │ │ │ │ ├── V1ExchangeRatesRate.java │ │ │ │ │ └── V1Icon.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApiTest.java │ │ │ │ └── MetadataApiTest.java │ │ │ │ └── model │ │ │ │ ├── V1AssetTest.java │ │ │ │ ├── V1ChainNetworkAddressTest.java │ │ │ │ ├── V1ExchangeRateTest.java │ │ │ │ ├── V1ExchangeRatesRateTest.java │ │ │ │ ├── V1ExchangeRatesTest.java │ │ │ │ └── V1IconTest.java │ │ ├── javascript-closure-angular │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ └── API │ │ │ │ └── Client │ │ │ │ ├── ExchangeRatesApi.js │ │ │ │ ├── MetadataApi.js │ │ │ │ ├── V1Asset.js │ │ │ │ ├── V1ChainNetworkAddress.js │ │ │ │ ├── V1ExchangeRate.js │ │ │ │ ├── V1ExchangeRates.js │ │ │ │ ├── V1ExchangeRatesRate.js │ │ │ │ └── V1Icon.js │ │ ├── javascript-flowtyped │ │ │ ├── .babelrc │ │ │ ├── .flowconfig │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── api.js │ │ │ │ ├── configuration.js │ │ │ │ └── index.js │ │ ├── javascript │ │ │ ├── .babelrc │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── mocha.opts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── ApiClient.js │ │ │ │ ├── api │ │ │ │ │ ├── ExchangeRatesApi.js │ │ │ │ │ └── MetadataApi.js │ │ │ │ ├── index.js │ │ │ │ └── model │ │ │ │ │ ├── V1Asset.js │ │ │ │ │ ├── V1ChainNetworkAddress.js │ │ │ │ │ ├── V1ExchangeRate.js │ │ │ │ │ ├── V1ExchangeRates.js │ │ │ │ │ ├── V1ExchangeRatesRate.js │ │ │ │ │ └── V1Icon.js │ │ │ └── test │ │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.spec.js │ │ │ │ └── MetadataApi.spec.js │ │ │ │ └── model │ │ │ │ ├── V1Asset.spec.js │ │ │ │ ├── V1ChainNetworkAddress.spec.js │ │ │ │ ├── V1ExchangeRate.spec.js │ │ │ │ ├── V1ExchangeRates.spec.js │ │ │ │ ├── V1ExchangeRatesRate.spec.js │ │ │ │ └── V1Icon.spec.js │ │ ├── kotlin │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── apis │ │ │ │ │ ├── ExchangeRatesApi.kt │ │ │ │ │ └── MetadataApi.kt │ │ │ │ │ ├── infrastructure │ │ │ │ │ ├── ApiAbstractions.kt │ │ │ │ │ ├── ApiClient.kt │ │ │ │ │ ├── ApiResponse.kt │ │ │ │ │ ├── BigDecimalAdapter.kt │ │ │ │ │ ├── BigIntegerAdapter.kt │ │ │ │ │ ├── ByteArrayAdapter.kt │ │ │ │ │ ├── Errors.kt │ │ │ │ │ ├── LocalDateAdapter.kt │ │ │ │ │ ├── LocalDateTimeAdapter.kt │ │ │ │ │ ├── OffsetDateTimeAdapter.kt │ │ │ │ │ ├── PartConfig.kt │ │ │ │ │ ├── RequestConfig.kt │ │ │ │ │ ├── RequestMethod.kt │ │ │ │ │ ├── ResponseExtensions.kt │ │ │ │ │ ├── Serializer.kt │ │ │ │ │ ├── URIAdapter.kt │ │ │ │ │ └── UUIDAdapter.kt │ │ │ │ │ └── models │ │ │ │ │ ├── V1Asset.kt │ │ │ │ │ ├── V1ChainNetworkAddress.kt │ │ │ │ │ ├── V1ExchangeRate.kt │ │ │ │ │ ├── V1ExchangeRates.kt │ │ │ │ │ ├── V1ExchangeRatesRate.kt │ │ │ │ │ └── V1Icon.kt │ │ │ │ └── test │ │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── apis │ │ │ │ ├── ExchangeRatesApiTest.kt │ │ │ │ └── MetadataApiTest.kt │ │ │ │ └── models │ │ │ │ ├── V1AssetTest.kt │ │ │ │ ├── V1ChainNetworkAddressTest.kt │ │ │ │ ├── V1ExchangeRateTest.kt │ │ │ │ ├── V1ExchangeRatesRateTest.kt │ │ │ │ ├── V1ExchangeRatesTest.kt │ │ │ │ └── V1IconTest.kt │ │ ├── lua │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── openapiclient-1.0.0-1.rockspec │ │ │ ├── openapiclient │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.lua │ │ │ │ │ └── metadata_api.lua │ │ │ │ └── model │ │ │ │ │ ├── v1_asset.lua │ │ │ │ │ ├── v1_chain_network_address.lua │ │ │ │ │ ├── v1_exchange_rate.lua │ │ │ │ │ ├── v1_exchange_rates.lua │ │ │ │ │ ├── v1_exchange_rates_rate.lua │ │ │ │ │ └── v1_icon.lua │ │ │ └── spec │ │ │ │ ├── exchange_rates_api_spec.lua │ │ │ │ ├── metadata_api_spec.lua │ │ │ │ ├── v1_asset_spec.lua │ │ │ │ ├── v1_chain_network_address_spec.lua │ │ │ │ ├── v1_exchange_rate_spec.lua │ │ │ │ ├── v1_exchange_rates_rate_spec.lua │ │ │ │ ├── v1_exchange_rates_spec.lua │ │ │ │ └── v1_icon_spec.lua │ │ ├── perl │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── autodoc │ │ │ ├── cpanfile │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ └── WWW │ │ │ │ │ └── OpenAPIClient │ │ │ │ │ ├── ApiClient.pm │ │ │ │ │ ├── ApiFactory.pm │ │ │ │ │ ├── Configuration.pm │ │ │ │ │ ├── ExchangeRatesApi.pm │ │ │ │ │ ├── MetadataApi.pm │ │ │ │ │ ├── Object │ │ │ │ │ ├── V1Asset.pm │ │ │ │ │ ├── V1ChainNetworkAddress.pm │ │ │ │ │ ├── V1ExchangeRate.pm │ │ │ │ │ ├── V1ExchangeRates.pm │ │ │ │ │ ├── V1ExchangeRatesRate.pm │ │ │ │ │ └── V1Icon.pm │ │ │ │ │ ├── Role.pm │ │ │ │ │ └── Role │ │ │ │ │ └── AutoDoc.pm │ │ │ └── t │ │ │ │ ├── ExchangeRatesApiTest.t │ │ │ │ ├── MetadataApiTest.t │ │ │ │ ├── V1AssetTest.t │ │ │ │ ├── V1ChainNetworkAddressTest.t │ │ │ │ ├── V1ExchangeRateTest.t │ │ │ │ ├── V1ExchangeRatesRateTest.t │ │ │ │ ├── V1ExchangeRatesTest.t │ │ │ │ └── V1IconTest.t │ │ ├── php │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ └── MetadataApi.md │ │ │ │ └── Model │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.php │ │ │ │ │ └── MetadataApi.php │ │ │ │ ├── ApiException.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── FormDataProcessor.php │ │ │ │ ├── HeaderSelector.php │ │ │ │ ├── Model │ │ │ │ │ ├── ModelInterface.php │ │ │ │ │ ├── V1Asset.php │ │ │ │ │ ├── V1ChainNetworkAddress.php │ │ │ │ │ ├── V1ExchangeRate.php │ │ │ │ │ ├── V1ExchangeRates.php │ │ │ │ │ ├── V1ExchangeRatesRate.php │ │ │ │ │ └── V1Icon.php │ │ │ │ └── ObjectSerializer.php │ │ │ ├── phpunit.xml.dist │ │ │ └── test │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApiTest.php │ │ │ │ └── MetadataApiTest.php │ │ │ │ └── Model │ │ │ │ ├── V1AssetTest.php │ │ │ │ ├── V1ChainNetworkAddressTest.php │ │ │ │ ├── V1ExchangeRateTest.php │ │ │ │ ├── V1ExchangeRatesRateTest.php │ │ │ │ ├── V1ExchangeRatesTest.php │ │ │ │ └── V1IconTest.php │ │ ├── powershell │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Build.ps1 │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── src │ │ │ │ └── PSOpenAPITools │ │ │ │ │ ├── Api │ │ │ │ │ ├── ExchangeRatesApi.ps1 │ │ │ │ │ └── MetadataApi.ps1 │ │ │ │ │ ├── Client │ │ │ │ │ └── Configuration.ps1 │ │ │ │ │ ├── Model │ │ │ │ │ ├── V1Asset.ps1 │ │ │ │ │ ├── V1ChainNetworkAddress.ps1 │ │ │ │ │ ├── V1ExchangeRate.ps1 │ │ │ │ │ ├── V1ExchangeRates.ps1 │ │ │ │ │ ├── V1ExchangeRatesRate.ps1 │ │ │ │ │ └── V1Icon.ps1 │ │ │ │ │ ├── PSOpenAPITools.psm1 │ │ │ │ │ ├── Private │ │ │ │ │ ├── ApiClient.ps1 │ │ │ │ │ ├── Get-CommonParameters.ps1 │ │ │ │ │ ├── HttpSignatureAuth.ps1 │ │ │ │ │ ├── Out-DebugParameter.ps1 │ │ │ │ │ └── RSAEncryptionProvider.cs │ │ │ │ │ └── en-US │ │ │ │ │ └── about_PSOpenAPITools.help.txt │ │ │ └── tests │ │ │ │ ├── Api │ │ │ │ ├── ExchangeRatesApi.Tests.ps1 │ │ │ │ └── MetadataApi.Tests.ps1 │ │ │ │ └── Model │ │ │ │ ├── V1Asset.Tests.ps1 │ │ │ │ ├── V1ChainNetworkAddress.Tests.ps1 │ │ │ │ ├── V1ExchangeRate.Tests.ps1 │ │ │ │ ├── V1ExchangeRates.Tests.ps1 │ │ │ │ ├── V1ExchangeRatesRate.Tests.ps1 │ │ │ │ └── V1Icon.Tests.ps1 │ │ ├── python │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api_bricks_currencies_api_rest_realtime │ │ │ │ ├── __init__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exchange_rates_api.py │ │ │ │ │ └── metadata_api.py │ │ │ │ ├── api_client.py │ │ │ │ ├── api_response.py │ │ │ │ ├── configuration.py │ │ │ │ ├── docs │ │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ │ ├── MetadataApi.md │ │ │ │ │ ├── V1Asset.md │ │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ │ └── V1Icon.md │ │ │ │ ├── exceptions.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── v1_asset.py │ │ │ │ │ ├── v1_chain_network_address.py │ │ │ │ │ ├── v1_exchange_rate.py │ │ │ │ │ ├── v1_exchange_rates.py │ │ │ │ │ ├── v1_exchange_rates_rate.py │ │ │ │ │ └── v1_icon.py │ │ │ │ ├── rest.py │ │ │ │ └── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_exchange_rates_api.py │ │ │ │ │ ├── test_metadata_api.py │ │ │ │ │ ├── test_v1_asset.py │ │ │ │ │ ├── test_v1_chain_network_address.py │ │ │ │ │ ├── test_v1_exchange_rate.py │ │ │ │ │ ├── test_v1_exchange_rates.py │ │ │ │ │ ├── test_v1_exchange_rates_rate.py │ │ │ │ │ └── test_v1_icon.py │ │ │ └── api_bricks_currencies_api_rest_realtime_README.md │ │ ├── r │ │ │ ├── .Rbuildignore │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── r-client.yaml │ │ │ ├── .gitignore │ │ │ ├── .lintr │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── api_client.R │ │ │ │ ├── api_response.R │ │ │ │ ├── exchange_rates_api.R │ │ │ │ ├── metadata_api.R │ │ │ │ ├── v1_asset.R │ │ │ │ ├── v1_chain_network_address.R │ │ │ │ ├── v1_exchange_rate.R │ │ │ │ ├── v1_exchange_rates.R │ │ │ │ ├── v1_exchange_rates_rate.R │ │ │ │ └── v1_icon.R │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ └── tests │ │ │ │ ├── testthat.R │ │ │ │ └── testthat │ │ │ │ ├── test_exchange_rates_api.R │ │ │ │ ├── test_metadata_api.R │ │ │ │ ├── test_v1_asset.R │ │ │ │ ├── test_v1_chain_network_address.R │ │ │ │ ├── test_v1_exchange_rate.R │ │ │ │ ├── test_v1_exchange_rates.R │ │ │ │ ├── test_v1_exchange_rates_rate.R │ │ │ │ └── test_v1_icon.R │ │ ├── ruby │ │ │ ├── .gitignore │ │ │ ├── .gitlab-ci.yml │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .rspec │ │ │ ├── .rubocop.yml │ │ │ ├── .travis.yml │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── openapi_client.rb │ │ │ │ └── openapi_client │ │ │ │ │ ├── api │ │ │ │ │ ├── exchange_rates_api.rb │ │ │ │ │ └── metadata_api.rb │ │ │ │ │ ├── api_client.rb │ │ │ │ │ ├── api_error.rb │ │ │ │ │ ├── api_model_base.rb │ │ │ │ │ ├── configuration.rb │ │ │ │ │ ├── models │ │ │ │ │ ├── v1_asset.rb │ │ │ │ │ ├── v1_chain_network_address.rb │ │ │ │ │ ├── v1_exchange_rate.rb │ │ │ │ │ ├── v1_exchange_rates.rb │ │ │ │ │ ├── v1_exchange_rates_rate.rb │ │ │ │ │ └── v1_icon.rb │ │ │ │ │ └── version.rb │ │ │ ├── openapi_client.gemspec │ │ │ └── spec │ │ │ │ ├── api │ │ │ │ ├── exchange_rates_api_spec.rb │ │ │ │ └── metadata_api_spec.rb │ │ │ │ ├── models │ │ │ │ ├── v1_asset_spec.rb │ │ │ │ ├── v1_chain_network_address_spec.rb │ │ │ │ ├── v1_exchange_rate_spec.rb │ │ │ │ ├── v1_exchange_rates_rate_spec.rb │ │ │ │ ├── v1_exchange_rates_spec.rb │ │ │ │ └── v1_icon_spec.rb │ │ │ │ └── spec_helper.rb │ │ ├── scala-akka │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── ExchangeRatesApi.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── V1Asset.md │ │ │ │ ├── V1ChainNetworkAddress.md │ │ │ │ ├── V1ExchangeRate.md │ │ │ │ ├── V1ExchangeRates.md │ │ │ │ ├── V1ExchangeRatesRate.md │ │ │ │ └── V1Icon.md │ │ │ ├── pom.xml │ │ │ ├── project │ │ │ │ └── build.properties │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── reference.conf │ │ │ │ └── scala │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── EnumsSerializers.scala │ │ │ │ ├── ExchangeRatesApi.scala │ │ │ │ └── MetadataApi.scala │ │ │ │ ├── core │ │ │ │ ├── ApiInvoker.scala │ │ │ │ ├── ApiRequest.scala │ │ │ │ ├── ApiSettings.scala │ │ │ │ ├── Serializers.scala │ │ │ │ └── requests.scala │ │ │ │ └── model │ │ │ │ ├── Asset.scala │ │ │ │ ├── ChainNetworkAddress.scala │ │ │ │ ├── ExchangeRate.scala │ │ │ │ ├── ExchangeRates.scala │ │ │ │ ├── ExchangeRatesRate.scala │ │ │ │ └── Icon.scala │ │ ├── typescript-angular │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── api.base.service.ts │ │ │ ├── api.module.ts │ │ │ ├── api │ │ │ │ ├── api.ts │ │ │ │ ├── exchangeRates.service.ts │ │ │ │ └── metadata.service.ts │ │ │ ├── configuration.ts │ │ │ ├── encoder.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── models.ts │ │ │ │ ├── v1Asset.ts │ │ │ │ ├── v1ChainNetworkAddress.ts │ │ │ │ ├── v1ExchangeRate.ts │ │ │ │ ├── v1ExchangeRates.ts │ │ │ │ ├── v1ExchangeRatesRate.ts │ │ │ │ └── v1Icon.ts │ │ │ ├── param.ts │ │ │ ├── provide-api.ts │ │ │ └── variables.ts │ │ ├── typescript-jquery │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api │ │ │ │ ├── ExchangeRatesApi.ts │ │ │ │ ├── MetadataApi.ts │ │ │ │ └── api.ts │ │ │ ├── configuration.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── V1Asset.ts │ │ │ │ ├── V1ChainNetworkAddress.ts │ │ │ │ ├── V1ExchangeRate.ts │ │ │ │ ├── V1ExchangeRates.ts │ │ │ │ ├── V1ExchangeRatesRate.ts │ │ │ │ ├── V1Icon.ts │ │ │ │ └── models.ts │ │ │ └── variables.ts │ │ ├── typescript-node │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── api │ │ │ │ ├── apis.ts │ │ │ │ ├── exchangeRatesApi.ts │ │ │ │ └── metadataApi.ts │ │ │ ├── git_push.sh │ │ │ └── model │ │ │ │ ├── models.ts │ │ │ │ ├── v1Asset.ts │ │ │ │ ├── v1ChainNetworkAddress.ts │ │ │ │ ├── v1ExchangeRate.ts │ │ │ │ ├── v1ExchangeRates.ts │ │ │ │ ├── v1ExchangeRatesRate.ts │ │ │ │ └── v1Icon.ts │ │ └── typescript-rxjs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ │ ├── apis │ │ │ ├── ExchangeRatesApi.ts │ │ │ ├── MetadataApi.ts │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ ├── V1Asset.ts │ │ │ ├── V1ChainNetworkAddress.ts │ │ │ ├── V1ExchangeRate.ts │ │ │ ├── V1ExchangeRates.ts │ │ │ ├── V1ExchangeRatesRate.ts │ │ │ ├── V1Icon.ts │ │ │ └── index.ts │ │ │ ├── runtime.ts │ │ │ ├── servers.ts │ │ │ └── tsconfig.json │ ├── spec │ │ ├── openapi.json │ │ └── openapi.yaml │ └── tutorials │ │ └── Visualizing-Live-FX-Rates.ipynb ├── prediction-markets-api-rest │ ├── spec │ │ ├── openapi.json │ │ └── openapi.yaml │ └── tutorials │ │ └── Get-a-Live-Order-Book-Snapshot-for-a-Prediction-Market.ipynb ├── sec-api-rest │ ├── openapitools.json │ ├── sdk-config │ │ ├── ada.yaml │ │ ├── android.yaml │ │ ├── apex.yaml │ │ ├── bash.yaml │ │ ├── c.yaml │ │ ├── clojure.yaml │ │ ├── cpp-restsdk.yaml │ │ ├── cpp-tizen.yaml │ │ ├── csharp.yaml │ │ ├── dart-dio.yaml │ │ ├── dart.yaml │ │ ├── eiffel.yaml │ │ ├── elixir.yaml │ │ ├── elm.yaml │ │ ├── erlang-client.yaml │ │ ├── erlang-proper.yaml │ │ ├── go.yaml │ │ ├── groovy.yaml │ │ ├── haskell-http-client.yaml │ │ ├── java.yaml │ │ ├── javascript-closure-angular.yaml │ │ ├── javascript-flowtyped.yaml │ │ ├── javascript.yaml │ │ ├── kotlin.yaml │ │ ├── lua.yaml │ │ ├── perl.yaml │ │ ├── php.yaml │ │ ├── powershell.yaml │ │ ├── python.yaml │ │ ├── r.yaml │ │ ├── ruby.yaml │ │ ├── scala-akka.yaml │ │ ├── shared │ │ │ └── common.yaml │ │ ├── typescript-angular.yaml │ │ ├── typescript-jquery.yaml │ │ ├── typescript-node.yaml │ │ └── typescript-rxjs.yaml │ ├── sdk │ │ ├── ada │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── config.gpr │ │ │ ├── defaultpackage.gpr │ │ │ └── src │ │ │ │ ├── -client.adb │ │ │ │ ├── .ads │ │ │ │ ├── client │ │ │ │ ├── -clients.adb │ │ │ │ └── -clients.ads │ │ │ │ └── model │ │ │ │ ├── -models.adb │ │ │ │ └── -models.ads │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ ├── DTOExtractorType.md │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ ├── FileDownloadApi.md │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ └── XBRLConversionApi.md │ │ │ ├── git_push.sh │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── ApiException.java │ │ │ │ ├── ApiInvoker.java │ │ │ │ ├── JsonUtil.java │ │ │ │ ├── Pair.java │ │ │ │ ├── api │ │ │ │ ├── ContentExtractionApi.java │ │ │ │ ├── FileDownloadApi.java │ │ │ │ ├── FilingMetadataApi.java │ │ │ │ ├── FullTextSearchApi.java │ │ │ │ └── XBRLConversionApi.java │ │ │ │ ├── auth │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ ├── Authentication.java │ │ │ │ └── HttpBasicAuth.java │ │ │ │ ├── model │ │ │ │ ├── DTOExtractorType.java │ │ │ │ ├── DTOFilingMetadataDto.java │ │ │ │ ├── DTOFilingSortBy.java │ │ │ │ ├── DTOSecFilingResultDto.java │ │ │ │ ├── MvcProblemDetails.java │ │ │ │ └── MvcValidationProblemDetails.java │ │ │ │ └── request │ │ │ │ ├── DeleteRequest.java │ │ │ │ ├── GetRequest.java │ │ │ │ ├── PatchRequest.java │ │ │ │ ├── PostRequest.java │ │ │ │ └── PutRequest.java │ │ ├── apex │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── project-scratch-def.json │ │ │ ├── force-app │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ ├── classes │ │ │ │ │ ├── OAS.cls │ │ │ │ │ ├── OAS.cls-meta.xml │ │ │ │ │ ├── OASClient.cls │ │ │ │ │ ├── OASClient.cls-meta.xml │ │ │ │ │ ├── OASContentExtractionApi.cls │ │ │ │ │ ├── OASContentExtractionApi.cls-meta.xml │ │ │ │ │ ├── OASContentExtractionApiTest.cls │ │ │ │ │ ├── OASContentExtractionApiTest.cls-meta.xml │ │ │ │ │ ├── OASDTOExtractorType.cls │ │ │ │ │ ├── OASDTOExtractorType.cls-meta.xml │ │ │ │ │ ├── OASDTOExtractorTypeTest.cls │ │ │ │ │ ├── OASDTOExtractorTypeTest.cls-meta.xml │ │ │ │ │ ├── OASDTOFilingMetadataDto.cls │ │ │ │ │ ├── OASDTOFilingMetadataDto.cls-meta.xml │ │ │ │ │ ├── OASDTOFilingMetadataDtoTest.cls │ │ │ │ │ ├── OASDTOFilingMetadataDtoTest.cls-meta.xml │ │ │ │ │ ├── OASDTOFilingSortBy.cls │ │ │ │ │ ├── OASDTOFilingSortBy.cls-meta.xml │ │ │ │ │ ├── OASDTOFilingSortByTest.cls │ │ │ │ │ ├── OASDTOFilingSortByTest.cls-meta.xml │ │ │ │ │ ├── OASDTOSecFilingResultDto.cls │ │ │ │ │ ├── OASDTOSecFilingResultDto.cls-meta.xml │ │ │ │ │ ├── OASDTOSecFilingResultDtoTest.cls │ │ │ │ │ ├── OASDTOSecFilingResultDtoTest.cls-meta.xml │ │ │ │ │ ├── OASFileDownloadApi.cls │ │ │ │ │ ├── OASFileDownloadApi.cls-meta.xml │ │ │ │ │ ├── OASFileDownloadApiTest.cls │ │ │ │ │ ├── OASFileDownloadApiTest.cls-meta.xml │ │ │ │ │ ├── OASFilingMetadataApi.cls │ │ │ │ │ ├── OASFilingMetadataApi.cls-meta.xml │ │ │ │ │ ├── OASFilingMetadataApiTest.cls │ │ │ │ │ ├── OASFilingMetadataApiTest.cls-meta.xml │ │ │ │ │ ├── OASFullTextSearchApi.cls │ │ │ │ │ ├── OASFullTextSearchApi.cls-meta.xml │ │ │ │ │ ├── OASFullTextSearchApiTest.cls │ │ │ │ │ ├── OASFullTextSearchApiTest.cls-meta.xml │ │ │ │ │ ├── OASMvcProblemDetails.cls │ │ │ │ │ ├── OASMvcProblemDetails.cls-meta.xml │ │ │ │ │ ├── OASMvcProblemDetailsTest.cls │ │ │ │ │ ├── OASMvcProblemDetailsTest.cls-meta.xml │ │ │ │ │ ├── OASMvcValidationProblemDetails.cls │ │ │ │ │ ├── OASMvcValidationProblemDetails.cls-meta.xml │ │ │ │ │ ├── OASMvcValidationProblemDetailsTest.cls │ │ │ │ │ ├── OASMvcValidationProblemDetailsTest.cls-meta.xml │ │ │ │ │ ├── OASResponseMock.cls │ │ │ │ │ ├── OASResponseMock.cls-meta.xml │ │ │ │ │ ├── OASTest.cls │ │ │ │ │ ├── OASTest.cls-meta.xml │ │ │ │ │ ├── OASXBRLConversionApi.cls │ │ │ │ │ ├── OASXBRLConversionApi.cls-meta.xml │ │ │ │ │ ├── OASXBRLConversionApiTest.cls │ │ │ │ │ └── OASXBRLConversionApiTest.cls-meta.xml │ │ │ │ │ └── namedCredentials │ │ │ │ │ └── FinFeedAPI_SEC_REST_API.namedCredential-meta.xml │ │ │ └── sfdx-project.json │ │ ├── bash │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── _client.sh │ │ │ ├── client.sh │ │ │ ├── client.sh.bash-completion │ │ │ └── docs │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ ├── DTOExtractorType.md │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ ├── FileDownloadApi.md │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ └── XBRLConversionApi.md │ │ ├── c │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── Packing.cmake │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ ├── ContentExtractionAPI.c │ │ │ │ ├── ContentExtractionAPI.h │ │ │ │ ├── FileDownloadAPI.c │ │ │ │ ├── FileDownloadAPI.h │ │ │ │ ├── FilingMetadataAPI.c │ │ │ │ ├── FilingMetadataAPI.h │ │ │ │ ├── FullTextSearchAPI.c │ │ │ │ ├── FullTextSearchAPI.h │ │ │ │ ├── XBRLConversionAPI.c │ │ │ │ └── XBRLConversionAPI.h │ │ │ ├── docs │ │ │ │ ├── ContentExtractionAPI.md │ │ │ │ ├── FileDownloadAPI.md │ │ │ │ ├── FilingMetadataAPI.md │ │ │ │ ├── FullTextSearchAPI.md │ │ │ │ ├── XBRLConversionAPI.md │ │ │ │ ├── dto_extractor_type.md │ │ │ │ ├── dto_filing_metadata_dto.md │ │ │ │ ├── dto_filing_sort_by.md │ │ │ │ ├── dto_sec_filing_result_dto.md │ │ │ │ ├── mvc_problem_details.md │ │ │ │ └── mvc_validation_problem_details.md │ │ │ ├── external │ │ │ │ ├── cJSON.c │ │ │ │ ├── cJSON.h │ │ │ │ └── cJSON.licence │ │ │ ├── include │ │ │ │ ├── apiClient.h │ │ │ │ ├── binary.h │ │ │ │ ├── keyValuePair.h │ │ │ │ └── list.h │ │ │ ├── libcurl.licence │ │ │ ├── model │ │ │ │ ├── any_type.h │ │ │ │ ├── dto_extractor_type.c │ │ │ │ ├── dto_extractor_type.h │ │ │ │ ├── dto_filing_metadata_dto.c │ │ │ │ ├── dto_filing_metadata_dto.h │ │ │ │ ├── dto_filing_sort_by.c │ │ │ │ ├── dto_filing_sort_by.h │ │ │ │ ├── dto_sec_filing_result_dto.c │ │ │ │ ├── dto_sec_filing_result_dto.h │ │ │ │ ├── mvc_problem_details.c │ │ │ │ ├── mvc_problem_details.h │ │ │ │ ├── mvc_validation_problem_details.c │ │ │ │ ├── mvc_validation_problem_details.h │ │ │ │ ├── object.c │ │ │ │ └── object.h │ │ │ ├── src │ │ │ │ ├── apiClient.c │ │ │ │ ├── apiKey.c │ │ │ │ ├── binary.c │ │ │ │ └── list.c │ │ │ ├── uncrustify-rules.cfg │ │ │ └── unit-test │ │ │ │ ├── test_dto_extractor_type.c │ │ │ │ ├── test_dto_filing_metadata_dto.c │ │ │ │ ├── test_dto_filing_sort_by.c │ │ │ │ ├── test_dto_sec_filing_result_dto.c │ │ │ │ ├── test_mvc_problem_details.c │ │ │ │ └── test_mvc_validation_problem_details.c │ │ ├── clojure │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── project.clj │ │ │ └── src │ │ │ │ └── fin_feed_api_sec_rest_api │ │ │ │ ├── api │ │ │ │ ├── content_extraction.clj │ │ │ │ ├── file_download.clj │ │ │ │ ├── filing_metadata.clj │ │ │ │ ├── full_text_search.clj │ │ │ │ └── xbrl_conversion.clj │ │ │ │ ├── core.clj │ │ │ │ └── specs │ │ │ │ ├── dto │ │ │ │ ├── extractor_type.clj │ │ │ │ ├── filing_metadata_dto.clj │ │ │ │ ├── filing_sort_by.clj │ │ │ │ └── sec_filing_result_dto.clj │ │ │ │ └── mvc │ │ │ │ ├── problem_details.clj │ │ │ │ └── validation_problem_details.clj │ │ ├── cpp-restsdk │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cmake.in │ │ │ ├── README.md │ │ │ ├── git_push.sh │ │ │ ├── include │ │ │ │ └── CppRestOpenAPIClient │ │ │ │ │ ├── AnyType.h │ │ │ │ │ ├── ApiClient.h │ │ │ │ │ ├── ApiConfiguration.h │ │ │ │ │ ├── ApiException.h │ │ │ │ │ ├── HttpContent.h │ │ │ │ │ ├── IHttpBody.h │ │ │ │ │ ├── JsonBody.h │ │ │ │ │ ├── ModelBase.h │ │ │ │ │ ├── MultipartFormData.h │ │ │ │ │ ├── Object.h │ │ │ │ │ ├── api │ │ │ │ │ ├── ContentExtractionApi.h │ │ │ │ │ ├── FileDownloadApi.h │ │ │ │ │ ├── FilingMetadataApi.h │ │ │ │ │ ├── FullTextSearchApi.h │ │ │ │ │ └── XBRLConversionApi.h │ │ │ │ │ └── model │ │ │ │ │ ├── DTO_ExtractorType.h │ │ │ │ │ ├── DTO_FilingMetadataDto.h │ │ │ │ │ ├── DTO_FilingSortBy.h │ │ │ │ │ ├── DTO_SecFilingResultDto.h │ │ │ │ │ ├── Mvc_ProblemDetails.h │ │ │ │ │ └── Mvc_ValidationProblemDetails.h │ │ │ └── src │ │ │ │ ├── AnyType.cpp │ │ │ │ ├── ApiClient.cpp │ │ │ │ ├── ApiConfiguration.cpp │ │ │ │ ├── ApiException.cpp │ │ │ │ ├── HttpContent.cpp │ │ │ │ ├── JsonBody.cpp │ │ │ │ ├── ModelBase.cpp │ │ │ │ ├── MultipartFormData.cpp │ │ │ │ ├── Object.cpp │ │ │ │ ├── api │ │ │ │ ├── ContentExtractionApi.cpp │ │ │ │ ├── FileDownloadApi.cpp │ │ │ │ ├── FilingMetadataApi.cpp │ │ │ │ ├── FullTextSearchApi.cpp │ │ │ │ └── XBRLConversionApi.cpp │ │ │ │ └── model │ │ │ │ ├── DTO_ExtractorType.cpp │ │ │ │ ├── DTO_FilingMetadataDto.cpp │ │ │ │ ├── DTO_FilingSortBy.cpp │ │ │ │ ├── DTO_SecFilingResultDto.cpp │ │ │ │ ├── Mvc_ProblemDetails.cpp │ │ │ │ └── Mvc_ValidationProblemDetails.cpp │ │ ├── cpp-tizen │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── doc │ │ │ │ ├── Doxyfile │ │ │ │ ├── README.md │ │ │ │ └── generateDocumentation.sh │ │ │ └── src │ │ │ │ ├── ContentExtractionManager.cpp │ │ │ │ ├── ContentExtractionManager.h │ │ │ │ ├── DTOExtractorType.cpp │ │ │ │ ├── DTOExtractorType.h │ │ │ │ ├── DTOFilingMetadataDto.cpp │ │ │ │ ├── DTOFilingMetadataDto.h │ │ │ │ ├── DTOFilingSortBy.cpp │ │ │ │ ├── DTOFilingSortBy.h │ │ │ │ ├── DTOSecFilingResultDto.cpp │ │ │ │ ├── DTOSecFilingResultDto.h │ │ │ │ ├── Error.cpp │ │ │ │ ├── Error.h │ │ │ │ ├── FileDownloadManager.cpp │ │ │ │ ├── FileDownloadManager.h │ │ │ │ ├── FilingMetadataManager.cpp │ │ │ │ ├── FilingMetadataManager.h │ │ │ │ ├── FullTextSearchManager.cpp │ │ │ │ ├── FullTextSearchManager.h │ │ │ │ ├── Helpers.cpp │ │ │ │ ├── Helpers.h │ │ │ │ ├── MvcProblemDetails.cpp │ │ │ │ ├── MvcProblemDetails.h │ │ │ │ ├── MvcValidationProblemDetails.cpp │ │ │ │ ├── MvcValidationProblemDetails.h │ │ │ │ ├── NetClient.cpp │ │ │ │ ├── NetClient.h │ │ │ │ ├── Object.h │ │ │ │ ├── RequestInfo.h │ │ │ │ ├── XBRLConversionManager.cpp │ │ │ │ └── XBRLConversionManager.h │ │ ├── csharp │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── APIBricks.FinFeedAPI.SECAPI.REST.V1.sln │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── apis │ │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ │ ├── FileDownloadApi.md │ │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ │ └── XBRLConversionApi.md │ │ │ │ ├── models │ │ │ │ │ ├── DTOExtractorType.md │ │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ │ └── MvcValidationProblemDetails.md │ │ │ │ └── scripts │ │ │ │ │ ├── git_push.ps1 │ │ │ │ │ └── git_push.sh │ │ │ └── src │ │ │ │ ├── APIBricks.FinFeedAPI.SECAPI.REST.V1.Test │ │ │ │ ├── APIBricks.FinFeedAPI.SECAPI.REST.V1.Test.csproj │ │ │ │ ├── Api │ │ │ │ │ ├── ApiTestsBase.cs │ │ │ │ │ ├── ContentExtractionApiTests.cs │ │ │ │ │ ├── DependencyInjectionTests.cs │ │ │ │ │ ├── FileDownloadApiTests.cs │ │ │ │ │ ├── FilingMetadataApiTests.cs │ │ │ │ │ ├── FullTextSearchApiTests.cs │ │ │ │ │ └── XBRLConversionApiTests.cs │ │ │ │ ├── Model │ │ │ │ │ ├── DTOExtractorTypeTests.cs │ │ │ │ │ ├── DTOFilingMetadataDtoTests.cs │ │ │ │ │ ├── DTOFilingSortByTests.cs │ │ │ │ │ ├── DTOSecFilingResultDtoTests.cs │ │ │ │ │ ├── MvcProblemDetailsTests.cs │ │ │ │ │ └── MvcValidationProblemDetailsTests.cs │ │ │ │ └── README.md │ │ │ │ └── APIBricks.FinFeedAPI.SECAPI.REST.V1 │ │ │ │ ├── APIBricks.FinFeedAPI.SECAPI.REST.V1.csproj │ │ │ │ ├── Api │ │ │ │ ├── ContentExtractionApi.cs │ │ │ │ ├── FileDownloadApi.cs │ │ │ │ ├── FilingMetadataApi.cs │ │ │ │ ├── FullTextSearchApi.cs │ │ │ │ ├── IApi.cs │ │ │ │ └── XBRLConversionApi.cs │ │ │ │ ├── Client │ │ │ │ ├── ApiException.cs │ │ │ │ ├── ApiFactory.cs │ │ │ │ ├── ApiKeyToken.cs │ │ │ │ ├── ApiResponseEventArgs.cs │ │ │ │ ├── ApiResponse`1.cs │ │ │ │ ├── BearerToken.cs │ │ │ │ ├── ClientUtils.cs │ │ │ │ ├── CookieContainer.cs │ │ │ │ ├── DateOnlyJsonConverter.cs │ │ │ │ ├── DateOnlyNullableJsonConverter.cs │ │ │ │ ├── DateTimeJsonConverter.cs │ │ │ │ ├── DateTimeNullableJsonConverter.cs │ │ │ │ ├── ExceptionEventArgs.cs │ │ │ │ ├── HostConfiguration.cs │ │ │ │ ├── JsonSerializerOptionsProvider.cs │ │ │ │ ├── Option.cs │ │ │ │ ├── RateLimitProvider`1.cs │ │ │ │ ├── TokenBase.cs │ │ │ │ ├── TokenContainer`1.cs │ │ │ │ └── TokenProvider`1.cs │ │ │ │ ├── Extensions │ │ │ │ ├── IHostBuilderExtensions.cs │ │ │ │ ├── IHttpClientBuilderExtensions.cs │ │ │ │ └── IServiceCollectionExtensions.cs │ │ │ │ ├── Model │ │ │ │ ├── DTOExtractorType.cs │ │ │ │ ├── DTOFilingMetadataDto.cs │ │ │ │ ├── DTOFilingSortBy.cs │ │ │ │ ├── DTOSecFilingResultDto.cs │ │ │ │ ├── MvcProblemDetails.cs │ │ │ │ └── MvcValidationProblemDetails.cs │ │ │ │ └── README.md │ │ ├── dart-dio │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ ├── DTOExtractorType.md │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ ├── FileDownloadApi.md │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ └── XBRLConversionApi.md │ │ │ ├── lib │ │ │ │ ├── openapi.dart │ │ │ │ └── src │ │ │ │ │ ├── api.dart │ │ │ │ │ ├── api │ │ │ │ │ ├── content_extraction_api.dart │ │ │ │ │ ├── file_download_api.dart │ │ │ │ │ ├── filing_metadata_api.dart │ │ │ │ │ ├── full_text_search_api.dart │ │ │ │ │ └── xbrl_conversion_api.dart │ │ │ │ │ ├── api_util.dart │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── auth.dart │ │ │ │ │ ├── basic_auth.dart │ │ │ │ │ ├── bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ │ ├── date_serializer.dart │ │ │ │ │ ├── model │ │ │ │ │ ├── date.dart │ │ │ │ │ ├── dto_extractor_type.dart │ │ │ │ │ ├── dto_filing_metadata_dto.dart │ │ │ │ │ ├── dto_filing_sort_by.dart │ │ │ │ │ ├── dto_sec_filing_result_dto.dart │ │ │ │ │ ├── mvc_problem_details.dart │ │ │ │ │ └── mvc_validation_problem_details.dart │ │ │ │ │ └── serializers.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── content_extraction_api_test.dart │ │ │ │ ├── dto_extractor_type_test.dart │ │ │ │ ├── dto_filing_metadata_dto_test.dart │ │ │ │ ├── dto_filing_sort_by_test.dart │ │ │ │ ├── dto_sec_filing_result_dto_test.dart │ │ │ │ ├── file_download_api_test.dart │ │ │ │ ├── filing_metadata_api_test.dart │ │ │ │ ├── full_text_search_api_test.dart │ │ │ │ ├── mvc_problem_details_test.dart │ │ │ │ ├── mvc_validation_problem_details_test.dart │ │ │ │ └── xbrl_conversion_api_test.dart │ │ ├── dart │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── doc │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ ├── DTOExtractorType.md │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ ├── FileDownloadApi.md │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ └── XBRLConversionApi.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── api.dart │ │ │ │ ├── api │ │ │ │ │ ├── content_extraction_api.dart │ │ │ │ │ ├── file_download_api.dart │ │ │ │ │ ├── filing_metadata_api.dart │ │ │ │ │ ├── full_text_search_api.dart │ │ │ │ │ └── xbrl_conversion_api.dart │ │ │ │ ├── api_client.dart │ │ │ │ ├── api_exception.dart │ │ │ │ ├── api_helper.dart │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.dart │ │ │ │ │ ├── authentication.dart │ │ │ │ │ ├── http_basic_auth.dart │ │ │ │ │ ├── http_bearer_auth.dart │ │ │ │ │ └── oauth.dart │ │ │ │ └── model │ │ │ │ │ ├── dto_extractor_type.dart │ │ │ │ │ ├── dto_filing_metadata_dto.dart │ │ │ │ │ ├── dto_filing_sort_by.dart │ │ │ │ │ ├── dto_sec_filing_result_dto.dart │ │ │ │ │ ├── mvc_problem_details.dart │ │ │ │ │ └── mvc_validation_problem_details.dart │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ ├── content_extraction_api_test.dart │ │ │ │ ├── dto_extractor_type_test.dart │ │ │ │ ├── dto_filing_metadata_dto_test.dart │ │ │ │ ├── dto_filing_sort_by_test.dart │ │ │ │ ├── dto_sec_filing_result_dto_test.dart │ │ │ │ ├── file_download_api_test.dart │ │ │ │ ├── filing_metadata_api_test.dart │ │ │ │ ├── full_text_search_api_test.dart │ │ │ │ ├── mvc_problem_details_test.dart │ │ │ │ ├── mvc_validation_problem_details_test.dart │ │ │ │ └── xbrl_conversion_api_test.dart │ │ ├── eiffel │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api_client.ecf │ │ │ ├── docs │ │ │ │ ├── CONTENTEXTRACTION_API.md │ │ │ │ ├── DTO_EXTRACTOR_TYPE.md │ │ │ │ ├── DTO_FILING_METADATA_DTO.md │ │ │ │ ├── DTO_FILING_SORT_BY.md │ │ │ │ ├── DTO_SEC_FILING_RESULT_DTO.md │ │ │ │ ├── FILEDOWNLOAD_API.md │ │ │ │ ├── FILINGMETADATA_API.md │ │ │ │ ├── FULLTEXTSEARCH_API.md │ │ │ │ ├── MVC_PROBLEM_DETAILS.md │ │ │ │ ├── MVC_VALIDATION_PROBLEM_DETAILS.md │ │ │ │ └── XBRLCONVERSION_API.md │ │ │ ├── src │ │ │ │ ├── api │ │ │ │ │ ├── content_extraction_api.e │ │ │ │ │ ├── file_download_api.e │ │ │ │ │ ├── filing_metadata_api.e │ │ │ │ │ ├── full_text_search_api.e │ │ │ │ │ └── xbrl_conversion_api.e │ │ │ │ ├── api_client.e │ │ │ │ ├── domain │ │ │ │ │ ├── dto_extractor_type.e │ │ │ │ │ ├── dto_filing_metadata_dto.e │ │ │ │ │ ├── dto_filing_sort_by.e │ │ │ │ │ ├── dto_sec_filing_result_dto.e │ │ │ │ │ ├── mvc_problem_details.e │ │ │ │ │ └── mvc_validation_problem_details.e │ │ │ │ └── framework │ │ │ │ │ ├── api_client_request.e │ │ │ │ │ ├── api_client_response.e │ │ │ │ │ ├── api_error.e │ │ │ │ │ ├── api_i.e │ │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.e │ │ │ │ │ ├── authentication.e │ │ │ │ │ ├── http_basic_auth.e │ │ │ │ │ └── oauth.e │ │ │ │ │ ├── configuration.e │ │ │ │ │ └── serialization │ │ │ │ │ ├── api_deserializer.e │ │ │ │ │ ├── api_json_deserializer.e │ │ │ │ │ ├── api_json_serializer.e │ │ │ │ │ ├── api_serializer.e │ │ │ │ │ ├── json_basic_reflector_deserializer.e │ │ │ │ │ └── json_type_utilities_ext.e │ │ │ └── test │ │ │ │ ├── api_test.ecf │ │ │ │ ├── apis │ │ │ │ ├── contentextraction_api_test.e │ │ │ │ ├── filedownload_api_test.e │ │ │ │ ├── filingmetadata_api_test.e │ │ │ │ ├── fulltextsearch_api_test.e │ │ │ │ └── xbrlconversion_api_test.e │ │ │ │ └── application.e │ │ ├── elixir │ │ │ ├── .formatter.exs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ ├── config.exs │ │ │ │ └── runtime.exs │ │ │ ├── lib │ │ │ │ └── fin_feed_apisecrestapi │ │ │ │ │ ├── api │ │ │ │ │ ├── content_extraction.ex │ │ │ │ │ ├── file_download.ex │ │ │ │ │ ├── filing_metadata.ex │ │ │ │ │ ├── full_text_search.ex │ │ │ │ │ └── xbrl_conversion.ex │ │ │ │ │ ├── connection.ex │ │ │ │ │ ├── deserializer.ex │ │ │ │ │ ├── model │ │ │ │ │ ├── dto_extractor_type.ex │ │ │ │ │ ├── dto_filing_metadata_dto.ex │ │ │ │ │ ├── dto_filing_sort_by.ex │ │ │ │ │ ├── dto_sec_filing_result_dto.ex │ │ │ │ │ ├── mvc_problem_details.ex │ │ │ │ │ └── mvc_validation_problem_details.ex │ │ │ │ │ └── request_builder.ex │ │ │ ├── mix.exs │ │ │ └── test │ │ │ │ └── test_helper.exs │ │ ├── elm │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ ├── Api.elm │ │ │ │ └── Api │ │ │ │ ├── Data.elm │ │ │ │ ├── Request │ │ │ │ ├── ContentExtraction.elm │ │ │ │ ├── FileDownload.elm │ │ │ │ ├── FilingMetadata.elm │ │ │ │ ├── FullTextSearch.elm │ │ │ │ └── XBRLConversion.elm │ │ │ │ └── Time.elm │ │ ├── erlang-client │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ └── src │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi_content_extraction_api.erl │ │ │ │ ├── openapi_dto_extractor_type.erl │ │ │ │ ├── openapi_dto_filing_metadata_dto.erl │ │ │ │ ├── openapi_dto_filing_sort_by.erl │ │ │ │ ├── openapi_dto_sec_filing_result_dto.erl │ │ │ │ ├── openapi_file_download_api.erl │ │ │ │ ├── openapi_filing_metadata_api.erl │ │ │ │ ├── openapi_full_text_search_api.erl │ │ │ │ ├── openapi_mvc_problem_details.erl │ │ │ │ ├── openapi_mvc_validation_problem_details.erl │ │ │ │ ├── openapi_utils.erl │ │ │ │ └── openapi_xbrl_conversion_api.erl │ │ ├── erlang-proper │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── rebar.config │ │ │ ├── src │ │ │ │ ├── model │ │ │ │ │ ├── openapi_dto_extractor_type.erl │ │ │ │ │ ├── openapi_dto_filing_metadata_dto.erl │ │ │ │ │ ├── openapi_dto_filing_sort_by.erl │ │ │ │ │ ├── openapi_dto_sec_filing_result_dto.erl │ │ │ │ │ ├── openapi_mvc_problem_details.erl │ │ │ │ │ └── openapi_mvc_validation_problem_details.erl │ │ │ │ ├── openapi.app.src │ │ │ │ ├── openapi.hrl │ │ │ │ ├── openapi_api.erl │ │ │ │ ├── openapi_gen.erl │ │ │ │ ├── openapi_statem.erl │ │ │ │ ├── openapi_statem.hrl │ │ │ │ └── openapi_utils.erl │ │ │ └── test │ │ │ │ └── prop_openapi.erl │ │ ├── go │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── api_content_extraction.go │ │ │ ├── api_file_download.go │ │ │ ├── api_filing_metadata.go │ │ │ ├── api_full_text_search.go │ │ │ ├── api_xbrl_conversion.go │ │ │ ├── client.go │ │ │ ├── configuration.go │ │ │ ├── docs │ │ │ │ ├── ContentExtractionAPI.md │ │ │ │ ├── DTOExtractorType.md │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ ├── FileDownloadAPI.md │ │ │ │ ├── FilingMetadataAPI.md │ │ │ │ ├── FullTextSearchAPI.md │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ └── XBRLConversionAPI.md │ │ │ ├── git_push.sh │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── model_dto_extractor_type.go │ │ │ ├── model_dto_filing_metadata_dto.go │ │ │ ├── model_dto_filing_sort_by.go │ │ │ ├── model_dto_sec_filing_result_dto.go │ │ │ ├── model_mvc_problem_details.go │ │ │ ├── model_mvc_validation_problem_details.go │ │ │ ├── response.go │ │ │ ├── test │ │ │ │ ├── api_content_extraction_test.go │ │ │ │ ├── api_file_download_test.go │ │ │ │ ├── api_filing_metadata_test.go │ │ │ │ ├── api_full_text_search_test.go │ │ │ │ └── api_xbrl_conversion_test.go │ │ │ └── utils.go │ │ ├── groovy │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ ├── api │ │ │ │ ├── ApiUtils.groovy │ │ │ │ ├── ContentExtractionApi.groovy │ │ │ │ ├── FileDownloadApi.groovy │ │ │ │ ├── FilingMetadataApi.groovy │ │ │ │ ├── FullTextSearchApi.groovy │ │ │ │ └── XbrlConversionApi.groovy │ │ │ │ └── model │ │ │ │ ├── DTOExtractorType.groovy │ │ │ │ ├── DTOFilingMetadataDto.groovy │ │ │ │ ├── DTOFilingSortBy.groovy │ │ │ │ ├── DTOSecFilingResultDto.groovy │ │ │ │ ├── MvcProblemDetails.groovy │ │ │ │ └── MvcValidationProblemDetails.groovy │ │ ├── haskell-http-client │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── Setup.hs │ │ │ ├── finfeedapi-sec-rest.cabal │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── FinFeedAPISECREST.hs │ │ │ │ └── FinFeedAPISECREST │ │ │ │ │ ├── API.hs │ │ │ │ │ ├── API │ │ │ │ │ ├── ContentExtraction.hs │ │ │ │ │ ├── FileDownload.hs │ │ │ │ │ ├── FilingMetadata.hs │ │ │ │ │ ├── FullTextSearch.hs │ │ │ │ │ └── XBRLConversion.hs │ │ │ │ │ ├── Client.hs │ │ │ │ │ ├── Core.hs │ │ │ │ │ ├── Logging.hs │ │ │ │ │ ├── LoggingKatip.hs │ │ │ │ │ ├── LoggingMonadLogger.hs │ │ │ │ │ ├── MimeTypes.hs │ │ │ │ │ ├── Model.hs │ │ │ │ │ └── ModelLens.hs │ │ │ ├── openapi.yaml │ │ │ ├── stack.yaml │ │ │ └── tests │ │ │ │ ├── ApproxEq.hs │ │ │ │ ├── Instances.hs │ │ │ │ ├── PropMime.hs │ │ │ │ └── Test.hs │ │ ├── java │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── maven.yml │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── openapi.yaml │ │ │ ├── build.gradle │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ ├── DTOExtractorType.md │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ ├── FileDownloadApi.md │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ └── XbrlConversionApi.md │ │ │ ├── git_push.sh │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── pom.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── ApiCallback.java │ │ │ │ │ ├── ApiClient.java │ │ │ │ │ ├── ApiException.java │ │ │ │ │ ├── ApiResponse.java │ │ │ │ │ ├── Configuration.java │ │ │ │ │ ├── GzipRequestInterceptor.java │ │ │ │ │ ├── JSON.java │ │ │ │ │ ├── Pair.java │ │ │ │ │ ├── ProgressRequestBody.java │ │ │ │ │ ├── ProgressResponseBody.java │ │ │ │ │ ├── ServerConfiguration.java │ │ │ │ │ ├── ServerVariable.java │ │ │ │ │ ├── StringUtil.java │ │ │ │ │ ├── api │ │ │ │ │ ├── ContentExtractionApi.java │ │ │ │ │ ├── FileDownloadApi.java │ │ │ │ │ ├── FilingMetadataApi.java │ │ │ │ │ ├── FullTextSearchApi.java │ │ │ │ │ └── XbrlConversionApi.java │ │ │ │ │ ├── auth │ │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ │ ├── Authentication.java │ │ │ │ │ ├── HttpBasicAuth.java │ │ │ │ │ └── HttpBearerAuth.java │ │ │ │ │ └── model │ │ │ │ │ ├── AbstractOpenApiSchema.java │ │ │ │ │ ├── DTOExtractorType.java │ │ │ │ │ ├── DTOFilingMetadataDto.java │ │ │ │ │ ├── DTOFilingSortBy.java │ │ │ │ │ ├── DTOSecFilingResultDto.java │ │ │ │ │ ├── MvcProblemDetails.java │ │ │ │ │ └── MvcValidationProblemDetails.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── ContentExtractionApiTest.java │ │ │ │ ├── FileDownloadApiTest.java │ │ │ │ ├── FilingMetadataApiTest.java │ │ │ │ ├── FullTextSearchApiTest.java │ │ │ │ └── XbrlConversionApiTest.java │ │ │ │ └── model │ │ │ │ ├── DTOExtractorTypeTest.java │ │ │ │ ├── DTOFilingMetadataDtoTest.java │ │ │ │ ├── DTOFilingSortByTest.java │ │ │ │ ├── DTOSecFilingResultDtoTest.java │ │ │ │ ├── MvcProblemDetailsTest.java │ │ │ │ └── MvcValidationProblemDetailsTest.java │ │ ├── javascript-closure-angular │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ └── API │ │ │ │ └── Client │ │ │ │ ├── ContentExtractionApi.js │ │ │ │ ├── DTOExtractorType.js │ │ │ │ ├── DTOFilingMetadataDto.js │ │ │ │ ├── DTOFilingSortBy.js │ │ │ │ ├── DTOSecFilingResultDto.js │ │ │ │ ├── FileDownloadApi.js │ │ │ │ ├── FilingMetadataApi.js │ │ │ │ ├── FullTextSearchApi.js │ │ │ │ ├── MvcProblemDetails.js │ │ │ │ ├── MvcValidationProblemDetails.js │ │ │ │ └── XBRLConversionApi.js │ │ ├── javascript-flowtyped │ │ │ ├── .babelrc │ │ │ ├── .flowconfig │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── api.js │ │ │ │ ├── configuration.js │ │ │ │ └── index.js │ │ ├── javascript │ │ │ ├── .babelrc │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ ├── DTOExtractorType.md │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ ├── FileDownloadApi.md │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ └── XBRLConversionApi.md │ │ │ ├── git_push.sh │ │ │ ├── mocha.opts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── ApiClient.js │ │ │ │ ├── api │ │ │ │ │ ├── ContentExtractionApi.js │ │ │ │ │ ├── FileDownloadApi.js │ │ │ │ │ ├── FilingMetadataApi.js │ │ │ │ │ ├── FullTextSearchApi.js │ │ │ │ │ └── XBRLConversionApi.js │ │ │ │ ├── index.js │ │ │ │ └── model │ │ │ │ │ ├── DTOExtractorType.js │ │ │ │ │ ├── DTOFilingMetadataDto.js │ │ │ │ │ ├── DTOFilingSortBy.js │ │ │ │ │ ├── DTOSecFilingResultDto.js │ │ │ │ │ ├── MvcProblemDetails.js │ │ │ │ │ └── MvcValidationProblemDetails.js │ │ │ └── test │ │ │ │ ├── api │ │ │ │ ├── ContentExtractionApi.spec.js │ │ │ │ ├── FileDownloadApi.spec.js │ │ │ │ ├── FilingMetadataApi.spec.js │ │ │ │ ├── FullTextSearchApi.spec.js │ │ │ │ └── XBRLConversionApi.spec.js │ │ │ │ └── model │ │ │ │ ├── DTOExtractorType.spec.js │ │ │ │ ├── DTOFilingMetadataDto.spec.js │ │ │ │ ├── DTOFilingSortBy.spec.js │ │ │ │ ├── DTOSecFilingResultDto.spec.js │ │ │ │ ├── MvcProblemDetails.spec.js │ │ │ │ └── MvcValidationProblemDetails.spec.js │ │ ├── kotlin │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── docs │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ ├── DTOExtractorType.md │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ ├── FileDownloadApi.md │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ └── XBRLConversionApi.md │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── openapitools │ │ │ │ │ └── client │ │ │ │ │ ├── apis │ │ │ │ │ ├── ContentExtractionApi.kt │ │ │ │ │ ├── FileDownloadApi.kt │ │ │ │ │ ├── FilingMetadataApi.kt │ │ │ │ │ ├── FullTextSearchApi.kt │ │ │ │ │ └── XBRLConversionApi.kt │ │ │ │ │ ├── infrastructure │ │ │ │ │ ├── ApiAbstractions.kt │ │ │ │ │ ├── ApiClient.kt │ │ │ │ │ ├── ApiResponse.kt │ │ │ │ │ ├── BigDecimalAdapter.kt │ │ │ │ │ ├── BigIntegerAdapter.kt │ │ │ │ │ ├── ByteArrayAdapter.kt │ │ │ │ │ ├── Errors.kt │ │ │ │ │ ├── LocalDateAdapter.kt │ │ │ │ │ ├── LocalDateTimeAdapter.kt │ │ │ │ │ ├── OffsetDateTimeAdapter.kt │ │ │ │ │ ├── PartConfig.kt │ │ │ │ │ ├── RequestConfig.kt │ │ │ │ │ ├── RequestMethod.kt │ │ │ │ │ ├── ResponseExtensions.kt │ │ │ │ │ ├── Serializer.kt │ │ │ │ │ ├── URIAdapter.kt │ │ │ │ │ └── UUIDAdapter.kt │ │ │ │ │ └── models │ │ │ │ │ ├── DTOExtractorType.kt │ │ │ │ │ ├── DTOFilingMetadataDto.kt │ │ │ │ │ ├── DTOFilingSortBy.kt │ │ │ │ │ ├── DTOSecFilingResultDto.kt │ │ │ │ │ ├── MvcProblemDetails.kt │ │ │ │ │ └── MvcValidationProblemDetails.kt │ │ │ │ └── test │ │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── apis │ │ │ │ ├── ContentExtractionApiTest.kt │ │ │ │ ├── FileDownloadApiTest.kt │ │ │ │ ├── FilingMetadataApiTest.kt │ │ │ │ ├── FullTextSearchApiTest.kt │ │ │ │ └── XBRLConversionApiTest.kt │ │ │ │ └── models │ │ │ │ ├── DTOExtractorTypeTest.kt │ │ │ │ ├── DTOFilingMetadataDtoTest.kt │ │ │ │ ├── DTOFilingSortByTest.kt │ │ │ │ ├── DTOSecFilingResultDtoTest.kt │ │ │ │ ├── MvcProblemDetailsTest.kt │ │ │ │ └── MvcValidationProblemDetailsTest.kt │ │ ├── lua │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── git_push.sh │ │ │ ├── openapiclient-1.0.0-1.rockspec │ │ │ ├── openapiclient │ │ │ │ ├── api │ │ │ │ │ ├── content_extraction_api.lua │ │ │ │ │ ├── file_download_api.lua │ │ │ │ │ ├── filing_metadata_api.lua │ │ │ │ │ ├── full_text_search_api.lua │ │ │ │ │ └── xbrl_conversion_api.lua │ │ │ │ └── model │ │ │ │ │ ├── dto_extractor_type.lua │ │ │ │ │ ├── dto_filing_metadata_dto.lua │ │ │ │ │ ├── dto_filing_sort_by.lua │ │ │ │ │ ├── dto_sec_filing_result_dto.lua │ │ │ │ │ ├── mvc_problem_details.lua │ │ │ │ │ └── mvc_validation_problem_details.lua │ │ │ └── spec │ │ │ │ ├── content_extraction_api_spec.lua │ │ │ │ ├── dto_extractor_type_spec.lua │ │ │ │ ├── dto_filing_metadata_dto_spec.lua │ │ │ │ ├── dto_filing_sort_by_spec.lua │ │ │ │ ├── dto_sec_filing_result_dto_spec.lua │ │ │ │ ├── file_download_api_spec.lua │ │ │ │ ├── filing_metadata_api_spec.lua │ │ │ │ ├── full_text_search_api_spec.lua │ │ │ │ ├── mvc_problem_details_spec.lua │ │ │ │ ├── mvc_validation_problem_details_spec.lua │ │ │ │ └── xbrl_conversion_api_spec.lua │ │ ├── perl │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── autodoc │ │ │ ├── cpanfile │ │ │ ├── docs │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ ├── DTOExtractorType.md │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ ├── FileDownloadApi.md │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ └── XBRLConversionApi.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ └── WWW │ │ │ │ │ └── OpenAPIClient │ │ │ │ │ ├── ApiClient.pm │ │ │ │ │ ├── ApiFactory.pm │ │ │ │ │ ├── Configuration.pm │ │ │ │ │ ├── ContentExtractionApi.pm │ │ │ │ │ ├── FileDownloadApi.pm │ │ │ │ │ ├── FilingMetadataApi.pm │ │ │ │ │ ├── FullTextSearchApi.pm │ │ │ │ │ ├── Object │ │ │ │ │ ├── DTOExtractorType.pm │ │ │ │ │ ├── DTOFilingMetadataDto.pm │ │ │ │ │ ├── DTOFilingSortBy.pm │ │ │ │ │ ├── DTOSecFilingResultDto.pm │ │ │ │ │ ├── MvcProblemDetails.pm │ │ │ │ │ └── MvcValidationProblemDetails.pm │ │ │ │ │ ├── Role.pm │ │ │ │ │ ├── Role │ │ │ │ │ └── AutoDoc.pm │ │ │ │ │ └── XBRLConversionApi.pm │ │ │ └── t │ │ │ │ ├── ContentExtractionApiTest.t │ │ │ │ ├── DTOExtractorTypeTest.t │ │ │ │ ├── DTOFilingMetadataDtoTest.t │ │ │ │ ├── DTOFilingSortByTest.t │ │ │ │ ├── DTOSecFilingResultDtoTest.t │ │ │ │ ├── FileDownloadApiTest.t │ │ │ │ ├── FilingMetadataApiTest.t │ │ │ │ ├── FullTextSearchApiTest.t │ │ │ │ ├── MvcProblemDetailsTest.t │ │ │ │ ├── MvcValidationProblemDetailsTest.t │ │ │ │ └── XBRLConversionApiTest.t │ │ ├── php │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ │ ├── Api │ │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ │ ├── FileDownloadApi.md │ │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ │ └── XBRLConversionApi.md │ │ │ │ └── Model │ │ │ │ │ ├── DTOExtractorType.md │ │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ │ └── MvcValidationProblemDetails.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── Api │ │ │ │ │ ├── ContentExtractionApi.php │ │ │ │ │ ├── FileDownloadApi.php │ │ │ │ │ ├── FilingMetadataApi.php │ │ │ │ │ ├── FullTextSearchApi.php │ │ │ │ │ └── XBRLConversionApi.php │ │ │ │ ├── ApiException.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── FormDataProcessor.php │ │ │ │ ├── HeaderSelector.php │ │ │ │ ├── Model │ │ │ │ │ ├── DTOExtractorType.php │ │ │ │ │ ├── DTOFilingMetadataDto.php │ │ │ │ │ ├── DTOFilingSortBy.php │ │ │ │ │ ├── DTOSecFilingResultDto.php │ │ │ │ │ ├── ModelInterface.php │ │ │ │ │ ├── MvcProblemDetails.php │ │ │ │ │ └── MvcValidationProblemDetails.php │ │ │ │ └── ObjectSerializer.php │ │ │ ├── phpunit.xml.dist │ │ │ └── test │ │ │ │ ├── Api │ │ │ │ ├── ContentExtractionApiTest.php │ │ │ │ ├── FileDownloadApiTest.php │ │ │ │ ├── FilingMetadataApiTest.php │ │ │ │ ├── FullTextSearchApiTest.php │ │ │ │ └── XBRLConversionApiTest.php │ │ │ │ └── Model │ │ │ │ ├── DTOExtractorTypeTest.php │ │ │ │ ├── DTOFilingMetadataDtoTest.php │ │ │ │ ├── DTOFilingSortByTest.php │ │ │ │ ├── DTOSecFilingResultDtoTest.php │ │ │ │ ├── MvcProblemDetailsTest.php │ │ │ │ └── MvcValidationProblemDetailsTest.php │ │ ├── powershell │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── Build.ps1 │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ ├── DTOExtractorType.md │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ ├── FileDownloadApi.md │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ └── XBRLConversionApi.md │ │ │ ├── src │ │ │ │ └── PSOpenAPITools │ │ │ │ │ ├── Api │ │ │ │ │ ├── ContentExtractionApi.ps1 │ │ │ │ │ ├── FileDownloadApi.ps1 │ │ │ │ │ ├── FilingMetadataApi.ps1 │ │ │ │ │ ├── FullTextSearchApi.ps1 │ │ │ │ │ └── XBRLConversionApi.ps1 │ │ │ │ │ ├── Client │ │ │ │ │ └── Configuration.ps1 │ │ │ │ │ ├── Model │ │ │ │ │ ├── DTOExtractorType.ps1 │ │ │ │ │ ├── DTOFilingMetadataDto.ps1 │ │ │ │ │ ├── DTOFilingSortBy.ps1 │ │ │ │ │ ├── DTOSecFilingResultDto.ps1 │ │ │ │ │ ├── MvcProblemDetails.ps1 │ │ │ │ │ └── MvcValidationProblemDetails.ps1 │ │ │ │ │ ├── PSOpenAPITools.psm1 │ │ │ │ │ ├── Private │ │ │ │ │ ├── ApiClient.ps1 │ │ │ │ │ ├── Get-CommonParameters.ps1 │ │ │ │ │ ├── HttpSignatureAuth.ps1 │ │ │ │ │ ├── Out-DebugParameter.ps1 │ │ │ │ │ └── RSAEncryptionProvider.cs │ │ │ │ │ └── en-US │ │ │ │ │ └── about_PSOpenAPITools.help.txt │ │ │ └── tests │ │ │ │ ├── Api │ │ │ │ ├── ContentExtractionApi.Tests.ps1 │ │ │ │ ├── FileDownloadApi.Tests.ps1 │ │ │ │ ├── FilingMetadataApi.Tests.ps1 │ │ │ │ ├── FullTextSearchApi.Tests.ps1 │ │ │ │ └── XBRLConversionApi.Tests.ps1 │ │ │ │ └── Model │ │ │ │ ├── DTOExtractorType.Tests.ps1 │ │ │ │ ├── DTOFilingMetadataDto.Tests.ps1 │ │ │ │ ├── DTOFilingSortBy.Tests.ps1 │ │ │ │ ├── DTOSecFilingResultDto.Tests.ps1 │ │ │ │ ├── MvcProblemDetails.Tests.ps1 │ │ │ │ └── MvcValidationProblemDetails.Tests.ps1 │ │ ├── python │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api_bricks_sec_api_rest │ │ │ │ ├── __init__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── content_extraction_api.py │ │ │ │ │ ├── file_download_api.py │ │ │ │ │ ├── filing_metadata_api.py │ │ │ │ │ ├── full_text_search_api.py │ │ │ │ │ └── xbrl_conversion_api.py │ │ │ │ ├── api_client.py │ │ │ │ ├── api_response.py │ │ │ │ ├── configuration.py │ │ │ │ ├── docs │ │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ │ ├── DTOExtractorType.md │ │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ │ ├── FileDownloadApi.md │ │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ │ └── XBRLConversionApi.md │ │ │ │ ├── exceptions.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dto_extractor_type.py │ │ │ │ │ ├── dto_filing_metadata_dto.py │ │ │ │ │ ├── dto_filing_sort_by.py │ │ │ │ │ ├── dto_sec_filing_result_dto.py │ │ │ │ │ ├── mvc_problem_details.py │ │ │ │ │ └── mvc_validation_problem_details.py │ │ │ │ ├── rest.py │ │ │ │ └── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_content_extraction_api.py │ │ │ │ │ ├── test_dto_extractor_type.py │ │ │ │ │ ├── test_dto_filing_metadata_dto.py │ │ │ │ │ ├── test_dto_filing_sort_by.py │ │ │ │ │ ├── test_dto_sec_filing_result_dto.py │ │ │ │ │ ├── test_file_download_api.py │ │ │ │ │ ├── test_filing_metadata_api.py │ │ │ │ │ ├── test_full_text_search_api.py │ │ │ │ │ ├── test_mvc_problem_details.py │ │ │ │ │ ├── test_mvc_validation_problem_details.py │ │ │ │ │ └── test_xbrl_conversion_api.py │ │ │ └── api_bricks_sec_api_rest_README.md │ │ ├── r │ │ │ ├── .Rbuildignore │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── r-client.yaml │ │ │ ├── .gitignore │ │ │ ├── .lintr │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .travis.yml │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── api_client.R │ │ │ │ ├── api_response.R │ │ │ │ ├── content_extraction_api.R │ │ │ │ ├── dto_extractor_type.R │ │ │ │ ├── dto_filing_metadata_dto.R │ │ │ │ ├── dto_filing_sort_by.R │ │ │ │ ├── dto_sec_filing_result_dto.R │ │ │ │ ├── file_download_api.R │ │ │ │ ├── filing_metadata_api.R │ │ │ │ ├── full_text_search_api.R │ │ │ │ ├── mvc_problem_details.R │ │ │ │ ├── mvc_validation_problem_details.R │ │ │ │ └── xbrl_conversion_api.R │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ ├── DTOExtractorType.md │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ ├── FileDownloadApi.md │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ └── XBRLConversionApi.md │ │ │ ├── git_push.sh │ │ │ └── tests │ │ │ │ ├── testthat.R │ │ │ │ └── testthat │ │ │ │ ├── test_content_extraction_api.R │ │ │ │ ├── test_dto_extractor_type.R │ │ │ │ ├── test_dto_filing_metadata_dto.R │ │ │ │ ├── test_dto_filing_sort_by.R │ │ │ │ ├── test_dto_sec_filing_result_dto.R │ │ │ │ ├── test_file_download_api.R │ │ │ │ ├── test_filing_metadata_api.R │ │ │ │ ├── test_full_text_search_api.R │ │ │ │ ├── test_mvc_problem_details.R │ │ │ │ ├── test_mvc_validation_problem_details.R │ │ │ │ └── test_xbrl_conversion_api.R │ │ ├── ruby │ │ │ ├── .gitignore │ │ │ ├── .gitlab-ci.yml │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .rspec │ │ │ ├── .rubocop.yml │ │ │ ├── .travis.yml │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── docs │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ ├── DTOExtractorType.md │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ ├── FileDownloadApi.md │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ └── XBRLConversionApi.md │ │ │ ├── git_push.sh │ │ │ ├── lib │ │ │ │ ├── openapi_client.rb │ │ │ │ └── openapi_client │ │ │ │ │ ├── api │ │ │ │ │ ├── content_extraction_api.rb │ │ │ │ │ ├── file_download_api.rb │ │ │ │ │ ├── filing_metadata_api.rb │ │ │ │ │ ├── full_text_search_api.rb │ │ │ │ │ └── xbrl_conversion_api.rb │ │ │ │ │ ├── api_client.rb │ │ │ │ │ ├── api_error.rb │ │ │ │ │ ├── configuration.rb │ │ │ │ │ ├── models │ │ │ │ │ ├── dto_extractor_type.rb │ │ │ │ │ ├── dto_filing_metadata_dto.rb │ │ │ │ │ ├── dto_filing_sort_by.rb │ │ │ │ │ ├── dto_sec_filing_result_dto.rb │ │ │ │ │ ├── mvc_problem_details.rb │ │ │ │ │ └── mvc_validation_problem_details.rb │ │ │ │ │ └── version.rb │ │ │ ├── openapi_client.gemspec │ │ │ └── spec │ │ │ │ ├── api │ │ │ │ ├── content_extraction_api_spec.rb │ │ │ │ ├── file_download_api_spec.rb │ │ │ │ ├── filing_metadata_api_spec.rb │ │ │ │ ├── full_text_search_api_spec.rb │ │ │ │ └── xbrl_conversion_api_spec.rb │ │ │ │ ├── models │ │ │ │ ├── dto_extractor_type_spec.rb │ │ │ │ ├── dto_filing_metadata_dto_spec.rb │ │ │ │ ├── dto_filing_sort_by_spec.rb │ │ │ │ ├── dto_sec_filing_result_dto_spec.rb │ │ │ │ ├── mvc_problem_details_spec.rb │ │ │ │ └── mvc_validation_problem_details_spec.rb │ │ │ │ └── spec_helper.rb │ │ ├── scala-akka │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── build.sbt │ │ │ ├── docs │ │ │ │ ├── ContentExtractionApi.md │ │ │ │ ├── DTOExtractorType.md │ │ │ │ ├── DTOFilingMetadataDto.md │ │ │ │ ├── DTOFilingSortBy.md │ │ │ │ ├── DTOSecFilingResultDto.md │ │ │ │ ├── FileDownloadApi.md │ │ │ │ ├── FilingMetadataApi.md │ │ │ │ ├── FullTextSearchApi.md │ │ │ │ ├── MvcProblemDetails.md │ │ │ │ ├── MvcValidationProblemDetails.md │ │ │ │ └── XBRLConversionApi.md │ │ │ ├── pom.xml │ │ │ ├── project │ │ │ │ └── build.properties │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── reference.conf │ │ │ │ └── scala │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── api │ │ │ │ ├── ContentExtractionApi.scala │ │ │ │ ├── EnumsSerializers.scala │ │ │ │ ├── FileDownloadApi.scala │ │ │ │ ├── FilingMetadataApi.scala │ │ │ │ ├── FullTextSearchApi.scala │ │ │ │ └── XBRLConversionApi.scala │ │ │ │ ├── core │ │ │ │ ├── ApiInvoker.scala │ │ │ │ ├── ApiRequest.scala │ │ │ │ ├── ApiSettings.scala │ │ │ │ ├── Serializers.scala │ │ │ │ └── requests.scala │ │ │ │ └── model │ │ │ │ ├── ExtractorType.scala │ │ │ │ ├── FilingMetadataDto.scala │ │ │ │ ├── FilingSortBy.scala │ │ │ │ ├── ProblemDetails.scala │ │ │ │ ├── SecFilingResultDto.scala │ │ │ │ └── ValidationProblemDetails.scala │ │ ├── typescript-angular │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── README.md │ │ │ ├── api.base.service.ts │ │ │ ├── api.module.ts │ │ │ ├── api │ │ │ │ ├── api.ts │ │ │ │ ├── contentExtraction.service.ts │ │ │ │ ├── fileDownload.service.ts │ │ │ │ ├── filingMetadata.service.ts │ │ │ │ ├── fullTextSearch.service.ts │ │ │ │ └── xBRLConversion.service.ts │ │ │ ├── configuration.ts │ │ │ ├── encoder.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── dTOExtractorType.ts │ │ │ │ ├── dTOFilingMetadataDto.ts │ │ │ │ ├── dTOFilingSortBy.ts │ │ │ │ ├── dTOSecFilingResultDto.ts │ │ │ │ ├── models.ts │ │ │ │ ├── mvcProblemDetails.ts │ │ │ │ └── mvcValidationProblemDetails.ts │ │ │ ├── param.ts │ │ │ └── variables.ts │ │ ├── typescript-jquery │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api │ │ │ │ ├── ContentExtractionApi.ts │ │ │ │ ├── FileDownloadApi.ts │ │ │ │ ├── FilingMetadataApi.ts │ │ │ │ ├── FullTextSearchApi.ts │ │ │ │ ├── XBRLConversionApi.ts │ │ │ │ └── api.ts │ │ │ ├── configuration.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── DTOExtractorType.ts │ │ │ │ ├── DTOFilingMetadataDto.ts │ │ │ │ ├── DTOFilingSortBy.ts │ │ │ │ ├── DTOSecFilingResultDto.ts │ │ │ │ ├── MvcProblemDetails.ts │ │ │ │ ├── MvcValidationProblemDetails.ts │ │ │ │ └── models.ts │ │ │ └── variables.ts │ │ ├── typescript-node │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── api │ │ │ │ ├── apis.ts │ │ │ │ ├── contentExtractionApi.ts │ │ │ │ ├── fileDownloadApi.ts │ │ │ │ ├── filingMetadataApi.ts │ │ │ │ ├── fullTextSearchApi.ts │ │ │ │ └── xBRLConversionApi.ts │ │ │ ├── git_push.sh │ │ │ └── model │ │ │ │ ├── dTOExtractorType.ts │ │ │ │ ├── dTOFilingMetadataDto.ts │ │ │ │ ├── dTOFilingSortBy.ts │ │ │ │ ├── dTOSecFilingResultDto.ts │ │ │ │ ├── models.ts │ │ │ │ ├── mvcProblemDetails.ts │ │ │ │ └── mvcValidationProblemDetails.ts │ │ └── typescript-rxjs │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ │ ├── apis │ │ │ ├── ContentExtractionApi.ts │ │ │ ├── FileDownloadApi.ts │ │ │ ├── FilingMetadataApi.ts │ │ │ ├── FullTextSearchApi.ts │ │ │ ├── XBRLConversionApi.ts │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ ├── DTOExtractorType.ts │ │ │ ├── DTOFilingMetadataDto.ts │ │ │ ├── DTOFilingSortBy.ts │ │ │ ├── DTOSecFilingResultDto.ts │ │ │ ├── MvcProblemDetails.ts │ │ │ ├── MvcValidationProblemDetails.ts │ │ │ └── index.ts │ │ │ ├── runtime.ts │ │ │ ├── servers.ts │ │ │ └── tsconfig.json │ ├── spec │ │ ├── openapi.json │ │ └── openapi.yaml │ └── tutorials │ │ ├── Apple 10-K Filings Analysis and Visualization.ipynb │ │ ├── Company-Specific Filing Analysis (CIK) with FinFeedAPI.ipynb │ │ ├── Event Detection (8-K Items) with FinFeedAPI.ipynb │ │ ├── Keyword Trend Tracking in Filings with FinFeedAPI.ipynb │ │ ├── README.md │ │ ├── Risk Factor (10-K Item 1A) Length Analysis with FinFeedAPI.ipynb │ │ ├── SEC Filing Analysis with FinFeedAPI.ipynb │ │ └── Tesla_SEC_XBRL_Filing_Data_Analysis_and_Visualization.ipynb └── stock-api-rest │ ├── sdk-config │ ├── ada.yaml │ ├── android.yaml │ ├── apex.yaml │ ├── bash.yaml │ ├── c.yaml │ ├── clojure.yaml │ ├── cpp-restsdk.yaml │ ├── cpp-tizen.yaml │ ├── csharp.yaml │ ├── dart-dio.yaml │ ├── dart.yaml │ ├── eiffel.yaml │ ├── elixir.yaml │ ├── elm.yaml │ ├── erlang-client.yaml │ ├── erlang-proper.yaml │ ├── go.yaml │ ├── groovy.yaml │ ├── haskell-http-client.yaml │ ├── java.yaml │ ├── javascript-closure-angular.yaml │ ├── javascript-flowtyped.yaml │ ├── javascript.yaml │ ├── kotlin.yaml │ ├── lua.yaml │ ├── perl.yaml │ ├── php.yaml │ ├── powershell.yaml │ ├── python.yaml │ ├── r.yaml │ ├── ruby.yaml │ ├── scala-akka.yaml │ ├── shared │ │ └── common.yaml │ ├── typescript-angular.yaml │ ├── typescript-jquery.yaml │ ├── typescript-node.yaml │ └── typescript-rxjs.yaml │ ├── sdk │ ├── ada │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── config.gpr │ │ ├── defaultpackage.gpr │ │ └── src │ │ │ ├── -client.adb │ │ │ ├── .ads │ │ │ ├── client │ │ │ ├── -clients.adb │ │ │ └── -clients.ads │ │ │ └── model │ │ │ ├── -models.adb │ │ │ └── -models.ads │ ├── android │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── build.gradle │ │ ├── docs │ │ │ ├── AdminAdminMessageModel.md │ │ │ ├── AdminAuctionInformationModel.md │ │ │ ├── AdminOfficialPriceModel.md │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ ├── AdminSecurityEventModel.md │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ ├── AdminSystemEventModel.md │ │ │ ├── AdminTradingStatusModel.md │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ ├── Level3AddOrderModel.md │ │ │ ├── Level3ClearBookModel.md │ │ │ ├── Level3DeleteOrderModel.md │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ ├── Level3ModifyOrderModel.md │ │ │ ├── Level3OrderBookModel.md │ │ │ ├── MetadataApi.md │ │ │ ├── NativeIEXApi.md │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ ├── OhlcvApi.md │ │ │ └── TradeTradeModel.md │ │ ├── git_push.sh │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── pom.xml │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── org │ │ │ └── openapitools │ │ │ └── client │ │ │ ├── ApiException.java │ │ │ ├── ApiInvoker.java │ │ │ ├── JsonUtil.java │ │ │ ├── Pair.java │ │ │ ├── api │ │ │ ├── MetadataApi.java │ │ │ ├── NativeIEXApi.java │ │ │ └── OhlcvApi.java │ │ │ ├── auth │ │ │ ├── ApiKeyAuth.java │ │ │ ├── Authentication.java │ │ │ └── HttpBasicAuth.java │ │ │ ├── model │ │ │ ├── AdminAdminMessageModel.java │ │ │ ├── AdminAuctionInformationModel.java │ │ │ ├── AdminOfficialPriceModel.java │ │ │ ├── AdminOperationalHaltStatusModel.java │ │ │ ├── AdminRetailLiquidityIndicatorModel.java │ │ │ ├── AdminSecurityDirectoryModel.java │ │ │ ├── AdminSecurityEventModel.java │ │ │ ├── AdminShortSalePriceTestStatusModel.java │ │ │ ├── AdminSystemEventModel.java │ │ │ ├── AdminTradingStatusModel.java │ │ │ ├── FinFeedAPIExchangeModel.java │ │ │ ├── FinFeedAPISymbolModel.java │ │ │ ├── Level1QuoteUpdateModel.java │ │ │ ├── Level2PriceLevelUpdateModel.java │ │ │ ├── Level3AddOrderModel.java │ │ │ ├── Level3ClearBookModel.java │ │ │ ├── Level3DeleteOrderModel.java │ │ │ ├── Level3ExecutedOrderModel.java │ │ │ ├── Level3ModifyOrderModel.java │ │ │ ├── Level3OrderBookModel.java │ │ │ ├── OHLCVExchangeTimeseriesItem.java │ │ │ ├── OHLCVTimeseriesItem.java │ │ │ ├── OHLCVTimeseriesPeriod.java │ │ │ └── TradeTradeModel.java │ │ │ └── request │ │ │ ├── DeleteRequest.java │ │ │ ├── GetRequest.java │ │ │ ├── PatchRequest.java │ │ │ ├── PostRequest.java │ │ │ └── PutRequest.java │ ├── apex │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── config │ │ │ └── project-scratch-def.json │ │ ├── force-app │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── classes │ │ │ │ ├── OAS.cls │ │ │ │ ├── OAS.cls-meta.xml │ │ │ │ ├── OASAdminAdminMessageModel.cls │ │ │ │ ├── OASAdminAdminMessageModel.cls-meta.xml │ │ │ │ ├── OASAdminAdminMessageModelTest.cls │ │ │ │ ├── OASAdminAdminMessageModelTest.cls-meta.xml │ │ │ │ ├── OASAdminAuctionInformationModel.cls │ │ │ │ ├── OASAdminAuctionInformationModel.cls-meta.xml │ │ │ │ ├── OASAdminAuctionInformationModelTest.cls │ │ │ │ ├── OASAdminAuctionInformationModelTest.cls-meta.xml │ │ │ │ ├── OASAdminOfficialPriceModel.cls │ │ │ │ ├── OASAdminOfficialPriceModel.cls-meta.xml │ │ │ │ ├── OASAdminOfficialPriceModelTest.cls │ │ │ │ ├── OASAdminOfficialPriceModelTest.cls-meta.xml │ │ │ │ ├── OASAdminOperationalHaltStatusModel.cls │ │ │ │ ├── OASAdminOperationalHaltStatusModel.cls-meta.xml │ │ │ │ ├── OASAdminOperationalHaltStatusModelTest.cls │ │ │ │ ├── OASAdminOperationalHaltStatusModelTest.cls-meta.xml │ │ │ │ ├── OASAdminRetailLiquidityIndicatorMode.cls │ │ │ │ ├── OASAdminRetailLiquidityIndicatorMode.cls-meta.xml │ │ │ │ ├── OASAdminRetailLiquidityIndicatorModeTest.cls │ │ │ │ ├── OASAdminRetailLiquidityIndicatorModeTest.cls-meta.xml │ │ │ │ ├── OASAdminSecurityDirectoryModel.cls │ │ │ │ ├── OASAdminSecurityDirectoryModel.cls-meta.xml │ │ │ │ ├── OASAdminSecurityDirectoryModelTest.cls │ │ │ │ ├── OASAdminSecurityDirectoryModelTest.cls-meta.xml │ │ │ │ ├── OASAdminSecurityEventModel.cls │ │ │ │ ├── OASAdminSecurityEventModel.cls-meta.xml │ │ │ │ ├── OASAdminSecurityEventModelTest.cls │ │ │ │ ├── OASAdminSecurityEventModelTest.cls-meta.xml │ │ │ │ ├── OASAdminShortSalePriceTestStatusMode.cls │ │ │ │ ├── OASAdminShortSalePriceTestStatusMode.cls-meta.xml │ │ │ │ ├── OASAdminShortSalePriceTestStatusModeTest.cls │ │ │ │ ├── OASAdminShortSalePriceTestStatusModeTest.cls-meta.xml │ │ │ │ ├── OASAdminSystemEventModel.cls │ │ │ │ ├── OASAdminSystemEventModel.cls-meta.xml │ │ │ │ ├── OASAdminSystemEventModelTest.cls │ │ │ │ ├── OASAdminSystemEventModelTest.cls-meta.xml │ │ │ │ ├── OASAdminTradingStatusModel.cls │ │ │ │ ├── OASAdminTradingStatusModel.cls-meta.xml │ │ │ │ ├── OASAdminTradingStatusModelTest.cls │ │ │ │ ├── OASAdminTradingStatusModelTest.cls-meta.xml │ │ │ │ ├── OASClient.cls │ │ │ │ ├── OASClient.cls-meta.xml │ │ │ │ ├── OASFinFeedAPIExchangeModel.cls │ │ │ │ ├── OASFinFeedAPIExchangeModel.cls-meta.xml │ │ │ │ ├── OASFinFeedAPIExchangeModelTest.cls │ │ │ │ ├── OASFinFeedAPIExchangeModelTest.cls-meta.xml │ │ │ │ ├── OASFinFeedAPISymbolModel.cls │ │ │ │ ├── OASFinFeedAPISymbolModel.cls-meta.xml │ │ │ │ ├── OASFinFeedAPISymbolModelTest.cls │ │ │ │ ├── OASFinFeedAPISymbolModelTest.cls-meta.xml │ │ │ │ ├── OASLevel1QuoteUpdateModel.cls │ │ │ │ ├── OASLevel1QuoteUpdateModel.cls-meta.xml │ │ │ │ ├── OASLevel1QuoteUpdateModelTest.cls │ │ │ │ ├── OASLevel1QuoteUpdateModelTest.cls-meta.xml │ │ │ │ ├── OASLevel2PriceLevelUpdateModel.cls │ │ │ │ ├── OASLevel2PriceLevelUpdateModel.cls-meta.xml │ │ │ │ ├── OASLevel2PriceLevelUpdateModelTest.cls │ │ │ │ ├── OASLevel2PriceLevelUpdateModelTest.cls-meta.xml │ │ │ │ ├── OASLevel3AddOrderModel.cls │ │ │ │ ├── OASLevel3AddOrderModel.cls-meta.xml │ │ │ │ ├── OASLevel3AddOrderModelTest.cls │ │ │ │ ├── OASLevel3AddOrderModelTest.cls-meta.xml │ │ │ │ ├── OASLevel3ClearBookModel.cls │ │ │ │ ├── OASLevel3ClearBookModel.cls-meta.xml │ │ │ │ ├── OASLevel3ClearBookModelTest.cls │ │ │ │ ├── OASLevel3ClearBookModelTest.cls-meta.xml │ │ │ │ ├── OASLevel3DeleteOrderModel.cls │ │ │ │ ├── OASLevel3DeleteOrderModel.cls-meta.xml │ │ │ │ ├── OASLevel3DeleteOrderModelTest.cls │ │ │ │ ├── OASLevel3DeleteOrderModelTest.cls-meta.xml │ │ │ │ ├── OASLevel3ExecutedOrderModel.cls │ │ │ │ ├── OASLevel3ExecutedOrderModel.cls-meta.xml │ │ │ │ ├── OASLevel3ExecutedOrderModelTest.cls │ │ │ │ ├── OASLevel3ExecutedOrderModelTest.cls-meta.xml │ │ │ │ ├── OASLevel3ModifyOrderModel.cls │ │ │ │ ├── OASLevel3ModifyOrderModel.cls-meta.xml │ │ │ │ ├── OASLevel3ModifyOrderModelTest.cls │ │ │ │ ├── OASLevel3ModifyOrderModelTest.cls-meta.xml │ │ │ │ ├── OASLevel3OrderBookModel.cls │ │ │ │ ├── OASLevel3OrderBookModel.cls-meta.xml │ │ │ │ ├── OASLevel3OrderBookModelTest.cls │ │ │ │ ├── OASLevel3OrderBookModelTest.cls-meta.xml │ │ │ │ ├── OASMetadataApi.cls │ │ │ │ ├── OASMetadataApi.cls-meta.xml │ │ │ │ ├── OASMetadataApiTest.cls │ │ │ │ ├── OASMetadataApiTest.cls-meta.xml │ │ │ │ ├── OASNativeIEXApi.cls │ │ │ │ ├── OASNativeIEXApi.cls-meta.xml │ │ │ │ ├── OASNativeIEXApiTest.cls │ │ │ │ ├── OASNativeIEXApiTest.cls-meta.xml │ │ │ │ ├── OASOHLCVExchangeTimeseriesItem.cls │ │ │ │ ├── OASOHLCVExchangeTimeseriesItem.cls-meta.xml │ │ │ │ ├── OASOHLCVExchangeTimeseriesItemTest.cls │ │ │ │ ├── OASOHLCVExchangeTimeseriesItemTest.cls-meta.xml │ │ │ │ ├── OASOHLCVTimeseriesItem.cls │ │ │ │ ├── OASOHLCVTimeseriesItem.cls-meta.xml │ │ │ │ ├── OASOHLCVTimeseriesItemTest.cls │ │ │ │ ├── OASOHLCVTimeseriesItemTest.cls-meta.xml │ │ │ │ ├── OASOHLCVTimeseriesPeriod.cls │ │ │ │ ├── OASOHLCVTimeseriesPeriod.cls-meta.xml │ │ │ │ ├── OASOHLCVTimeseriesPeriodTest.cls │ │ │ │ ├── OASOHLCVTimeseriesPeriodTest.cls-meta.xml │ │ │ │ ├── OASOhlcvApi.cls │ │ │ │ ├── OASOhlcvApi.cls-meta.xml │ │ │ │ ├── OASOhlcvApiTest.cls │ │ │ │ ├── OASOhlcvApiTest.cls-meta.xml │ │ │ │ ├── OASResponseMock.cls │ │ │ │ ├── OASResponseMock.cls-meta.xml │ │ │ │ ├── OASTest.cls │ │ │ │ ├── OASTest.cls-meta.xml │ │ │ │ ├── OASTradeTradeModel.cls │ │ │ │ ├── OASTradeTradeModel.cls-meta.xml │ │ │ │ ├── OASTradeTradeModelTest.cls │ │ │ │ └── OASTradeTradeModelTest.cls-meta.xml │ │ │ │ └── namedCredentials │ │ │ │ └── FinFeedAPI_Stock_REST_API.namedCredential-meta.xml │ │ └── sfdx-project.json │ ├── bash │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── _client.sh │ │ ├── client.sh │ │ ├── client.sh.bash-completion │ │ └── docs │ │ │ ├── AdminAdminMessageModel.md │ │ │ ├── AdminAuctionInformationModel.md │ │ │ ├── AdminOfficialPriceModel.md │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ ├── AdminSecurityEventModel.md │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ ├── AdminSystemEventModel.md │ │ │ ├── AdminTradingStatusModel.md │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ ├── Level3AddOrderModel.md │ │ │ ├── Level3ClearBookModel.md │ │ │ ├── Level3DeleteOrderModel.md │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ ├── Level3ModifyOrderModel.md │ │ │ ├── Level3OrderBookModel.md │ │ │ ├── MetadataApi.md │ │ │ ├── NativeIEXApi.md │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ ├── OhlcvApi.md │ │ │ └── TradeTradeModel.md │ ├── c │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── CMakeLists.txt │ │ ├── Config.cmake.in │ │ ├── Packing.cmake │ │ ├── README.md │ │ ├── api │ │ │ ├── MetadataAPI.c │ │ │ ├── MetadataAPI.h │ │ │ ├── NativeIEXAPI.c │ │ │ ├── NativeIEXAPI.h │ │ │ ├── OhlcvAPI.c │ │ │ └── OhlcvAPI.h │ │ ├── docs │ │ │ ├── MetadataAPI.md │ │ │ ├── NativeIEXAPI.md │ │ │ ├── OhlcvAPI.md │ │ │ ├── admin_admin_message_model.md │ │ │ ├── admin_auction_information_model.md │ │ │ ├── admin_official_price_model.md │ │ │ ├── admin_operational_halt_status_model.md │ │ │ ├── admin_retail_liquidity_indicator_model.md │ │ │ ├── admin_security_directory_model.md │ │ │ ├── admin_security_event_model.md │ │ │ ├── admin_short_sale_price_test_status_model.md │ │ │ ├── admin_system_event_model.md │ │ │ ├── admin_trading_status_model.md │ │ │ ├── fin_feed_api_exchange_model.md │ │ │ ├── fin_feed_api_symbol_model.md │ │ │ ├── level1_quote_update_model.md │ │ │ ├── level2_price_level_update_model.md │ │ │ ├── level3_add_order_model.md │ │ │ ├── level3_clear_book_model.md │ │ │ ├── level3_delete_order_model.md │ │ │ ├── level3_executed_order_model.md │ │ │ ├── level3_modify_order_model.md │ │ │ ├── level3_order_book_model.md │ │ │ ├── ohlcv_exchange_timeseries_item.md │ │ │ ├── ohlcv_timeseries_item.md │ │ │ ├── ohlcv_timeseries_period.md │ │ │ └── trade_trade_model.md │ │ ├── external │ │ │ ├── cJSON.c │ │ │ ├── cJSON.h │ │ │ └── cJSON.licence │ │ ├── include │ │ │ ├── apiClient.h │ │ │ ├── binary.h │ │ │ ├── keyValuePair.h │ │ │ └── list.h │ │ ├── libcurl.licence │ │ ├── model │ │ │ ├── admin_admin_message_model.c │ │ │ ├── admin_admin_message_model.h │ │ │ ├── admin_auction_information_model.c │ │ │ ├── admin_auction_information_model.h │ │ │ ├── admin_official_price_model.c │ │ │ ├── admin_official_price_model.h │ │ │ ├── admin_operational_halt_status_model.c │ │ │ ├── admin_operational_halt_status_model.h │ │ │ ├── admin_retail_liquidity_indicator_model.c │ │ │ ├── admin_retail_liquidity_indicator_model.h │ │ │ ├── admin_security_directory_model.c │ │ │ ├── admin_security_directory_model.h │ │ │ ├── admin_security_event_model.c │ │ │ ├── admin_security_event_model.h │ │ │ ├── admin_short_sale_price_test_status_model.c │ │ │ ├── admin_short_sale_price_test_status_model.h │ │ │ ├── admin_system_event_model.c │ │ │ ├── admin_system_event_model.h │ │ │ ├── admin_trading_status_model.c │ │ │ ├── admin_trading_status_model.h │ │ │ ├── any_type.h │ │ │ ├── fin_feed_api_exchange_model.c │ │ │ ├── fin_feed_api_exchange_model.h │ │ │ ├── fin_feed_api_symbol_model.c │ │ │ ├── fin_feed_api_symbol_model.h │ │ │ ├── level1_quote_update_model.c │ │ │ ├── level1_quote_update_model.h │ │ │ ├── level2_price_level_update_model.c │ │ │ ├── level2_price_level_update_model.h │ │ │ ├── level3_add_order_model.c │ │ │ ├── level3_add_order_model.h │ │ │ ├── level3_clear_book_model.c │ │ │ ├── level3_clear_book_model.h │ │ │ ├── level3_delete_order_model.c │ │ │ ├── level3_delete_order_model.h │ │ │ ├── level3_executed_order_model.c │ │ │ ├── level3_executed_order_model.h │ │ │ ├── level3_modify_order_model.c │ │ │ ├── level3_modify_order_model.h │ │ │ ├── level3_order_book_model.c │ │ │ ├── level3_order_book_model.h │ │ │ ├── object.c │ │ │ ├── object.h │ │ │ ├── ohlcv_exchange_timeseries_item.c │ │ │ ├── ohlcv_exchange_timeseries_item.h │ │ │ ├── ohlcv_timeseries_item.c │ │ │ ├── ohlcv_timeseries_item.h │ │ │ ├── ohlcv_timeseries_period.c │ │ │ ├── ohlcv_timeseries_period.h │ │ │ ├── trade_trade_model.c │ │ │ └── trade_trade_model.h │ │ ├── src │ │ │ ├── apiClient.c │ │ │ ├── apiKey.c │ │ │ ├── binary.c │ │ │ └── list.c │ │ ├── uncrustify-rules.cfg │ │ └── unit-test │ │ │ ├── test_admin_admin_message_model.c │ │ │ ├── test_admin_auction_information_model.c │ │ │ ├── test_admin_official_price_model.c │ │ │ ├── test_admin_operational_halt_status_model.c │ │ │ ├── test_admin_retail_liquidity_indicator_model.c │ │ │ ├── test_admin_security_directory_model.c │ │ │ ├── test_admin_security_event_model.c │ │ │ ├── test_admin_short_sale_price_test_status_model.c │ │ │ ├── test_admin_system_event_model.c │ │ │ ├── test_admin_trading_status_model.c │ │ │ ├── test_fin_feed_api_exchange_model.c │ │ │ ├── test_fin_feed_api_symbol_model.c │ │ │ ├── test_level1_quote_update_model.c │ │ │ ├── test_level2_price_level_update_model.c │ │ │ ├── test_level3_add_order_model.c │ │ │ ├── test_level3_clear_book_model.c │ │ │ ├── test_level3_delete_order_model.c │ │ │ ├── test_level3_executed_order_model.c │ │ │ ├── test_level3_modify_order_model.c │ │ │ ├── test_level3_order_book_model.c │ │ │ ├── test_ohlcv_exchange_timeseries_item.c │ │ │ ├── test_ohlcv_timeseries_item.c │ │ │ ├── test_ohlcv_timeseries_period.c │ │ │ └── test_trade_trade_model.c │ ├── clojure │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── git_push.sh │ │ ├── project.clj │ │ └── src │ │ │ └── fin_feed_api_stock_rest_api │ │ │ ├── api │ │ │ ├── metadata.clj │ │ │ ├── native_iex.clj │ │ │ └── ohlcv.clj │ │ │ ├── core.clj │ │ │ └── specs │ │ │ ├── admin │ │ │ ├── admin_message_model.clj │ │ │ ├── auction_information_model.clj │ │ │ ├── official_price_model.clj │ │ │ ├── operational_halt_status_model.clj │ │ │ ├── retail_liquidity_indicator_model.clj │ │ │ ├── security_directory_model.clj │ │ │ ├── security_event_model.clj │ │ │ ├── short_sale_price_test_status_model.clj │ │ │ ├── system_event_model.clj │ │ │ └── trading_status_model.clj │ │ │ ├── fin_feed_api │ │ │ ├── exchange_model.clj │ │ │ └── symbol_model.clj │ │ │ ├── level1 │ │ │ └── quote_update_model.clj │ │ │ ├── level2 │ │ │ └── price_level_update_model.clj │ │ │ ├── level3 │ │ │ ├── add_order_model.clj │ │ │ ├── clear_book_model.clj │ │ │ ├── delete_order_model.clj │ │ │ ├── executed_order_model.clj │ │ │ ├── modify_order_model.clj │ │ │ └── order_book_model.clj │ │ │ ├── ohlcv │ │ │ ├── exchange_timeseries_item.clj │ │ │ ├── timeseries_item.clj │ │ │ └── timeseries_period.clj │ │ │ └── trade │ │ │ └── trade_model.clj │ ├── cpp-restsdk │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── CMakeLists.txt │ │ ├── Config.cmake.in │ │ ├── README.md │ │ ├── git_push.sh │ │ ├── include │ │ │ └── CppRestOpenAPIClient │ │ │ │ ├── AnyType.h │ │ │ │ ├── ApiClient.h │ │ │ │ ├── ApiConfiguration.h │ │ │ │ ├── ApiException.h │ │ │ │ ├── HttpContent.h │ │ │ │ ├── IHttpBody.h │ │ │ │ ├── JsonBody.h │ │ │ │ ├── ModelBase.h │ │ │ │ ├── MultipartFormData.h │ │ │ │ ├── Object.h │ │ │ │ ├── api │ │ │ │ ├── MetadataApi.h │ │ │ │ ├── NativeIEXApi.h │ │ │ │ └── OhlcvApi.h │ │ │ │ └── model │ │ │ │ ├── Admin_AdminMessageModel.h │ │ │ │ ├── Admin_AuctionInformationModel.h │ │ │ │ ├── Admin_OfficialPriceModel.h │ │ │ │ ├── Admin_OperationalHaltStatusModel.h │ │ │ │ ├── Admin_RetailLiquidityIndicatorModel.h │ │ │ │ ├── Admin_SecurityDirectoryModel.h │ │ │ │ ├── Admin_SecurityEventModel.h │ │ │ │ ├── Admin_ShortSalePriceTestStatusModel.h │ │ │ │ ├── Admin_SystemEventModel.h │ │ │ │ ├── Admin_TradingStatusModel.h │ │ │ │ ├── FinFeedAPI_ExchangeModel.h │ │ │ │ ├── FinFeedAPI_SymbolModel.h │ │ │ │ ├── Level1_QuoteUpdateModel.h │ │ │ │ ├── Level2_PriceLevelUpdateModel.h │ │ │ │ ├── Level3_AddOrderModel.h │ │ │ │ ├── Level3_ClearBookModel.h │ │ │ │ ├── Level3_DeleteOrderModel.h │ │ │ │ ├── Level3_ExecutedOrderModel.h │ │ │ │ ├── Level3_ModifyOrderModel.h │ │ │ │ ├── Level3_OrderBookModel.h │ │ │ │ ├── OHLCV_ExchangeTimeseriesItem.h │ │ │ │ ├── OHLCV_TimeseriesItem.h │ │ │ │ ├── OHLCV_TimeseriesPeriod.h │ │ │ │ └── Trade_TradeModel.h │ │ └── src │ │ │ ├── AnyType.cpp │ │ │ ├── ApiClient.cpp │ │ │ ├── ApiConfiguration.cpp │ │ │ ├── ApiException.cpp │ │ │ ├── HttpContent.cpp │ │ │ ├── JsonBody.cpp │ │ │ ├── ModelBase.cpp │ │ │ ├── MultipartFormData.cpp │ │ │ ├── Object.cpp │ │ │ ├── api │ │ │ ├── MetadataApi.cpp │ │ │ ├── NativeIEXApi.cpp │ │ │ └── OhlcvApi.cpp │ │ │ └── model │ │ │ ├── Admin_AdminMessageModel.cpp │ │ │ ├── Admin_AuctionInformationModel.cpp │ │ │ ├── Admin_OfficialPriceModel.cpp │ │ │ ├── Admin_OperationalHaltStatusModel.cpp │ │ │ ├── Admin_RetailLiquidityIndicatorModel.cpp │ │ │ ├── Admin_SecurityDirectoryModel.cpp │ │ │ ├── Admin_SecurityEventModel.cpp │ │ │ ├── Admin_ShortSalePriceTestStatusModel.cpp │ │ │ ├── Admin_SystemEventModel.cpp │ │ │ ├── Admin_TradingStatusModel.cpp │ │ │ ├── FinFeedAPI_ExchangeModel.cpp │ │ │ ├── FinFeedAPI_SymbolModel.cpp │ │ │ ├── Level1_QuoteUpdateModel.cpp │ │ │ ├── Level2_PriceLevelUpdateModel.cpp │ │ │ ├── Level3_AddOrderModel.cpp │ │ │ ├── Level3_ClearBookModel.cpp │ │ │ ├── Level3_DeleteOrderModel.cpp │ │ │ ├── Level3_ExecutedOrderModel.cpp │ │ │ ├── Level3_ModifyOrderModel.cpp │ │ │ ├── Level3_OrderBookModel.cpp │ │ │ ├── OHLCV_ExchangeTimeseriesItem.cpp │ │ │ ├── OHLCV_TimeseriesItem.cpp │ │ │ ├── OHLCV_TimeseriesPeriod.cpp │ │ │ └── Trade_TradeModel.cpp │ ├── cpp-tizen │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── doc │ │ │ ├── Doxyfile │ │ │ ├── README.md │ │ │ └── generateDocumentation.sh │ │ └── src │ │ │ ├── AdminAdminMessageModel.cpp │ │ │ ├── AdminAdminMessageModel.h │ │ │ ├── AdminAuctionInformationModel.cpp │ │ │ ├── AdminAuctionInformationModel.h │ │ │ ├── AdminOfficialPriceModel.cpp │ │ │ ├── AdminOfficialPriceModel.h │ │ │ ├── AdminOperationalHaltStatusModel.cpp │ │ │ ├── AdminOperationalHaltStatusModel.h │ │ │ ├── AdminRetailLiquidityIndicatorModel.cpp │ │ │ ├── AdminRetailLiquidityIndicatorModel.h │ │ │ ├── AdminSecurityDirectoryModel.cpp │ │ │ ├── AdminSecurityDirectoryModel.h │ │ │ ├── AdminSecurityEventModel.cpp │ │ │ ├── AdminSecurityEventModel.h │ │ │ ├── AdminShortSalePriceTestStatusModel.cpp │ │ │ ├── AdminShortSalePriceTestStatusModel.h │ │ │ ├── AdminSystemEventModel.cpp │ │ │ ├── AdminSystemEventModel.h │ │ │ ├── AdminTradingStatusModel.cpp │ │ │ ├── AdminTradingStatusModel.h │ │ │ ├── Error.cpp │ │ │ ├── Error.h │ │ │ ├── FinFeedAPIExchangeModel.cpp │ │ │ ├── FinFeedAPIExchangeModel.h │ │ │ ├── FinFeedAPISymbolModel.cpp │ │ │ ├── FinFeedAPISymbolModel.h │ │ │ ├── Helpers.cpp │ │ │ ├── Helpers.h │ │ │ ├── Level1QuoteUpdateModel.cpp │ │ │ ├── Level1QuoteUpdateModel.h │ │ │ ├── Level2PriceLevelUpdateModel.cpp │ │ │ ├── Level2PriceLevelUpdateModel.h │ │ │ ├── Level3AddOrderModel.cpp │ │ │ ├── Level3AddOrderModel.h │ │ │ ├── Level3ClearBookModel.cpp │ │ │ ├── Level3ClearBookModel.h │ │ │ ├── Level3DeleteOrderModel.cpp │ │ │ ├── Level3DeleteOrderModel.h │ │ │ ├── Level3ExecutedOrderModel.cpp │ │ │ ├── Level3ExecutedOrderModel.h │ │ │ ├── Level3ModifyOrderModel.cpp │ │ │ ├── Level3ModifyOrderModel.h │ │ │ ├── Level3OrderBookModel.cpp │ │ │ ├── Level3OrderBookModel.h │ │ │ ├── MetadataManager.cpp │ │ │ ├── MetadataManager.h │ │ │ ├── NativeIEXManager.cpp │ │ │ ├── NativeIEXManager.h │ │ │ ├── NetClient.cpp │ │ │ ├── NetClient.h │ │ │ ├── OHLCVExchangeTimeseriesItem.cpp │ │ │ ├── OHLCVExchangeTimeseriesItem.h │ │ │ ├── OHLCVTimeseriesItem.cpp │ │ │ ├── OHLCVTimeseriesItem.h │ │ │ ├── OHLCVTimeseriesPeriod.cpp │ │ │ ├── OHLCVTimeseriesPeriod.h │ │ │ ├── Object.h │ │ │ ├── OhlcvManager.cpp │ │ │ ├── OhlcvManager.h │ │ │ ├── RequestInfo.h │ │ │ ├── TradeTradeModel.cpp │ │ │ └── TradeTradeModel.h │ ├── csharp │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── APIBricks.FinFeedAPI.STOCKAPI.REST.V1.sln │ │ ├── README.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── appveyor.yml │ │ ├── docs │ │ │ ├── apis │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── NativeIEXApi.md │ │ │ │ └── OhlcvApi.md │ │ │ ├── models │ │ │ │ ├── AdminAdminMessageModel.md │ │ │ │ ├── AdminAuctionInformationModel.md │ │ │ │ ├── AdminOfficialPriceModel.md │ │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ │ ├── AdminSecurityEventModel.md │ │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ │ ├── AdminSystemEventModel.md │ │ │ │ ├── AdminTradingStatusModel.md │ │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ │ ├── Level3AddOrderModel.md │ │ │ │ ├── Level3ClearBookModel.md │ │ │ │ ├── Level3DeleteOrderModel.md │ │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ │ ├── Level3ModifyOrderModel.md │ │ │ │ ├── Level3OrderBookModel.md │ │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ │ └── TradeTradeModel.md │ │ │ └── scripts │ │ │ │ ├── git_push.ps1 │ │ │ │ └── git_push.sh │ │ └── src │ │ │ ├── APIBricks.FinFeedAPI.STOCKAPI.REST.V1.Test │ │ │ ├── APIBricks.FinFeedAPI.STOCKAPI.REST.V1.Test.csproj │ │ │ ├── Api │ │ │ │ ├── ApiTestsBase.cs │ │ │ │ ├── DependencyInjectionTests.cs │ │ │ │ ├── MetadataApiTests.cs │ │ │ │ ├── NativeIEXApiTests.cs │ │ │ │ └── OhlcvApiTests.cs │ │ │ ├── Model │ │ │ │ ├── AdminAdminMessageModelTests.cs │ │ │ │ ├── AdminAuctionInformationModelTests.cs │ │ │ │ ├── AdminOfficialPriceModelTests.cs │ │ │ │ ├── AdminOperationalHaltStatusModelTests.cs │ │ │ │ ├── AdminRetailLiquidityIndicatorModelTests.cs │ │ │ │ ├── AdminSecurityDirectoryModelTests.cs │ │ │ │ ├── AdminSecurityEventModelTests.cs │ │ │ │ ├── AdminShortSalePriceTestStatusModelTests.cs │ │ │ │ ├── AdminSystemEventModelTests.cs │ │ │ │ ├── AdminTradingStatusModelTests.cs │ │ │ │ ├── FinFeedAPIExchangeModelTests.cs │ │ │ │ ├── FinFeedAPISymbolModelTests.cs │ │ │ │ ├── Level1QuoteUpdateModelTests.cs │ │ │ │ ├── Level2PriceLevelUpdateModelTests.cs │ │ │ │ ├── Level3AddOrderModelTests.cs │ │ │ │ ├── Level3ClearBookModelTests.cs │ │ │ │ ├── Level3DeleteOrderModelTests.cs │ │ │ │ ├── Level3ExecutedOrderModelTests.cs │ │ │ │ ├── Level3ModifyOrderModelTests.cs │ │ │ │ ├── Level3OrderBookModelTests.cs │ │ │ │ ├── OHLCVExchangeTimeseriesItemTests.cs │ │ │ │ ├── OHLCVTimeseriesItemTests.cs │ │ │ │ ├── OHLCVTimeseriesPeriodTests.cs │ │ │ │ └── TradeTradeModelTests.cs │ │ │ └── README.md │ │ │ └── APIBricks.FinFeedAPI.STOCKAPI.REST.V1 │ │ │ ├── APIBricks.FinFeedAPI.STOCKAPI.REST.V1.csproj │ │ │ ├── Api │ │ │ ├── IApi.cs │ │ │ ├── MetadataApi.cs │ │ │ ├── NativeIEXApi.cs │ │ │ └── OhlcvApi.cs │ │ │ ├── Client │ │ │ ├── ApiException.cs │ │ │ ├── ApiFactory.cs │ │ │ ├── ApiKeyToken.cs │ │ │ ├── ApiResponseEventArgs.cs │ │ │ ├── ApiResponse`1.cs │ │ │ ├── BearerToken.cs │ │ │ ├── ClientUtils.cs │ │ │ ├── CookieContainer.cs │ │ │ ├── DateOnlyJsonConverter.cs │ │ │ ├── DateOnlyNullableJsonConverter.cs │ │ │ ├── DateTimeJsonConverter.cs │ │ │ ├── DateTimeNullableJsonConverter.cs │ │ │ ├── ExceptionEventArgs.cs │ │ │ ├── HostConfiguration.cs │ │ │ ├── JsonSerializerOptionsProvider.cs │ │ │ ├── Option.cs │ │ │ ├── RateLimitProvider`1.cs │ │ │ ├── TokenBase.cs │ │ │ ├── TokenContainer`1.cs │ │ │ └── TokenProvider`1.cs │ │ │ ├── Extensions │ │ │ ├── IHostBuilderExtensions.cs │ │ │ ├── IHttpClientBuilderExtensions.cs │ │ │ └── IServiceCollectionExtensions.cs │ │ │ ├── Model │ │ │ ├── AdminAdminMessageModel.cs │ │ │ ├── AdminAuctionInformationModel.cs │ │ │ ├── AdminOfficialPriceModel.cs │ │ │ ├── AdminOperationalHaltStatusModel.cs │ │ │ ├── AdminRetailLiquidityIndicatorModel.cs │ │ │ ├── AdminSecurityDirectoryModel.cs │ │ │ ├── AdminSecurityEventModel.cs │ │ │ ├── AdminShortSalePriceTestStatusModel.cs │ │ │ ├── AdminSystemEventModel.cs │ │ │ ├── AdminTradingStatusModel.cs │ │ │ ├── FinFeedAPIExchangeModel.cs │ │ │ ├── FinFeedAPISymbolModel.cs │ │ │ ├── Level1QuoteUpdateModel.cs │ │ │ ├── Level2PriceLevelUpdateModel.cs │ │ │ ├── Level3AddOrderModel.cs │ │ │ ├── Level3ClearBookModel.cs │ │ │ ├── Level3DeleteOrderModel.cs │ │ │ ├── Level3ExecutedOrderModel.cs │ │ │ ├── Level3ModifyOrderModel.cs │ │ │ ├── Level3OrderBookModel.cs │ │ │ ├── OHLCVExchangeTimeseriesItem.cs │ │ │ ├── OHLCVTimeseriesItem.cs │ │ │ ├── OHLCVTimeseriesPeriod.cs │ │ │ └── TradeTradeModel.cs │ │ │ └── README.md │ ├── dart-dio │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── doc │ │ │ ├── AdminAdminMessageModel.md │ │ │ ├── AdminAuctionInformationModel.md │ │ │ ├── AdminOfficialPriceModel.md │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ ├── AdminSecurityEventModel.md │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ ├── AdminSystemEventModel.md │ │ │ ├── AdminTradingStatusModel.md │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ ├── Level3AddOrderModel.md │ │ │ ├── Level3ClearBookModel.md │ │ │ ├── Level3DeleteOrderModel.md │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ ├── Level3ModifyOrderModel.md │ │ │ ├── Level3OrderBookModel.md │ │ │ ├── MetadataApi.md │ │ │ ├── NativeIEXApi.md │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ ├── OhlcvApi.md │ │ │ └── TradeTradeModel.md │ │ ├── lib │ │ │ ├── openapi.dart │ │ │ └── src │ │ │ │ ├── api.dart │ │ │ │ ├── api │ │ │ │ ├── metadata_api.dart │ │ │ │ ├── native_iex_api.dart │ │ │ │ └── ohlcv_api.dart │ │ │ │ ├── api_util.dart │ │ │ │ ├── auth │ │ │ │ ├── api_key_auth.dart │ │ │ │ ├── auth.dart │ │ │ │ ├── basic_auth.dart │ │ │ │ ├── bearer_auth.dart │ │ │ │ └── oauth.dart │ │ │ │ ├── date_serializer.dart │ │ │ │ ├── model │ │ │ │ ├── admin_admin_message_model.dart │ │ │ │ ├── admin_auction_information_model.dart │ │ │ │ ├── admin_official_price_model.dart │ │ │ │ ├── admin_operational_halt_status_model.dart │ │ │ │ ├── admin_retail_liquidity_indicator_model.dart │ │ │ │ ├── admin_security_directory_model.dart │ │ │ │ ├── admin_security_event_model.dart │ │ │ │ ├── admin_short_sale_price_test_status_model.dart │ │ │ │ ├── admin_system_event_model.dart │ │ │ │ ├── admin_trading_status_model.dart │ │ │ │ ├── date.dart │ │ │ │ ├── fin_feed_api_exchange_model.dart │ │ │ │ ├── fin_feed_api_symbol_model.dart │ │ │ │ ├── level1_quote_update_model.dart │ │ │ │ ├── level2_price_level_update_model.dart │ │ │ │ ├── level3_add_order_model.dart │ │ │ │ ├── level3_clear_book_model.dart │ │ │ │ ├── level3_delete_order_model.dart │ │ │ │ ├── level3_executed_order_model.dart │ │ │ │ ├── level3_modify_order_model.dart │ │ │ │ ├── level3_order_book_model.dart │ │ │ │ ├── ohlcv_exchange_timeseries_item.dart │ │ │ │ ├── ohlcv_timeseries_item.dart │ │ │ │ ├── ohlcv_timeseries_period.dart │ │ │ │ └── trade_trade_model.dart │ │ │ │ └── serializers.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── admin_admin_message_model_test.dart │ │ │ ├── admin_auction_information_model_test.dart │ │ │ ├── admin_official_price_model_test.dart │ │ │ ├── admin_operational_halt_status_model_test.dart │ │ │ ├── admin_retail_liquidity_indicator_model_test.dart │ │ │ ├── admin_security_directory_model_test.dart │ │ │ ├── admin_security_event_model_test.dart │ │ │ ├── admin_short_sale_price_test_status_model_test.dart │ │ │ ├── admin_system_event_model_test.dart │ │ │ ├── admin_trading_status_model_test.dart │ │ │ ├── fin_feed_api_exchange_model_test.dart │ │ │ ├── fin_feed_api_symbol_model_test.dart │ │ │ ├── level1_quote_update_model_test.dart │ │ │ ├── level2_price_level_update_model_test.dart │ │ │ ├── level3_add_order_model_test.dart │ │ │ ├── level3_clear_book_model_test.dart │ │ │ ├── level3_delete_order_model_test.dart │ │ │ ├── level3_executed_order_model_test.dart │ │ │ ├── level3_modify_order_model_test.dart │ │ │ ├── level3_order_book_model_test.dart │ │ │ ├── metadata_api_test.dart │ │ │ ├── native_iex_api_test.dart │ │ │ ├── ohlcv_api_test.dart │ │ │ ├── ohlcv_exchange_timeseries_item_test.dart │ │ │ ├── ohlcv_timeseries_item_test.dart │ │ │ ├── ohlcv_timeseries_period_test.dart │ │ │ └── trade_trade_model_test.dart │ ├── dart │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── doc │ │ │ ├── AdminAdminMessageModel.md │ │ │ ├── AdminAuctionInformationModel.md │ │ │ ├── AdminOfficialPriceModel.md │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ ├── AdminSecurityEventModel.md │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ ├── AdminSystemEventModel.md │ │ │ ├── AdminTradingStatusModel.md │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ ├── Level3AddOrderModel.md │ │ │ ├── Level3ClearBookModel.md │ │ │ ├── Level3DeleteOrderModel.md │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ ├── Level3ModifyOrderModel.md │ │ │ ├── Level3OrderBookModel.md │ │ │ ├── MetadataApi.md │ │ │ ├── NativeIEXApi.md │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ ├── OhlcvApi.md │ │ │ └── TradeTradeModel.md │ │ ├── git_push.sh │ │ ├── lib │ │ │ ├── api.dart │ │ │ ├── api │ │ │ │ ├── metadata_api.dart │ │ │ │ ├── native_iex_api.dart │ │ │ │ └── ohlcv_api.dart │ │ │ ├── api_client.dart │ │ │ ├── api_exception.dart │ │ │ ├── api_helper.dart │ │ │ ├── auth │ │ │ │ ├── api_key_auth.dart │ │ │ │ ├── authentication.dart │ │ │ │ ├── http_basic_auth.dart │ │ │ │ ├── http_bearer_auth.dart │ │ │ │ └── oauth.dart │ │ │ └── model │ │ │ │ ├── admin_admin_message_model.dart │ │ │ │ ├── admin_auction_information_model.dart │ │ │ │ ├── admin_official_price_model.dart │ │ │ │ ├── admin_operational_halt_status_model.dart │ │ │ │ ├── admin_retail_liquidity_indicator_model.dart │ │ │ │ ├── admin_security_directory_model.dart │ │ │ │ ├── admin_security_event_model.dart │ │ │ │ ├── admin_short_sale_price_test_status_model.dart │ │ │ │ ├── admin_system_event_model.dart │ │ │ │ ├── admin_trading_status_model.dart │ │ │ │ ├── fin_feed_api_exchange_model.dart │ │ │ │ ├── fin_feed_api_symbol_model.dart │ │ │ │ ├── level1_quote_update_model.dart │ │ │ │ ├── level2_price_level_update_model.dart │ │ │ │ ├── level3_add_order_model.dart │ │ │ │ ├── level3_clear_book_model.dart │ │ │ │ ├── level3_delete_order_model.dart │ │ │ │ ├── level3_executed_order_model.dart │ │ │ │ ├── level3_modify_order_model.dart │ │ │ │ ├── level3_order_book_model.dart │ │ │ │ ├── ohlcv_exchange_timeseries_item.dart │ │ │ │ ├── ohlcv_timeseries_item.dart │ │ │ │ ├── ohlcv_timeseries_period.dart │ │ │ │ └── trade_trade_model.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── admin_admin_message_model_test.dart │ │ │ ├── admin_auction_information_model_test.dart │ │ │ ├── admin_official_price_model_test.dart │ │ │ ├── admin_operational_halt_status_model_test.dart │ │ │ ├── admin_retail_liquidity_indicator_model_test.dart │ │ │ ├── admin_security_directory_model_test.dart │ │ │ ├── admin_security_event_model_test.dart │ │ │ ├── admin_short_sale_price_test_status_model_test.dart │ │ │ ├── admin_system_event_model_test.dart │ │ │ ├── admin_trading_status_model_test.dart │ │ │ ├── fin_feed_api_exchange_model_test.dart │ │ │ ├── fin_feed_api_symbol_model_test.dart │ │ │ ├── level1_quote_update_model_test.dart │ │ │ ├── level2_price_level_update_model_test.dart │ │ │ ├── level3_add_order_model_test.dart │ │ │ ├── level3_clear_book_model_test.dart │ │ │ ├── level3_delete_order_model_test.dart │ │ │ ├── level3_executed_order_model_test.dart │ │ │ ├── level3_modify_order_model_test.dart │ │ │ ├── level3_order_book_model_test.dart │ │ │ ├── metadata_api_test.dart │ │ │ ├── native_iex_api_test.dart │ │ │ ├── ohlcv_api_test.dart │ │ │ ├── ohlcv_exchange_timeseries_item_test.dart │ │ │ ├── ohlcv_timeseries_item_test.dart │ │ │ ├── ohlcv_timeseries_period_test.dart │ │ │ └── trade_trade_model_test.dart │ ├── eiffel │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── api_client.ecf │ │ ├── docs │ │ │ ├── ADMIN_ADMIN_MESSAGE_MODEL.md │ │ │ ├── ADMIN_AUCTION_INFORMATION_MODEL.md │ │ │ ├── ADMIN_OFFICIAL_PRICE_MODEL.md │ │ │ ├── ADMIN_OPERATIONAL_HALT_STATUS_MODEL.md │ │ │ ├── ADMIN_RETAIL_LIQUIDITY_INDICATOR_MODEL.md │ │ │ ├── ADMIN_SECURITY_DIRECTORY_MODEL.md │ │ │ ├── ADMIN_SECURITY_EVENT_MODEL.md │ │ │ ├── ADMIN_SHORT_SALE_PRICE_TEST_STATUS_MODEL.md │ │ │ ├── ADMIN_SYSTEM_EVENT_MODEL.md │ │ │ ├── ADMIN_TRADING_STATUS_MODEL.md │ │ │ ├── FIN_FEED_API_EXCHANGE_MODEL.md │ │ │ ├── FIN_FEED_API_SYMBOL_MODEL.md │ │ │ ├── LEVEL1_QUOTE_UPDATE_MODEL.md │ │ │ ├── LEVEL2_PRICE_LEVEL_UPDATE_MODEL.md │ │ │ ├── LEVEL3_ADD_ORDER_MODEL.md │ │ │ ├── LEVEL3_CLEAR_BOOK_MODEL.md │ │ │ ├── LEVEL3_DELETE_ORDER_MODEL.md │ │ │ ├── LEVEL3_EXECUTED_ORDER_MODEL.md │ │ │ ├── LEVEL3_MODIFY_ORDER_MODEL.md │ │ │ ├── LEVEL3_ORDER_BOOK_MODEL.md │ │ │ ├── METADATA_API.md │ │ │ ├── NATIVEIEX_API.md │ │ │ ├── OHLCV_API.md │ │ │ ├── OHLCV_EXCHANGE_TIMESERIES_ITEM.md │ │ │ ├── OHLCV_TIMESERIES_ITEM.md │ │ │ ├── OHLCV_TIMESERIES_PERIOD.md │ │ │ └── TRADE_TRADE_MODEL.md │ │ ├── src │ │ │ ├── api │ │ │ │ ├── metadata_api.e │ │ │ │ ├── native_iex_api.e │ │ │ │ └── ohlcv_api.e │ │ │ ├── api_client.e │ │ │ ├── domain │ │ │ │ ├── admin_admin_message_model.e │ │ │ │ ├── admin_auction_information_model.e │ │ │ │ ├── admin_official_price_model.e │ │ │ │ ├── admin_operational_halt_status_model.e │ │ │ │ ├── admin_retail_liquidity_indicator_model.e │ │ │ │ ├── admin_security_directory_model.e │ │ │ │ ├── admin_security_event_model.e │ │ │ │ ├── admin_short_sale_price_test_status_model.e │ │ │ │ ├── admin_system_event_model.e │ │ │ │ ├── admin_trading_status_model.e │ │ │ │ ├── fin_feed_api_exchange_model.e │ │ │ │ ├── fin_feed_api_symbol_model.e │ │ │ │ ├── level1_quote_update_model.e │ │ │ │ ├── level2_price_level_update_model.e │ │ │ │ ├── level3_add_order_model.e │ │ │ │ ├── level3_clear_book_model.e │ │ │ │ ├── level3_delete_order_model.e │ │ │ │ ├── level3_executed_order_model.e │ │ │ │ ├── level3_modify_order_model.e │ │ │ │ ├── level3_order_book_model.e │ │ │ │ ├── ohlcv_exchange_timeseries_item.e │ │ │ │ ├── ohlcv_timeseries_item.e │ │ │ │ ├── ohlcv_timeseries_period.e │ │ │ │ └── trade_trade_model.e │ │ │ └── framework │ │ │ │ ├── api_client_request.e │ │ │ │ ├── api_client_response.e │ │ │ │ ├── api_error.e │ │ │ │ ├── api_i.e │ │ │ │ ├── auth │ │ │ │ ├── api_key_auth.e │ │ │ │ ├── authentication.e │ │ │ │ ├── http_basic_auth.e │ │ │ │ └── oauth.e │ │ │ │ ├── configuration.e │ │ │ │ └── serialization │ │ │ │ ├── api_deserializer.e │ │ │ │ ├── api_json_deserializer.e │ │ │ │ ├── api_json_serializer.e │ │ │ │ ├── api_serializer.e │ │ │ │ ├── json_basic_reflector_deserializer.e │ │ │ │ └── json_type_utilities_ext.e │ │ └── test │ │ │ ├── api_test.ecf │ │ │ ├── apis │ │ │ ├── metadata_api_test.e │ │ │ ├── nativeiex_api_test.e │ │ │ └── ohlcv_api_test.e │ │ │ └── application.e │ ├── elixir │ │ ├── .formatter.exs │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── config │ │ │ ├── config.exs │ │ │ └── runtime.exs │ │ ├── lib │ │ │ └── fin_feed_api_stock_restapi │ │ │ │ ├── api │ │ │ │ ├── metadata.ex │ │ │ │ ├── native_iex.ex │ │ │ │ └── ohlcv.ex │ │ │ │ ├── connection.ex │ │ │ │ ├── deserializer.ex │ │ │ │ ├── model │ │ │ │ ├── admin_admin_message_model.ex │ │ │ │ ├── admin_auction_information_model.ex │ │ │ │ ├── admin_official_price_model.ex │ │ │ │ ├── admin_operational_halt_status_model.ex │ │ │ │ ├── admin_retail_liquidity_indicator_model.ex │ │ │ │ ├── admin_security_directory_model.ex │ │ │ │ ├── admin_security_event_model.ex │ │ │ │ ├── admin_short_sale_price_test_status_model.ex │ │ │ │ ├── admin_system_event_model.ex │ │ │ │ ├── admin_trading_status_model.ex │ │ │ │ ├── fin_feed_api_exchange_model.ex │ │ │ │ ├── fin_feed_api_symbol_model.ex │ │ │ │ ├── level1_quote_update_model.ex │ │ │ │ ├── level2_price_level_update_model.ex │ │ │ │ ├── level3_add_order_model.ex │ │ │ │ ├── level3_clear_book_model.ex │ │ │ │ ├── level3_delete_order_model.ex │ │ │ │ ├── level3_executed_order_model.ex │ │ │ │ ├── level3_modify_order_model.ex │ │ │ │ ├── level3_order_book_model.ex │ │ │ │ ├── ohlcv_exchange_timeseries_item.ex │ │ │ │ ├── ohlcv_timeseries_item.ex │ │ │ │ ├── ohlcv_timeseries_period.ex │ │ │ │ └── trade_trade_model.ex │ │ │ │ └── request_builder.ex │ │ ├── mix.exs │ │ └── test │ │ │ └── test_helper.exs │ ├── elm │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── elm.json │ │ └── src │ │ │ ├── Api.elm │ │ │ └── Api │ │ │ ├── Data.elm │ │ │ ├── Request │ │ │ ├── Metadata.elm │ │ │ ├── NativeIEX.elm │ │ │ └── Ohlcv.elm │ │ │ └── Time.elm │ ├── erlang-client │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── rebar.config │ │ └── src │ │ │ ├── openapi.app.src │ │ │ ├── openapi_admin_admin_message_model.erl │ │ │ ├── openapi_admin_auction_information_model.erl │ │ │ ├── openapi_admin_official_price_model.erl │ │ │ ├── openapi_admin_operational_halt_status_model.erl │ │ │ ├── openapi_admin_retail_liquidity_indicator_model.erl │ │ │ ├── openapi_admin_security_directory_model.erl │ │ │ ├── openapi_admin_security_event_model.erl │ │ │ ├── openapi_admin_short_sale_price_test_status_model.erl │ │ │ ├── openapi_admin_system_event_model.erl │ │ │ ├── openapi_admin_trading_status_model.erl │ │ │ ├── openapi_fin_feed_api_exchange_model.erl │ │ │ ├── openapi_fin_feed_api_symbol_model.erl │ │ │ ├── openapi_level1_quote_update_model.erl │ │ │ ├── openapi_level2_price_level_update_model.erl │ │ │ ├── openapi_level3_add_order_model.erl │ │ │ ├── openapi_level3_clear_book_model.erl │ │ │ ├── openapi_level3_delete_order_model.erl │ │ │ ├── openapi_level3_executed_order_model.erl │ │ │ ├── openapi_level3_modify_order_model.erl │ │ │ ├── openapi_level3_order_book_model.erl │ │ │ ├── openapi_metadata_api.erl │ │ │ ├── openapi_native_iex_api.erl │ │ │ ├── openapi_ohlcv_api.erl │ │ │ ├── openapi_ohlcv_exchange_timeseries_item.erl │ │ │ ├── openapi_ohlcv_timeseries_item.erl │ │ │ ├── openapi_ohlcv_timeseries_period.erl │ │ │ ├── openapi_trade_trade_model.erl │ │ │ └── openapi_utils.erl │ ├── erlang-proper │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── rebar.config │ │ ├── src │ │ │ ├── model │ │ │ │ ├── openapi_admin_admin_message_model.erl │ │ │ │ ├── openapi_admin_auction_information_model.erl │ │ │ │ ├── openapi_admin_official_price_model.erl │ │ │ │ ├── openapi_admin_operational_halt_status_model.erl │ │ │ │ ├── openapi_admin_retail_liquidity_indicator_model.erl │ │ │ │ ├── openapi_admin_security_directory_model.erl │ │ │ │ ├── openapi_admin_security_event_model.erl │ │ │ │ ├── openapi_admin_short_sale_price_test_status_model.erl │ │ │ │ ├── openapi_admin_system_event_model.erl │ │ │ │ ├── openapi_admin_trading_status_model.erl │ │ │ │ ├── openapi_fin_feed_api_exchange_model.erl │ │ │ │ ├── openapi_fin_feed_api_symbol_model.erl │ │ │ │ ├── openapi_level1_quote_update_model.erl │ │ │ │ ├── openapi_level2_price_level_update_model.erl │ │ │ │ ├── openapi_level3_add_order_model.erl │ │ │ │ ├── openapi_level3_clear_book_model.erl │ │ │ │ ├── openapi_level3_delete_order_model.erl │ │ │ │ ├── openapi_level3_executed_order_model.erl │ │ │ │ ├── openapi_level3_modify_order_model.erl │ │ │ │ ├── openapi_level3_order_book_model.erl │ │ │ │ ├── openapi_ohlcv_exchange_timeseries_item.erl │ │ │ │ ├── openapi_ohlcv_timeseries_item.erl │ │ │ │ ├── openapi_ohlcv_timeseries_period.erl │ │ │ │ └── openapi_trade_trade_model.erl │ │ │ ├── openapi.app.src │ │ │ ├── openapi.hrl │ │ │ ├── openapi_api.erl │ │ │ ├── openapi_gen.erl │ │ │ ├── openapi_statem.erl │ │ │ ├── openapi_statem.hrl │ │ │ └── openapi_utils.erl │ │ └── test │ │ │ └── prop_openapi.erl │ ├── go │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_metadata.go │ │ ├── api_native_iex.go │ │ ├── api_ohlcv.go │ │ ├── client.go │ │ ├── configuration.go │ │ ├── docs │ │ │ ├── AdminAdminMessageModel.md │ │ │ ├── AdminAuctionInformationModel.md │ │ │ ├── AdminOfficialPriceModel.md │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ ├── AdminSecurityEventModel.md │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ ├── AdminSystemEventModel.md │ │ │ ├── AdminTradingStatusModel.md │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ ├── Level3AddOrderModel.md │ │ │ ├── Level3ClearBookModel.md │ │ │ ├── Level3DeleteOrderModel.md │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ ├── Level3ModifyOrderModel.md │ │ │ ├── Level3OrderBookModel.md │ │ │ ├── MetadataAPI.md │ │ │ ├── NativeIEXAPI.md │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ ├── OhlcvAPI.md │ │ │ └── TradeTradeModel.md │ │ ├── git_push.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── model_admin_admin_message_model.go │ │ ├── model_admin_auction_information_model.go │ │ ├── model_admin_official_price_model.go │ │ ├── model_admin_operational_halt_status_model.go │ │ ├── model_admin_retail_liquidity_indicator_model.go │ │ ├── model_admin_security_directory_model.go │ │ ├── model_admin_security_event_model.go │ │ ├── model_admin_short_sale_price_test_status_model.go │ │ ├── model_admin_system_event_model.go │ │ ├── model_admin_trading_status_model.go │ │ ├── model_fin_feed_api_exchange_model.go │ │ ├── model_fin_feed_api_symbol_model.go │ │ ├── model_level1_quote_update_model.go │ │ ├── model_level2_price_level_update_model.go │ │ ├── model_level3_add_order_model.go │ │ ├── model_level3_clear_book_model.go │ │ ├── model_level3_delete_order_model.go │ │ ├── model_level3_executed_order_model.go │ │ ├── model_level3_modify_order_model.go │ │ ├── model_level3_order_book_model.go │ │ ├── model_ohlcv_exchange_timeseries_item.go │ │ ├── model_ohlcv_timeseries_item.go │ │ ├── model_ohlcv_timeseries_period.go │ │ ├── model_trade_trade_model.go │ │ ├── response.go │ │ ├── test │ │ │ ├── api_metadata_test.go │ │ │ ├── api_native_iex_test.go │ │ │ └── api_ohlcv_test.go │ │ └── utils.go │ ├── groovy │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── groovy │ │ │ └── org │ │ │ └── openapitools │ │ │ ├── api │ │ │ ├── ApiUtils.groovy │ │ │ ├── MetadataApi.groovy │ │ │ ├── NativeIexApi.groovy │ │ │ └── OhlcvApi.groovy │ │ │ └── model │ │ │ ├── AdminAdminMessageModel.groovy │ │ │ ├── AdminAuctionInformationModel.groovy │ │ │ ├── AdminOfficialPriceModel.groovy │ │ │ ├── AdminOperationalHaltStatusModel.groovy │ │ │ ├── AdminRetailLiquidityIndicatorModel.groovy │ │ │ ├── AdminSecurityDirectoryModel.groovy │ │ │ ├── AdminSecurityEventModel.groovy │ │ │ ├── AdminShortSalePriceTestStatusModel.groovy │ │ │ ├── AdminSystemEventModel.groovy │ │ │ ├── AdminTradingStatusModel.groovy │ │ │ ├── FinFeedAPIExchangeModel.groovy │ │ │ ├── FinFeedAPISymbolModel.groovy │ │ │ ├── Level1QuoteUpdateModel.groovy │ │ │ ├── Level2PriceLevelUpdateModel.groovy │ │ │ ├── Level3AddOrderModel.groovy │ │ │ ├── Level3ClearBookModel.groovy │ │ │ ├── Level3DeleteOrderModel.groovy │ │ │ ├── Level3ExecutedOrderModel.groovy │ │ │ ├── Level3ModifyOrderModel.groovy │ │ │ ├── Level3OrderBookModel.groovy │ │ │ ├── OHLCVExchangeTimeseriesItem.groovy │ │ │ ├── OHLCVTimeseriesItem.groovy │ │ │ ├── OHLCVTimeseriesPeriod.groovy │ │ │ └── TradeTradeModel.groovy │ ├── haskell-http-client │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── Setup.hs │ │ ├── finfeedapi-stock-rest.cabal │ │ ├── git_push.sh │ │ ├── lib │ │ │ ├── FinFeedAPIStockREST.hs │ │ │ └── FinFeedAPIStockREST │ │ │ │ ├── API.hs │ │ │ │ ├── API │ │ │ │ ├── Metadata.hs │ │ │ │ ├── NativeIEX.hs │ │ │ │ └── Ohlcv.hs │ │ │ │ ├── Client.hs │ │ │ │ ├── Core.hs │ │ │ │ ├── Logging.hs │ │ │ │ ├── LoggingKatip.hs │ │ │ │ ├── LoggingMonadLogger.hs │ │ │ │ ├── MimeTypes.hs │ │ │ │ ├── Model.hs │ │ │ │ └── ModelLens.hs │ │ ├── openapi.yaml │ │ ├── stack.yaml │ │ └── tests │ │ │ ├── ApproxEq.hs │ │ │ ├── Instances.hs │ │ │ ├── PropMime.hs │ │ │ └── Test.hs │ ├── java │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── maven.yml │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── build.gradle │ │ ├── build.sbt │ │ ├── docs │ │ │ ├── AdminAdminMessageModel.md │ │ │ ├── AdminAuctionInformationModel.md │ │ │ ├── AdminOfficialPriceModel.md │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ ├── AdminSecurityEventModel.md │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ ├── AdminSystemEventModel.md │ │ │ ├── AdminTradingStatusModel.md │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ ├── Level3AddOrderModel.md │ │ │ ├── Level3ClearBookModel.md │ │ │ ├── Level3DeleteOrderModel.md │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ ├── Level3ModifyOrderModel.md │ │ │ ├── Level3OrderBookModel.md │ │ │ ├── MetadataApi.md │ │ │ ├── NativeIexApi.md │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ ├── OhlcvApi.md │ │ │ └── TradeTradeModel.md │ │ ├── git_push.sh │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── pom.xml │ │ ├── settings.gradle │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── ApiCallback.java │ │ │ │ ├── ApiClient.java │ │ │ │ ├── ApiException.java │ │ │ │ ├── ApiResponse.java │ │ │ │ ├── Configuration.java │ │ │ │ ├── GzipRequestInterceptor.java │ │ │ │ ├── JSON.java │ │ │ │ ├── Pair.java │ │ │ │ ├── ProgressRequestBody.java │ │ │ │ ├── ProgressResponseBody.java │ │ │ │ ├── ServerConfiguration.java │ │ │ │ ├── ServerVariable.java │ │ │ │ ├── StringUtil.java │ │ │ │ ├── api │ │ │ │ ├── MetadataApi.java │ │ │ │ ├── NativeIexApi.java │ │ │ │ └── OhlcvApi.java │ │ │ │ ├── auth │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ ├── Authentication.java │ │ │ │ ├── HttpBasicAuth.java │ │ │ │ └── HttpBearerAuth.java │ │ │ │ └── model │ │ │ │ ├── AbstractOpenApiSchema.java │ │ │ │ ├── AdminAdminMessageModel.java │ │ │ │ ├── AdminAuctionInformationModel.java │ │ │ │ ├── AdminOfficialPriceModel.java │ │ │ │ ├── AdminOperationalHaltStatusModel.java │ │ │ │ ├── AdminRetailLiquidityIndicatorModel.java │ │ │ │ ├── AdminSecurityDirectoryModel.java │ │ │ │ ├── AdminSecurityEventModel.java │ │ │ │ ├── AdminShortSalePriceTestStatusModel.java │ │ │ │ ├── AdminSystemEventModel.java │ │ │ │ ├── AdminTradingStatusModel.java │ │ │ │ ├── FinFeedAPIExchangeModel.java │ │ │ │ ├── FinFeedAPISymbolModel.java │ │ │ │ ├── Level1QuoteUpdateModel.java │ │ │ │ ├── Level2PriceLevelUpdateModel.java │ │ │ │ ├── Level3AddOrderModel.java │ │ │ │ ├── Level3ClearBookModel.java │ │ │ │ ├── Level3DeleteOrderModel.java │ │ │ │ ├── Level3ExecutedOrderModel.java │ │ │ │ ├── Level3ModifyOrderModel.java │ │ │ │ ├── Level3OrderBookModel.java │ │ │ │ ├── OHLCVExchangeTimeseriesItem.java │ │ │ │ ├── OHLCVTimeseriesItem.java │ │ │ │ ├── OHLCVTimeseriesPeriod.java │ │ │ │ └── TradeTradeModel.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── openapitools │ │ │ └── client │ │ │ ├── api │ │ │ ├── MetadataApiTest.java │ │ │ ├── NativeIexApiTest.java │ │ │ └── OhlcvApiTest.java │ │ │ └── model │ │ │ ├── AdminAdminMessageModelTest.java │ │ │ ├── AdminAuctionInformationModelTest.java │ │ │ ├── AdminOfficialPriceModelTest.java │ │ │ ├── AdminOperationalHaltStatusModelTest.java │ │ │ ├── AdminRetailLiquidityIndicatorModelTest.java │ │ │ ├── AdminSecurityDirectoryModelTest.java │ │ │ ├── AdminSecurityEventModelTest.java │ │ │ ├── AdminShortSalePriceTestStatusModelTest.java │ │ │ ├── AdminSystemEventModelTest.java │ │ │ ├── AdminTradingStatusModelTest.java │ │ │ ├── FinFeedAPIExchangeModelTest.java │ │ │ ├── FinFeedAPISymbolModelTest.java │ │ │ ├── Level1QuoteUpdateModelTest.java │ │ │ ├── Level2PriceLevelUpdateModelTest.java │ │ │ ├── Level3AddOrderModelTest.java │ │ │ ├── Level3ClearBookModelTest.java │ │ │ ├── Level3DeleteOrderModelTest.java │ │ │ ├── Level3ExecutedOrderModelTest.java │ │ │ ├── Level3ModifyOrderModelTest.java │ │ │ ├── Level3OrderBookModelTest.java │ │ │ ├── OHLCVExchangeTimeseriesItemTest.java │ │ │ ├── OHLCVTimeseriesItemTest.java │ │ │ ├── OHLCVTimeseriesPeriodTest.java │ │ │ └── TradeTradeModelTest.java │ ├── javascript-closure-angular │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ └── API │ │ │ └── Client │ │ │ ├── AdminAdminMessageModel.js │ │ │ ├── AdminAuctionInformationModel.js │ │ │ ├── AdminOfficialPriceModel.js │ │ │ ├── AdminOperationalHaltStatusModel.js │ │ │ ├── AdminRetailLiquidityIndicatorModel.js │ │ │ ├── AdminSecurityDirectoryModel.js │ │ │ ├── AdminSecurityEventModel.js │ │ │ ├── AdminShortSalePriceTestStatusModel.js │ │ │ ├── AdminSystemEventModel.js │ │ │ ├── AdminTradingStatusModel.js │ │ │ ├── FinFeedAPIExchangeModel.js │ │ │ ├── FinFeedAPISymbolModel.js │ │ │ ├── Level1QuoteUpdateModel.js │ │ │ ├── Level2PriceLevelUpdateModel.js │ │ │ ├── Level3AddOrderModel.js │ │ │ ├── Level3ClearBookModel.js │ │ │ ├── Level3DeleteOrderModel.js │ │ │ ├── Level3ExecutedOrderModel.js │ │ │ ├── Level3ModifyOrderModel.js │ │ │ ├── Level3OrderBookModel.js │ │ │ ├── MetadataApi.js │ │ │ ├── NativeIEXApi.js │ │ │ ├── OHLCVExchangeTimeseriesItem.js │ │ │ ├── OHLCVTimeseriesItem.js │ │ │ ├── OHLCVTimeseriesPeriod.js │ │ │ ├── OhlcvApi.js │ │ │ └── TradeTradeModel.js │ ├── javascript-flowtyped │ │ ├── .babelrc │ │ ├── .flowconfig │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ ├── api.js │ │ │ ├── configuration.js │ │ │ └── index.js │ ├── javascript │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── docs │ │ │ ├── AdminAdminMessageModel.md │ │ │ ├── AdminAuctionInformationModel.md │ │ │ ├── AdminOfficialPriceModel.md │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ ├── AdminSecurityEventModel.md │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ ├── AdminSystemEventModel.md │ │ │ ├── AdminTradingStatusModel.md │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ ├── Level3AddOrderModel.md │ │ │ ├── Level3ClearBookModel.md │ │ │ ├── Level3DeleteOrderModel.md │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ ├── Level3ModifyOrderModel.md │ │ │ ├── Level3OrderBookModel.md │ │ │ ├── MetadataApi.md │ │ │ ├── NativeIEXApi.md │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ ├── OhlcvApi.md │ │ │ └── TradeTradeModel.md │ │ ├── git_push.sh │ │ ├── mocha.opts │ │ ├── package.json │ │ ├── src │ │ │ ├── ApiClient.js │ │ │ ├── api │ │ │ │ ├── MetadataApi.js │ │ │ │ ├── NativeIEXApi.js │ │ │ │ └── OhlcvApi.js │ │ │ ├── index.js │ │ │ └── model │ │ │ │ ├── AdminAdminMessageModel.js │ │ │ │ ├── AdminAuctionInformationModel.js │ │ │ │ ├── AdminOfficialPriceModel.js │ │ │ │ ├── AdminOperationalHaltStatusModel.js │ │ │ │ ├── AdminRetailLiquidityIndicatorModel.js │ │ │ │ ├── AdminSecurityDirectoryModel.js │ │ │ │ ├── AdminSecurityEventModel.js │ │ │ │ ├── AdminShortSalePriceTestStatusModel.js │ │ │ │ ├── AdminSystemEventModel.js │ │ │ │ ├── AdminTradingStatusModel.js │ │ │ │ ├── FinFeedAPIExchangeModel.js │ │ │ │ ├── FinFeedAPISymbolModel.js │ │ │ │ ├── Level1QuoteUpdateModel.js │ │ │ │ ├── Level2PriceLevelUpdateModel.js │ │ │ │ ├── Level3AddOrderModel.js │ │ │ │ ├── Level3ClearBookModel.js │ │ │ │ ├── Level3DeleteOrderModel.js │ │ │ │ ├── Level3ExecutedOrderModel.js │ │ │ │ ├── Level3ModifyOrderModel.js │ │ │ │ ├── Level3OrderBookModel.js │ │ │ │ ├── OHLCVExchangeTimeseriesItem.js │ │ │ │ ├── OHLCVTimeseriesItem.js │ │ │ │ ├── OHLCVTimeseriesPeriod.js │ │ │ │ └── TradeTradeModel.js │ │ └── test │ │ │ ├── api │ │ │ ├── MetadataApi.spec.js │ │ │ ├── NativeIEXApi.spec.js │ │ │ └── OhlcvApi.spec.js │ │ │ └── model │ │ │ ├── AdminAdminMessageModel.spec.js │ │ │ ├── AdminAuctionInformationModel.spec.js │ │ │ ├── AdminOfficialPriceModel.spec.js │ │ │ ├── AdminOperationalHaltStatusModel.spec.js │ │ │ ├── AdminRetailLiquidityIndicatorModel.spec.js │ │ │ ├── AdminSecurityDirectoryModel.spec.js │ │ │ ├── AdminSecurityEventModel.spec.js │ │ │ ├── AdminShortSalePriceTestStatusModel.spec.js │ │ │ ├── AdminSystemEventModel.spec.js │ │ │ ├── AdminTradingStatusModel.spec.js │ │ │ ├── FinFeedAPIExchangeModel.spec.js │ │ │ ├── FinFeedAPISymbolModel.spec.js │ │ │ ├── Level1QuoteUpdateModel.spec.js │ │ │ ├── Level2PriceLevelUpdateModel.spec.js │ │ │ ├── Level3AddOrderModel.spec.js │ │ │ ├── Level3ClearBookModel.spec.js │ │ │ ├── Level3DeleteOrderModel.spec.js │ │ │ ├── Level3ExecutedOrderModel.spec.js │ │ │ ├── Level3ModifyOrderModel.spec.js │ │ │ ├── Level3OrderBookModel.spec.js │ │ │ ├── OHLCVExchangeTimeseriesItem.spec.js │ │ │ ├── OHLCVTimeseriesItem.spec.js │ │ │ ├── OHLCVTimeseriesPeriod.spec.js │ │ │ └── TradeTradeModel.spec.js │ ├── kotlin │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── build.gradle │ │ ├── docs │ │ │ ├── AdminAdminMessageModel.md │ │ │ ├── AdminAuctionInformationModel.md │ │ │ ├── AdminOfficialPriceModel.md │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ ├── AdminSecurityEventModel.md │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ ├── AdminSystemEventModel.md │ │ │ ├── AdminTradingStatusModel.md │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ ├── Level3AddOrderModel.md │ │ │ ├── Level3ClearBookModel.md │ │ │ ├── Level3DeleteOrderModel.md │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ ├── Level3ModifyOrderModel.md │ │ │ ├── Level3OrderBookModel.md │ │ │ ├── MetadataApi.md │ │ │ ├── NativeIEXApi.md │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ ├── OhlcvApi.md │ │ │ └── TradeTradeModel.md │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ ├── main │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── openapitools │ │ │ │ └── client │ │ │ │ ├── apis │ │ │ │ ├── MetadataApi.kt │ │ │ │ ├── NativeIEXApi.kt │ │ │ │ └── OhlcvApi.kt │ │ │ │ ├── infrastructure │ │ │ │ ├── ApiAbstractions.kt │ │ │ │ ├── ApiClient.kt │ │ │ │ ├── ApiResponse.kt │ │ │ │ ├── BigDecimalAdapter.kt │ │ │ │ ├── BigIntegerAdapter.kt │ │ │ │ ├── ByteArrayAdapter.kt │ │ │ │ ├── Errors.kt │ │ │ │ ├── LocalDateAdapter.kt │ │ │ │ ├── LocalDateTimeAdapter.kt │ │ │ │ ├── OffsetDateTimeAdapter.kt │ │ │ │ ├── PartConfig.kt │ │ │ │ ├── RequestConfig.kt │ │ │ │ ├── RequestMethod.kt │ │ │ │ ├── ResponseExtensions.kt │ │ │ │ ├── Serializer.kt │ │ │ │ ├── URIAdapter.kt │ │ │ │ └── UUIDAdapter.kt │ │ │ │ └── models │ │ │ │ ├── AdminAdminMessageModel.kt │ │ │ │ ├── AdminAuctionInformationModel.kt │ │ │ │ ├── AdminOfficialPriceModel.kt │ │ │ │ ├── AdminOperationalHaltStatusModel.kt │ │ │ │ ├── AdminRetailLiquidityIndicatorModel.kt │ │ │ │ ├── AdminSecurityDirectoryModel.kt │ │ │ │ ├── AdminSecurityEventModel.kt │ │ │ │ ├── AdminShortSalePriceTestStatusModel.kt │ │ │ │ ├── AdminSystemEventModel.kt │ │ │ │ ├── AdminTradingStatusModel.kt │ │ │ │ ├── FinFeedAPIExchangeModel.kt │ │ │ │ ├── FinFeedAPISymbolModel.kt │ │ │ │ ├── Level1QuoteUpdateModel.kt │ │ │ │ ├── Level2PriceLevelUpdateModel.kt │ │ │ │ ├── Level3AddOrderModel.kt │ │ │ │ ├── Level3ClearBookModel.kt │ │ │ │ ├── Level3DeleteOrderModel.kt │ │ │ │ ├── Level3ExecutedOrderModel.kt │ │ │ │ ├── Level3ModifyOrderModel.kt │ │ │ │ ├── Level3OrderBookModel.kt │ │ │ │ ├── OHLCVExchangeTimeseriesItem.kt │ │ │ │ ├── OHLCVTimeseriesItem.kt │ │ │ │ ├── OHLCVTimeseriesPeriod.kt │ │ │ │ └── TradeTradeModel.kt │ │ │ └── test │ │ │ └── kotlin │ │ │ └── org │ │ │ └── openapitools │ │ │ └── client │ │ │ ├── apis │ │ │ ├── MetadataApiTest.kt │ │ │ ├── NativeIEXApiTest.kt │ │ │ └── OhlcvApiTest.kt │ │ │ └── models │ │ │ ├── AdminAdminMessageModelTest.kt │ │ │ ├── AdminAuctionInformationModelTest.kt │ │ │ ├── AdminOfficialPriceModelTest.kt │ │ │ ├── AdminOperationalHaltStatusModelTest.kt │ │ │ ├── AdminRetailLiquidityIndicatorModelTest.kt │ │ │ ├── AdminSecurityDirectoryModelTest.kt │ │ │ ├── AdminSecurityEventModelTest.kt │ │ │ ├── AdminShortSalePriceTestStatusModelTest.kt │ │ │ ├── AdminSystemEventModelTest.kt │ │ │ ├── AdminTradingStatusModelTest.kt │ │ │ ├── FinFeedAPIExchangeModelTest.kt │ │ │ ├── FinFeedAPISymbolModelTest.kt │ │ │ ├── Level1QuoteUpdateModelTest.kt │ │ │ ├── Level2PriceLevelUpdateModelTest.kt │ │ │ ├── Level3AddOrderModelTest.kt │ │ │ ├── Level3ClearBookModelTest.kt │ │ │ ├── Level3DeleteOrderModelTest.kt │ │ │ ├── Level3ExecutedOrderModelTest.kt │ │ │ ├── Level3ModifyOrderModelTest.kt │ │ │ ├── Level3OrderBookModelTest.kt │ │ │ ├── OHLCVExchangeTimeseriesItemTest.kt │ │ │ ├── OHLCVTimeseriesItemTest.kt │ │ │ ├── OHLCVTimeseriesPeriodTest.kt │ │ │ └── TradeTradeModelTest.kt │ ├── lua │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── git_push.sh │ │ ├── openapiclient-1.0.0-1.rockspec │ │ ├── openapiclient │ │ │ ├── api │ │ │ │ ├── metadata_api.lua │ │ │ │ ├── native_iex_api.lua │ │ │ │ └── ohlcv_api.lua │ │ │ └── model │ │ │ │ ├── admin_admin_message_model.lua │ │ │ │ ├── admin_auction_information_model.lua │ │ │ │ ├── admin_official_price_model.lua │ │ │ │ ├── admin_operational_halt_status_model.lua │ │ │ │ ├── admin_retail_liquidity_indicator_model.lua │ │ │ │ ├── admin_security_directory_model.lua │ │ │ │ ├── admin_security_event_model.lua │ │ │ │ ├── admin_short_sale_price_test_status_model.lua │ │ │ │ ├── admin_system_event_model.lua │ │ │ │ ├── admin_trading_status_model.lua │ │ │ │ ├── fin_feed_api_exchange_model.lua │ │ │ │ ├── fin_feed_api_symbol_model.lua │ │ │ │ ├── level1_quote_update_model.lua │ │ │ │ ├── level2_price_level_update_model.lua │ │ │ │ ├── level3_add_order_model.lua │ │ │ │ ├── level3_clear_book_model.lua │ │ │ │ ├── level3_delete_order_model.lua │ │ │ │ ├── level3_executed_order_model.lua │ │ │ │ ├── level3_modify_order_model.lua │ │ │ │ ├── level3_order_book_model.lua │ │ │ │ ├── ohlcv_exchange_timeseries_item.lua │ │ │ │ ├── ohlcv_timeseries_item.lua │ │ │ │ ├── ohlcv_timeseries_period.lua │ │ │ │ └── trade_trade_model.lua │ │ └── spec │ │ │ ├── admin_admin_message_model_spec.lua │ │ │ ├── admin_auction_information_model_spec.lua │ │ │ ├── admin_official_price_model_spec.lua │ │ │ ├── admin_operational_halt_status_model_spec.lua │ │ │ ├── admin_retail_liquidity_indicator_model_spec.lua │ │ │ ├── admin_security_directory_model_spec.lua │ │ │ ├── admin_security_event_model_spec.lua │ │ │ ├── admin_short_sale_price_test_status_model_spec.lua │ │ │ ├── admin_system_event_model_spec.lua │ │ │ ├── admin_trading_status_model_spec.lua │ │ │ ├── fin_feed_api_exchange_model_spec.lua │ │ │ ├── fin_feed_api_symbol_model_spec.lua │ │ │ ├── level1_quote_update_model_spec.lua │ │ │ ├── level2_price_level_update_model_spec.lua │ │ │ ├── level3_add_order_model_spec.lua │ │ │ ├── level3_clear_book_model_spec.lua │ │ │ ├── level3_delete_order_model_spec.lua │ │ │ ├── level3_executed_order_model_spec.lua │ │ │ ├── level3_modify_order_model_spec.lua │ │ │ ├── level3_order_book_model_spec.lua │ │ │ ├── metadata_api_spec.lua │ │ │ ├── native_iex_api_spec.lua │ │ │ ├── ohlcv_api_spec.lua │ │ │ ├── ohlcv_exchange_timeseries_item_spec.lua │ │ │ ├── ohlcv_timeseries_item_spec.lua │ │ │ ├── ohlcv_timeseries_period_spec.lua │ │ │ └── trade_trade_model_spec.lua │ ├── perl │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── bin │ │ │ └── autodoc │ │ ├── cpanfile │ │ ├── docs │ │ │ ├── AdminAdminMessageModel.md │ │ │ ├── AdminAuctionInformationModel.md │ │ │ ├── AdminOfficialPriceModel.md │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ ├── AdminSecurityEventModel.md │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ ├── AdminSystemEventModel.md │ │ │ ├── AdminTradingStatusModel.md │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ ├── Level3AddOrderModel.md │ │ │ ├── Level3ClearBookModel.md │ │ │ ├── Level3DeleteOrderModel.md │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ ├── Level3ModifyOrderModel.md │ │ │ ├── Level3OrderBookModel.md │ │ │ ├── MetadataApi.md │ │ │ ├── NativeIEXApi.md │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ ├── OhlcvApi.md │ │ │ └── TradeTradeModel.md │ │ ├── git_push.sh │ │ ├── lib │ │ │ └── WWW │ │ │ │ └── OpenAPIClient │ │ │ │ ├── ApiClient.pm │ │ │ │ ├── ApiFactory.pm │ │ │ │ ├── Configuration.pm │ │ │ │ ├── MetadataApi.pm │ │ │ │ ├── NativeIEXApi.pm │ │ │ │ ├── Object │ │ │ │ ├── AdminAdminMessageModel.pm │ │ │ │ ├── AdminAuctionInformationModel.pm │ │ │ │ ├── AdminOfficialPriceModel.pm │ │ │ │ ├── AdminOperationalHaltStatusModel.pm │ │ │ │ ├── AdminRetailLiquidityIndicatorModel.pm │ │ │ │ ├── AdminSecurityDirectoryModel.pm │ │ │ │ ├── AdminSecurityEventModel.pm │ │ │ │ ├── AdminShortSalePriceTestStatusModel.pm │ │ │ │ ├── AdminSystemEventModel.pm │ │ │ │ ├── AdminTradingStatusModel.pm │ │ │ │ ├── FinFeedAPIExchangeModel.pm │ │ │ │ ├── FinFeedAPISymbolModel.pm │ │ │ │ ├── Level1QuoteUpdateModel.pm │ │ │ │ ├── Level2PriceLevelUpdateModel.pm │ │ │ │ ├── Level3AddOrderModel.pm │ │ │ │ ├── Level3ClearBookModel.pm │ │ │ │ ├── Level3DeleteOrderModel.pm │ │ │ │ ├── Level3ExecutedOrderModel.pm │ │ │ │ ├── Level3ModifyOrderModel.pm │ │ │ │ ├── Level3OrderBookModel.pm │ │ │ │ ├── OHLCVExchangeTimeseriesItem.pm │ │ │ │ ├── OHLCVTimeseriesItem.pm │ │ │ │ ├── OHLCVTimeseriesPeriod.pm │ │ │ │ └── TradeTradeModel.pm │ │ │ │ ├── OhlcvApi.pm │ │ │ │ ├── Role.pm │ │ │ │ └── Role │ │ │ │ └── AutoDoc.pm │ │ └── t │ │ │ ├── AdminAdminMessageModelTest.t │ │ │ ├── AdminAuctionInformationModelTest.t │ │ │ ├── AdminOfficialPriceModelTest.t │ │ │ ├── AdminOperationalHaltStatusModelTest.t │ │ │ ├── AdminRetailLiquidityIndicatorModelTest.t │ │ │ ├── AdminSecurityDirectoryModelTest.t │ │ │ ├── AdminSecurityEventModelTest.t │ │ │ ├── AdminShortSalePriceTestStatusModelTest.t │ │ │ ├── AdminSystemEventModelTest.t │ │ │ ├── AdminTradingStatusModelTest.t │ │ │ ├── FinFeedAPIExchangeModelTest.t │ │ │ ├── FinFeedAPISymbolModelTest.t │ │ │ ├── Level1QuoteUpdateModelTest.t │ │ │ ├── Level2PriceLevelUpdateModelTest.t │ │ │ ├── Level3AddOrderModelTest.t │ │ │ ├── Level3ClearBookModelTest.t │ │ │ ├── Level3DeleteOrderModelTest.t │ │ │ ├── Level3ExecutedOrderModelTest.t │ │ │ ├── Level3ModifyOrderModelTest.t │ │ │ ├── Level3OrderBookModelTest.t │ │ │ ├── MetadataApiTest.t │ │ │ ├── NativeIEXApiTest.t │ │ │ ├── OHLCVExchangeTimeseriesItemTest.t │ │ │ ├── OHLCVTimeseriesItemTest.t │ │ │ ├── OHLCVTimeseriesPeriodTest.t │ │ │ ├── OhlcvApiTest.t │ │ │ └── TradeTradeModelTest.t │ ├── php │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .php-cs-fixer.dist.php │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ ├── Api │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── NativeIEXApi.md │ │ │ │ └── OhlcvApi.md │ │ │ └── Model │ │ │ │ ├── AdminAdminMessageModel.md │ │ │ │ ├── AdminAuctionInformationModel.md │ │ │ │ ├── AdminOfficialPriceModel.md │ │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ │ ├── AdminSecurityEventModel.md │ │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ │ ├── AdminSystemEventModel.md │ │ │ │ ├── AdminTradingStatusModel.md │ │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ │ ├── Level3AddOrderModel.md │ │ │ │ ├── Level3ClearBookModel.md │ │ │ │ ├── Level3DeleteOrderModel.md │ │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ │ ├── Level3ModifyOrderModel.md │ │ │ │ ├── Level3OrderBookModel.md │ │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ │ └── TradeTradeModel.md │ │ ├── git_push.sh │ │ ├── lib │ │ │ ├── Api │ │ │ │ ├── MetadataApi.php │ │ │ │ ├── NativeIEXApi.php │ │ │ │ └── OhlcvApi.php │ │ │ ├── ApiException.php │ │ │ ├── Configuration.php │ │ │ ├── FormDataProcessor.php │ │ │ ├── HeaderSelector.php │ │ │ ├── Model │ │ │ │ ├── AdminAdminMessageModel.php │ │ │ │ ├── AdminAuctionInformationModel.php │ │ │ │ ├── AdminOfficialPriceModel.php │ │ │ │ ├── AdminOperationalHaltStatusModel.php │ │ │ │ ├── AdminRetailLiquidityIndicatorModel.php │ │ │ │ ├── AdminSecurityDirectoryModel.php │ │ │ │ ├── AdminSecurityEventModel.php │ │ │ │ ├── AdminShortSalePriceTestStatusModel.php │ │ │ │ ├── AdminSystemEventModel.php │ │ │ │ ├── AdminTradingStatusModel.php │ │ │ │ ├── FinFeedAPIExchangeModel.php │ │ │ │ ├── FinFeedAPISymbolModel.php │ │ │ │ ├── Level1QuoteUpdateModel.php │ │ │ │ ├── Level2PriceLevelUpdateModel.php │ │ │ │ ├── Level3AddOrderModel.php │ │ │ │ ├── Level3ClearBookModel.php │ │ │ │ ├── Level3DeleteOrderModel.php │ │ │ │ ├── Level3ExecutedOrderModel.php │ │ │ │ ├── Level3ModifyOrderModel.php │ │ │ │ ├── Level3OrderBookModel.php │ │ │ │ ├── ModelInterface.php │ │ │ │ ├── OHLCVExchangeTimeseriesItem.php │ │ │ │ ├── OHLCVTimeseriesItem.php │ │ │ │ ├── OHLCVTimeseriesPeriod.php │ │ │ │ └── TradeTradeModel.php │ │ │ └── ObjectSerializer.php │ │ ├── phpunit.xml.dist │ │ └── test │ │ │ ├── Api │ │ │ ├── MetadataApiTest.php │ │ │ ├── NativeIEXApiTest.php │ │ │ └── OhlcvApiTest.php │ │ │ └── Model │ │ │ ├── AdminAdminMessageModelTest.php │ │ │ ├── AdminAuctionInformationModelTest.php │ │ │ ├── AdminOfficialPriceModelTest.php │ │ │ ├── AdminOperationalHaltStatusModelTest.php │ │ │ ├── AdminRetailLiquidityIndicatorModelTest.php │ │ │ ├── AdminSecurityDirectoryModelTest.php │ │ │ ├── AdminSecurityEventModelTest.php │ │ │ ├── AdminShortSalePriceTestStatusModelTest.php │ │ │ ├── AdminSystemEventModelTest.php │ │ │ ├── AdminTradingStatusModelTest.php │ │ │ ├── FinFeedAPIExchangeModelTest.php │ │ │ ├── FinFeedAPISymbolModelTest.php │ │ │ ├── Level1QuoteUpdateModelTest.php │ │ │ ├── Level2PriceLevelUpdateModelTest.php │ │ │ ├── Level3AddOrderModelTest.php │ │ │ ├── Level3ClearBookModelTest.php │ │ │ ├── Level3DeleteOrderModelTest.php │ │ │ ├── Level3ExecutedOrderModelTest.php │ │ │ ├── Level3ModifyOrderModelTest.php │ │ │ ├── Level3OrderBookModelTest.php │ │ │ ├── OHLCVExchangeTimeseriesItemTest.php │ │ │ ├── OHLCVTimeseriesItemTest.php │ │ │ ├── OHLCVTimeseriesPeriodTest.php │ │ │ └── TradeTradeModelTest.php │ ├── powershell │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── Build.ps1 │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── docs │ │ │ ├── AdminAdminMessageModel.md │ │ │ ├── AdminAuctionInformationModel.md │ │ │ ├── AdminOfficialPriceModel.md │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ ├── AdminSecurityEventModel.md │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ ├── AdminSystemEventModel.md │ │ │ ├── AdminTradingStatusModel.md │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ ├── Level3AddOrderModel.md │ │ │ ├── Level3ClearBookModel.md │ │ │ ├── Level3DeleteOrderModel.md │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ ├── Level3ModifyOrderModel.md │ │ │ ├── Level3OrderBookModel.md │ │ │ ├── MetadataApi.md │ │ │ ├── NativeIEXApi.md │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ ├── OhlcvApi.md │ │ │ └── TradeTradeModel.md │ │ ├── src │ │ │ └── PSOpenAPITools │ │ │ │ ├── Api │ │ │ │ ├── MetadataApi.ps1 │ │ │ │ ├── NativeIEXApi.ps1 │ │ │ │ └── OhlcvApi.ps1 │ │ │ │ ├── Client │ │ │ │ └── Configuration.ps1 │ │ │ │ ├── Model │ │ │ │ ├── AdminAdminMessageModel.ps1 │ │ │ │ ├── AdminAuctionInformationModel.ps1 │ │ │ │ ├── AdminOfficialPriceModel.ps1 │ │ │ │ ├── AdminOperationalHaltStatusModel.ps1 │ │ │ │ ├── AdminRetailLiquidityIndicatorModel.ps1 │ │ │ │ ├── AdminSecurityDirectoryModel.ps1 │ │ │ │ ├── AdminSecurityEventModel.ps1 │ │ │ │ ├── AdminShortSalePriceTestStatusModel.ps1 │ │ │ │ ├── AdminSystemEventModel.ps1 │ │ │ │ ├── AdminTradingStatusModel.ps1 │ │ │ │ ├── FinFeedAPIExchangeModel.ps1 │ │ │ │ ├── FinFeedAPISymbolModel.ps1 │ │ │ │ ├── Level1QuoteUpdateModel.ps1 │ │ │ │ ├── Level2PriceLevelUpdateModel.ps1 │ │ │ │ ├── Level3AddOrderModel.ps1 │ │ │ │ ├── Level3ClearBookModel.ps1 │ │ │ │ ├── Level3DeleteOrderModel.ps1 │ │ │ │ ├── Level3ExecutedOrderModel.ps1 │ │ │ │ ├── Level3ModifyOrderModel.ps1 │ │ │ │ ├── Level3OrderBookModel.ps1 │ │ │ │ ├── OHLCVExchangeTimeseriesItem.ps1 │ │ │ │ ├── OHLCVTimeseriesItem.ps1 │ │ │ │ ├── OHLCVTimeseriesPeriod.ps1 │ │ │ │ └── TradeTradeModel.ps1 │ │ │ │ ├── PSOpenAPITools.psm1 │ │ │ │ ├── Private │ │ │ │ ├── ApiClient.ps1 │ │ │ │ ├── Get-CommonParameters.ps1 │ │ │ │ ├── HttpSignatureAuth.ps1 │ │ │ │ ├── Out-DebugParameter.ps1 │ │ │ │ └── RSAEncryptionProvider.cs │ │ │ │ └── en-US │ │ │ │ └── about_PSOpenAPITools.help.txt │ │ └── tests │ │ │ ├── Api │ │ │ ├── MetadataApi.Tests.ps1 │ │ │ ├── NativeIEXApi.Tests.ps1 │ │ │ └── OhlcvApi.Tests.ps1 │ │ │ └── Model │ │ │ ├── AdminAdminMessageModel.Tests.ps1 │ │ │ ├── AdminAuctionInformationModel.Tests.ps1 │ │ │ ├── AdminOfficialPriceModel.Tests.ps1 │ │ │ ├── AdminOperationalHaltStatusModel.Tests.ps1 │ │ │ ├── AdminRetailLiquidityIndicatorModel.Tests.ps1 │ │ │ ├── AdminSecurityDirectoryModel.Tests.ps1 │ │ │ ├── AdminSecurityEventModel.Tests.ps1 │ │ │ ├── AdminShortSalePriceTestStatusModel.Tests.ps1 │ │ │ ├── AdminSystemEventModel.Tests.ps1 │ │ │ ├── AdminTradingStatusModel.Tests.ps1 │ │ │ ├── FinFeedAPIExchangeModel.Tests.ps1 │ │ │ ├── FinFeedAPISymbolModel.Tests.ps1 │ │ │ ├── Level1QuoteUpdateModel.Tests.ps1 │ │ │ ├── Level2PriceLevelUpdateModel.Tests.ps1 │ │ │ ├── Level3AddOrderModel.Tests.ps1 │ │ │ ├── Level3ClearBookModel.Tests.ps1 │ │ │ ├── Level3DeleteOrderModel.Tests.ps1 │ │ │ ├── Level3ExecutedOrderModel.Tests.ps1 │ │ │ ├── Level3ModifyOrderModel.Tests.ps1 │ │ │ ├── Level3OrderBookModel.Tests.ps1 │ │ │ ├── OHLCVExchangeTimeseriesItem.Tests.ps1 │ │ │ ├── OHLCVTimeseriesItem.Tests.ps1 │ │ │ ├── OHLCVTimeseriesPeriod.Tests.ps1 │ │ │ └── TradeTradeModel.Tests.ps1 │ ├── python │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── api_bricks_stock_api_rest │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── metadata_api.py │ │ │ │ ├── native_iex_api.py │ │ │ │ └── ohlcv_api.py │ │ │ ├── api_client.py │ │ │ ├── api_response.py │ │ │ ├── configuration.py │ │ │ ├── docs │ │ │ │ ├── AdminAdminMessageModel.md │ │ │ │ ├── AdminAuctionInformationModel.md │ │ │ │ ├── AdminOfficialPriceModel.md │ │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ │ ├── AdminSecurityEventModel.md │ │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ │ ├── AdminSystemEventModel.md │ │ │ │ ├── AdminTradingStatusModel.md │ │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ │ ├── Level3AddOrderModel.md │ │ │ │ ├── Level3ClearBookModel.md │ │ │ │ ├── Level3DeleteOrderModel.md │ │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ │ ├── Level3ModifyOrderModel.md │ │ │ │ ├── Level3OrderBookModel.md │ │ │ │ ├── MetadataApi.md │ │ │ │ ├── NativeIEXApi.md │ │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ │ ├── OhlcvApi.md │ │ │ │ └── TradeTradeModel.md │ │ │ ├── exceptions.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── admin_admin_message_model.py │ │ │ │ ├── admin_auction_information_model.py │ │ │ │ ├── admin_official_price_model.py │ │ │ │ ├── admin_operational_halt_status_model.py │ │ │ │ ├── admin_retail_liquidity_indicator_model.py │ │ │ │ ├── admin_security_directory_model.py │ │ │ │ ├── admin_security_event_model.py │ │ │ │ ├── admin_short_sale_price_test_status_model.py │ │ │ │ ├── admin_system_event_model.py │ │ │ │ ├── admin_trading_status_model.py │ │ │ │ ├── fin_feed_api_exchange_model.py │ │ │ │ ├── fin_feed_api_symbol_model.py │ │ │ │ ├── level1_quote_update_model.py │ │ │ │ ├── level2_price_level_update_model.py │ │ │ │ ├── level3_add_order_model.py │ │ │ │ ├── level3_clear_book_model.py │ │ │ │ ├── level3_delete_order_model.py │ │ │ │ ├── level3_executed_order_model.py │ │ │ │ ├── level3_modify_order_model.py │ │ │ │ ├── level3_order_book_model.py │ │ │ │ ├── ohlcv_exchange_timeseries_item.py │ │ │ │ ├── ohlcv_timeseries_item.py │ │ │ │ ├── ohlcv_timeseries_period.py │ │ │ │ └── trade_trade_model.py │ │ │ ├── rest.py │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ ├── test_admin_admin_message_model.py │ │ │ │ ├── test_admin_auction_information_model.py │ │ │ │ ├── test_admin_official_price_model.py │ │ │ │ ├── test_admin_operational_halt_status_model.py │ │ │ │ ├── test_admin_retail_liquidity_indicator_model.py │ │ │ │ ├── test_admin_security_directory_model.py │ │ │ │ ├── test_admin_security_event_model.py │ │ │ │ ├── test_admin_short_sale_price_test_status_model.py │ │ │ │ ├── test_admin_system_event_model.py │ │ │ │ ├── test_admin_trading_status_model.py │ │ │ │ ├── test_fin_feed_api_exchange_model.py │ │ │ │ ├── test_fin_feed_api_symbol_model.py │ │ │ │ ├── test_level1_quote_update_model.py │ │ │ │ ├── test_level2_price_level_update_model.py │ │ │ │ ├── test_level3_add_order_model.py │ │ │ │ ├── test_level3_clear_book_model.py │ │ │ │ ├── test_level3_delete_order_model.py │ │ │ │ ├── test_level3_executed_order_model.py │ │ │ │ ├── test_level3_modify_order_model.py │ │ │ │ ├── test_level3_order_book_model.py │ │ │ │ ├── test_metadata_api.py │ │ │ │ ├── test_native_iex_api.py │ │ │ │ ├── test_ohlcv_api.py │ │ │ │ ├── test_ohlcv_exchange_timeseries_item.py │ │ │ │ ├── test_ohlcv_timeseries_item.py │ │ │ │ ├── test_ohlcv_timeseries_period.py │ │ │ │ └── test_trade_trade_model.py │ │ └── api_bricks_stock_api_rest_README.md │ ├── r │ │ ├── .Rbuildignore │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── r-client.yaml │ │ ├── .gitignore │ │ ├── .lintr │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── DESCRIPTION │ │ ├── NAMESPACE │ │ ├── R │ │ │ ├── admin_admin_message_model.R │ │ │ ├── admin_auction_information_model.R │ │ │ ├── admin_official_price_model.R │ │ │ ├── admin_operational_halt_status_model.R │ │ │ ├── admin_retail_liquidity_indicator_model.R │ │ │ ├── admin_security_directory_model.R │ │ │ ├── admin_security_event_model.R │ │ │ ├── admin_short_sale_price_test_status_model.R │ │ │ ├── admin_system_event_model.R │ │ │ ├── admin_trading_status_model.R │ │ │ ├── api_client.R │ │ │ ├── api_response.R │ │ │ ├── fin_feed_api_exchange_model.R │ │ │ ├── fin_feed_api_symbol_model.R │ │ │ ├── level1_quote_update_model.R │ │ │ ├── level2_price_level_update_model.R │ │ │ ├── level3_add_order_model.R │ │ │ ├── level3_clear_book_model.R │ │ │ ├── level3_delete_order_model.R │ │ │ ├── level3_executed_order_model.R │ │ │ ├── level3_modify_order_model.R │ │ │ ├── level3_order_book_model.R │ │ │ ├── metadata_api.R │ │ │ ├── native_iex_api.R │ │ │ ├── ohlcv_api.R │ │ │ ├── ohlcv_exchange_timeseries_item.R │ │ │ ├── ohlcv_timeseries_item.R │ │ │ ├── ohlcv_timeseries_period.R │ │ │ └── trade_trade_model.R │ │ ├── README.md │ │ ├── docs │ │ │ ├── AdminAdminMessageModel.md │ │ │ ├── AdminAuctionInformationModel.md │ │ │ ├── AdminOfficialPriceModel.md │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ ├── AdminSecurityEventModel.md │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ ├── AdminSystemEventModel.md │ │ │ ├── AdminTradingStatusModel.md │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ ├── Level3AddOrderModel.md │ │ │ ├── Level3ClearBookModel.md │ │ │ ├── Level3DeleteOrderModel.md │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ ├── Level3ModifyOrderModel.md │ │ │ ├── Level3OrderBookModel.md │ │ │ ├── MetadataApi.md │ │ │ ├── NativeIEXApi.md │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ ├── OhlcvApi.md │ │ │ └── TradeTradeModel.md │ │ ├── git_push.sh │ │ └── tests │ │ │ ├── testthat.R │ │ │ └── testthat │ │ │ ├── test_admin_admin_message_model.R │ │ │ ├── test_admin_auction_information_model.R │ │ │ ├── test_admin_official_price_model.R │ │ │ ├── test_admin_operational_halt_status_model.R │ │ │ ├── test_admin_retail_liquidity_indicator_model.R │ │ │ ├── test_admin_security_directory_model.R │ │ │ ├── test_admin_security_event_model.R │ │ │ ├── test_admin_short_sale_price_test_status_model.R │ │ │ ├── test_admin_system_event_model.R │ │ │ ├── test_admin_trading_status_model.R │ │ │ ├── test_fin_feed_api_exchange_model.R │ │ │ ├── test_fin_feed_api_symbol_model.R │ │ │ ├── test_level1_quote_update_model.R │ │ │ ├── test_level2_price_level_update_model.R │ │ │ ├── test_level3_add_order_model.R │ │ │ ├── test_level3_clear_book_model.R │ │ │ ├── test_level3_delete_order_model.R │ │ │ ├── test_level3_executed_order_model.R │ │ │ ├── test_level3_modify_order_model.R │ │ │ ├── test_level3_order_book_model.R │ │ │ ├── test_metadata_api.R │ │ │ ├── test_native_iex_api.R │ │ │ ├── test_ohlcv_api.R │ │ │ ├── test_ohlcv_exchange_timeseries_item.R │ │ │ ├── test_ohlcv_timeseries_item.R │ │ │ ├── test_ohlcv_timeseries_period.R │ │ │ └── test_trade_trade_model.R │ ├── ruby │ │ ├── .gitignore │ │ ├── .gitlab-ci.yml │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .rspec │ │ ├── .rubocop.yml │ │ ├── .travis.yml │ │ ├── Gemfile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── docs │ │ │ ├── AdminAdminMessageModel.md │ │ │ ├── AdminAuctionInformationModel.md │ │ │ ├── AdminOfficialPriceModel.md │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ ├── AdminSecurityEventModel.md │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ ├── AdminSystemEventModel.md │ │ │ ├── AdminTradingStatusModel.md │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ ├── Level3AddOrderModel.md │ │ │ ├── Level3ClearBookModel.md │ │ │ ├── Level3DeleteOrderModel.md │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ ├── Level3ModifyOrderModel.md │ │ │ ├── Level3OrderBookModel.md │ │ │ ├── MetadataApi.md │ │ │ ├── NativeIEXApi.md │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ ├── OhlcvApi.md │ │ │ └── TradeTradeModel.md │ │ ├── git_push.sh │ │ ├── lib │ │ │ ├── openapi_client.rb │ │ │ └── openapi_client │ │ │ │ ├── api │ │ │ │ ├── metadata_api.rb │ │ │ │ ├── native_iex_api.rb │ │ │ │ └── ohlcv_api.rb │ │ │ │ ├── api_client.rb │ │ │ │ ├── api_error.rb │ │ │ │ ├── api_model_base.rb │ │ │ │ ├── configuration.rb │ │ │ │ ├── models │ │ │ │ ├── admin_admin_message_model.rb │ │ │ │ ├── admin_auction_information_model.rb │ │ │ │ ├── admin_official_price_model.rb │ │ │ │ ├── admin_operational_halt_status_model.rb │ │ │ │ ├── admin_retail_liquidity_indicator_model.rb │ │ │ │ ├── admin_security_directory_model.rb │ │ │ │ ├── admin_security_event_model.rb │ │ │ │ ├── admin_short_sale_price_test_status_model.rb │ │ │ │ ├── admin_system_event_model.rb │ │ │ │ ├── admin_trading_status_model.rb │ │ │ │ ├── fin_feed_api_exchange_model.rb │ │ │ │ ├── fin_feed_api_symbol_model.rb │ │ │ │ ├── level1_quote_update_model.rb │ │ │ │ ├── level2_price_level_update_model.rb │ │ │ │ ├── level3_add_order_model.rb │ │ │ │ ├── level3_clear_book_model.rb │ │ │ │ ├── level3_delete_order_model.rb │ │ │ │ ├── level3_executed_order_model.rb │ │ │ │ ├── level3_modify_order_model.rb │ │ │ │ ├── level3_order_book_model.rb │ │ │ │ ├── ohlcv_exchange_timeseries_item.rb │ │ │ │ ├── ohlcv_timeseries_item.rb │ │ │ │ ├── ohlcv_timeseries_period.rb │ │ │ │ └── trade_trade_model.rb │ │ │ │ └── version.rb │ │ ├── openapi_client.gemspec │ │ └── spec │ │ │ ├── api │ │ │ ├── metadata_api_spec.rb │ │ │ ├── native_iex_api_spec.rb │ │ │ └── ohlcv_api_spec.rb │ │ │ ├── models │ │ │ ├── admin_admin_message_model_spec.rb │ │ │ ├── admin_auction_information_model_spec.rb │ │ │ ├── admin_official_price_model_spec.rb │ │ │ ├── admin_operational_halt_status_model_spec.rb │ │ │ ├── admin_retail_liquidity_indicator_model_spec.rb │ │ │ ├── admin_security_directory_model_spec.rb │ │ │ ├── admin_security_event_model_spec.rb │ │ │ ├── admin_short_sale_price_test_status_model_spec.rb │ │ │ ├── admin_system_event_model_spec.rb │ │ │ ├── admin_trading_status_model_spec.rb │ │ │ ├── fin_feed_api_exchange_model_spec.rb │ │ │ ├── fin_feed_api_symbol_model_spec.rb │ │ │ ├── level1_quote_update_model_spec.rb │ │ │ ├── level2_price_level_update_model_spec.rb │ │ │ ├── level3_add_order_model_spec.rb │ │ │ ├── level3_clear_book_model_spec.rb │ │ │ ├── level3_delete_order_model_spec.rb │ │ │ ├── level3_executed_order_model_spec.rb │ │ │ ├── level3_modify_order_model_spec.rb │ │ │ ├── level3_order_book_model_spec.rb │ │ │ ├── ohlcv_exchange_timeseries_item_spec.rb │ │ │ ├── ohlcv_timeseries_item_spec.rb │ │ │ ├── ohlcv_timeseries_period_spec.rb │ │ │ └── trade_trade_model_spec.rb │ │ │ └── spec_helper.rb │ ├── scala-akka │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── build.sbt │ │ ├── docs │ │ │ ├── AdminAdminMessageModel.md │ │ │ ├── AdminAuctionInformationModel.md │ │ │ ├── AdminOfficialPriceModel.md │ │ │ ├── AdminOperationalHaltStatusModel.md │ │ │ ├── AdminRetailLiquidityIndicatorModel.md │ │ │ ├── AdminSecurityDirectoryModel.md │ │ │ ├── AdminSecurityEventModel.md │ │ │ ├── AdminShortSalePriceTestStatusModel.md │ │ │ ├── AdminSystemEventModel.md │ │ │ ├── AdminTradingStatusModel.md │ │ │ ├── FinFeedAPIExchangeModel.md │ │ │ ├── FinFeedAPISymbolModel.md │ │ │ ├── Level1QuoteUpdateModel.md │ │ │ ├── Level2PriceLevelUpdateModel.md │ │ │ ├── Level3AddOrderModel.md │ │ │ ├── Level3ClearBookModel.md │ │ │ ├── Level3DeleteOrderModel.md │ │ │ ├── Level3ExecutedOrderModel.md │ │ │ ├── Level3ModifyOrderModel.md │ │ │ ├── Level3OrderBookModel.md │ │ │ ├── MetadataApi.md │ │ │ ├── NativeIEXApi.md │ │ │ ├── OHLCVExchangeTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesItem.md │ │ │ ├── OHLCVTimeseriesPeriod.md │ │ │ ├── OhlcvApi.md │ │ │ └── TradeTradeModel.md │ │ ├── pom.xml │ │ ├── project │ │ │ └── build.properties │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── reference.conf │ │ │ └── scala │ │ │ └── org │ │ │ └── openapitools │ │ │ └── client │ │ │ ├── api │ │ │ ├── EnumsSerializers.scala │ │ │ ├── MetadataApi.scala │ │ │ ├── NativeIEXApi.scala │ │ │ └── OhlcvApi.scala │ │ │ ├── core │ │ │ ├── ApiInvoker.scala │ │ │ ├── ApiRequest.scala │ │ │ ├── ApiSettings.scala │ │ │ ├── Serializers.scala │ │ │ └── requests.scala │ │ │ └── model │ │ │ ├── AddOrderModel.scala │ │ │ ├── AdminMessageModel.scala │ │ │ ├── AuctionInformationModel.scala │ │ │ ├── ClearBookModel.scala │ │ │ ├── DeleteOrderModel.scala │ │ │ ├── ExchangeModel.scala │ │ │ ├── ExchangeTimeseriesItem.scala │ │ │ ├── ExecutedOrderModel.scala │ │ │ ├── ModifyOrderModel.scala │ │ │ ├── OfficialPriceModel.scala │ │ │ ├── OperationalHaltStatusModel.scala │ │ │ ├── OrderBookModel.scala │ │ │ ├── PriceLevelUpdateModel.scala │ │ │ ├── QuoteUpdateModel.scala │ │ │ ├── RetailLiquidityIndicatorModel.scala │ │ │ ├── SecurityDirectoryModel.scala │ │ │ ├── SecurityEventModel.scala │ │ │ ├── ShortSalePriceTestStatusModel.scala │ │ │ ├── SymbolModel.scala │ │ │ ├── SystemEventModel.scala │ │ │ ├── TimeseriesItem.scala │ │ │ ├── TimeseriesPeriod.scala │ │ │ ├── TradeModel.scala │ │ │ └── TradingStatusModel.scala │ ├── typescript-angular │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── README.md │ │ ├── api.base.service.ts │ │ ├── api.module.ts │ │ ├── api │ │ │ ├── api.ts │ │ │ ├── metadata.service.ts │ │ │ ├── nativeIEX.service.ts │ │ │ └── ohlcv.service.ts │ │ ├── configuration.ts │ │ ├── encoder.ts │ │ ├── git_push.sh │ │ ├── index.ts │ │ ├── model │ │ │ ├── adminAdminMessageModel.ts │ │ │ ├── adminAuctionInformationModel.ts │ │ │ ├── adminOfficialPriceModel.ts │ │ │ ├── adminOperationalHaltStatusModel.ts │ │ │ ├── adminRetailLiquidityIndicatorModel.ts │ │ │ ├── adminSecurityDirectoryModel.ts │ │ │ ├── adminSecurityEventModel.ts │ │ │ ├── adminShortSalePriceTestStatusModel.ts │ │ │ ├── adminSystemEventModel.ts │ │ │ ├── adminTradingStatusModel.ts │ │ │ ├── finFeedAPIExchangeModel.ts │ │ │ ├── finFeedAPISymbolModel.ts │ │ │ ├── level1QuoteUpdateModel.ts │ │ │ ├── level2PriceLevelUpdateModel.ts │ │ │ ├── level3AddOrderModel.ts │ │ │ ├── level3ClearBookModel.ts │ │ │ ├── level3DeleteOrderModel.ts │ │ │ ├── level3ExecutedOrderModel.ts │ │ │ ├── level3ModifyOrderModel.ts │ │ │ ├── level3OrderBookModel.ts │ │ │ ├── models.ts │ │ │ ├── oHLCVExchangeTimeseriesItem.ts │ │ │ ├── oHLCVTimeseriesItem.ts │ │ │ ├── oHLCVTimeseriesPeriod.ts │ │ │ └── tradeTradeModel.ts │ │ ├── param.ts │ │ ├── provide-api.ts │ │ └── variables.ts │ ├── typescript-jquery │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── api │ │ │ ├── MetadataApi.ts │ │ │ ├── NativeIEXApi.ts │ │ │ ├── OhlcvApi.ts │ │ │ └── api.ts │ │ ├── configuration.ts │ │ ├── git_push.sh │ │ ├── index.ts │ │ ├── model │ │ │ ├── AdminAdminMessageModel.ts │ │ │ ├── AdminAuctionInformationModel.ts │ │ │ ├── AdminOfficialPriceModel.ts │ │ │ ├── AdminOperationalHaltStatusModel.ts │ │ │ ├── AdminRetailLiquidityIndicatorModel.ts │ │ │ ├── AdminSecurityDirectoryModel.ts │ │ │ ├── AdminSecurityEventModel.ts │ │ │ ├── AdminShortSalePriceTestStatusModel.ts │ │ │ ├── AdminSystemEventModel.ts │ │ │ ├── AdminTradingStatusModel.ts │ │ │ ├── FinFeedAPIExchangeModel.ts │ │ │ ├── FinFeedAPISymbolModel.ts │ │ │ ├── Level1QuoteUpdateModel.ts │ │ │ ├── Level2PriceLevelUpdateModel.ts │ │ │ ├── Level3AddOrderModel.ts │ │ │ ├── Level3ClearBookModel.ts │ │ │ ├── Level3DeleteOrderModel.ts │ │ │ ├── Level3ExecutedOrderModel.ts │ │ │ ├── Level3ModifyOrderModel.ts │ │ │ ├── Level3OrderBookModel.ts │ │ │ ├── OHLCVExchangeTimeseriesItem.ts │ │ │ ├── OHLCVTimeseriesItem.ts │ │ │ ├── OHLCVTimeseriesPeriod.ts │ │ │ ├── TradeTradeModel.ts │ │ │ └── models.ts │ │ └── variables.ts │ ├── typescript-node │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── api.ts │ │ ├── api │ │ │ ├── apis.ts │ │ │ ├── metadataApi.ts │ │ │ ├── nativeIEXApi.ts │ │ │ └── ohlcvApi.ts │ │ ├── git_push.sh │ │ └── model │ │ │ ├── adminAdminMessageModel.ts │ │ │ ├── adminAuctionInformationModel.ts │ │ │ ├── adminOfficialPriceModel.ts │ │ │ ├── adminOperationalHaltStatusModel.ts │ │ │ ├── adminRetailLiquidityIndicatorModel.ts │ │ │ ├── adminSecurityDirectoryModel.ts │ │ │ ├── adminSecurityEventModel.ts │ │ │ ├── adminShortSalePriceTestStatusModel.ts │ │ │ ├── adminSystemEventModel.ts │ │ │ ├── adminTradingStatusModel.ts │ │ │ ├── finFeedAPIExchangeModel.ts │ │ │ ├── finFeedAPISymbolModel.ts │ │ │ ├── level1QuoteUpdateModel.ts │ │ │ ├── level2PriceLevelUpdateModel.ts │ │ │ ├── level3AddOrderModel.ts │ │ │ ├── level3ClearBookModel.ts │ │ │ ├── level3DeleteOrderModel.ts │ │ │ ├── level3ExecutedOrderModel.ts │ │ │ ├── level3ModifyOrderModel.ts │ │ │ ├── level3OrderBookModel.ts │ │ │ ├── models.ts │ │ │ ├── oHLCVExchangeTimeseriesItem.ts │ │ │ ├── oHLCVTimeseriesItem.ts │ │ │ ├── oHLCVTimeseriesPeriod.ts │ │ │ └── tradeTradeModel.ts │ └── typescript-rxjs │ │ ├── .gitignore │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ ├── FILES │ │ └── VERSION │ │ ├── apis │ │ ├── MetadataApi.ts │ │ ├── NativeIEXApi.ts │ │ ├── OhlcvApi.ts │ │ └── index.ts │ │ ├── index.ts │ │ ├── models │ │ ├── AdminAdminMessageModel.ts │ │ ├── AdminAuctionInformationModel.ts │ │ ├── AdminOfficialPriceModel.ts │ │ ├── AdminOperationalHaltStatusModel.ts │ │ ├── AdminRetailLiquidityIndicatorModel.ts │ │ ├── AdminSecurityDirectoryModel.ts │ │ ├── AdminSecurityEventModel.ts │ │ ├── AdminShortSalePriceTestStatusModel.ts │ │ ├── AdminSystemEventModel.ts │ │ ├── AdminTradingStatusModel.ts │ │ ├── FinFeedAPIExchangeModel.ts │ │ ├── FinFeedAPISymbolModel.ts │ │ ├── Level1QuoteUpdateModel.ts │ │ ├── Level2PriceLevelUpdateModel.ts │ │ ├── Level3AddOrderModel.ts │ │ ├── Level3ClearBookModel.ts │ │ ├── Level3DeleteOrderModel.ts │ │ ├── Level3ExecutedOrderModel.ts │ │ ├── Level3ModifyOrderModel.ts │ │ ├── Level3OrderBookModel.ts │ │ ├── OHLCVExchangeTimeseriesItem.ts │ │ ├── OHLCVTimeseriesItem.ts │ │ ├── OHLCVTimeseriesPeriod.ts │ │ ├── TradeTradeModel.ts │ │ └── index.ts │ │ ├── runtime.ts │ │ ├── servers.ts │ │ └── tsconfig.json │ ├── spec │ ├── openapi.json │ └── openapi.yaml │ └── tutorials │ ├── Stock_API_Daily_Price_Volume_Analysis.ipynb │ └── Visualize-Intraday-Bid-and-Ask-Prices-using-Level-1-Quotes.ipynb └── mcp └── tutorials ├── finfeedapi-fx-and-mcp-with-openai-minimal.ipynb └── finfeedapi-sec-and-stock-mcp-api-with-anthropic-sdk-quickstart.ipynb /.github/workflows/reusable-openapi-to-sdk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/.github/workflows/reusable-openapi-to-sdk.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-fix/spec/FIX44.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-fix/spec/FIX44.xml -------------------------------------------------------------------------------- /coinapi/ems-api-fix/spec/FIX50.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-fix/spec/FIX50.xml -------------------------------------------------------------------------------- /coinapi/ems-api-fix/spec/FIXT11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-fix/spec/FIXT11.xml -------------------------------------------------------------------------------- /coinapi/ems-api-fix/spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-fix/spec/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ada/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ada/config.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/ada/config.gpr -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ada/src/-client.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/ada/src/-client.adb -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ada/src/.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/ada/src/.ads -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/android/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/android/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/android/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/android/build.gradle -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/android/docs/Fills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/android/docs/Fills.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/android/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/android/git_push.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/android/gradlew -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/android/gradlew.bat -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/android/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/android/pom.xml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/apex/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/apex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/apex/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/bash/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/bash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/bash/Dockerfile -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/bash/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/bash/_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/bash/_client.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/bash/client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/bash/client.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/bash/docs/Balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/bash/docs/Balance.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/bash/docs/Fills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/bash/docs/Fills.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/bash/docs/OrdSide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/bash/docs/OrdSide.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/bash/docs/OrdType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/bash/docs/OrdType.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/bash/docs/Position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/bash/docs/Position.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/CMakeLists.txt -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/Packing.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/Packing.cmake -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/api/BalancesAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/api/BalancesAPI.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/api/BalancesAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/api/BalancesAPI.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/api/OrdersAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/api/OrdersAPI.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/api/OrdersAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/api/OrdersAPI.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/api/PositionsAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/api/PositionsAPI.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/api/PositionsAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/api/PositionsAPI.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/docs/BalancesAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/docs/BalancesAPI.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/docs/OrdersAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/docs/OrdersAPI.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/docs/balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/docs/balance.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/docs/fills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/docs/fills.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/docs/ord_side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/docs/ord_side.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/docs/ord_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/docs/ord_status.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/docs/ord_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/docs/ord_type.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/docs/position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/docs/position.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/external/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/external/cJSON.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/external/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/external/cJSON.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/include/apiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/include/apiClient.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/include/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/include/binary.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/include/list.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/libcurl.licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/libcurl.licence -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/balance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/balance.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/balance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/balance.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/fills.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/fills.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/fills.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/fills.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/object.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/object.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/ord_side.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/ord_side.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/ord_side.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/ord_side.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/ord_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/ord_status.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/ord_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/ord_status.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/ord_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/ord_type.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/ord_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/ord_type.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/position.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/model/position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/model/position.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/src/apiClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/src/apiClient.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/src/apiKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/src/apiKey.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/src/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/src/binary.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/c/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/c/src/list.c -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/clojure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/clojure/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/clojure/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/clojure/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/clojure/git_push.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/clojure/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/clojure/project.clj -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/cpp-restsdk/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/cpp-restsdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/cpp-restsdk/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/cpp-tizen/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/cpp-tizen/src/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/cpp-tizen/src/Error.h -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/csharp-netcore/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/csharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/csharp/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/csharp/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/csharp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/csharp/.travis.yml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/csharp/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/csharp/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/csharp/build.bat -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/csharp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/csharp/build.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/csharp/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/csharp/git_push.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/dart-dio/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/dart-dio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/dart-dio/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/dart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/dart/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/dart/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/dart/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/dart/.travis.yml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/dart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/dart/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/dart/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/dart/doc/Fills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/dart/doc/Fills.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/dart/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/dart/git_push.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/dart/lib/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/dart/lib/api.dart -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/dart/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/dart/pubspec.yaml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/eiffel/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/eiffel/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/eiffel/.travis.yml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/eiffel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/eiffel/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/elixir/.formatter.exs: -------------------------------------------------------------------------------- 1 | [ 2 | inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"] 3 | ] 4 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/elixir/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/elixir/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/elixir/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/elixir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/elixir/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/elixir/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/elixir/mix.exs -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/elixir/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/elm/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/elm/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/elm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/elm/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/elm/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/elm/elm.json -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/elm/src/Api.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/elm/src/Api.elm -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/erlang-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/erlang-proper/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/.travis.yml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/api_balances.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/api_balances.go -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/api_orders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/api_orders.go -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/client.go -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/docs/Balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/docs/Balance.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/docs/Fills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/docs/Fills.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/docs/OrdSide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/docs/OrdSide.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/docs/OrdType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/docs/OrdType.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/git_push.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/go.mod -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/go.sum -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/model_fills.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/model_fills.go -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/response.go -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/go/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/go/utils.go -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/groovy/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/groovy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/groovy/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/haskell-http-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/haskell-http-client/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/java/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/java/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/java/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/java/.travis.yml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/java/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/java/build.gradle -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/java/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/java/build.sbt -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/java/docs/Fills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/java/docs/Fills.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/java/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/java/git_push.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/java/gradlew -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/java/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/java/gradlew.bat -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/java/pom.xml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/java/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "openapi-java-client" -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/javascript-closure-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/javascript-flowtyped/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/javascript-flowtyped/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/javascript/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/javascript/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/kotlin/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/kotlin/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/kotlin/gradlew -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/kotlin/gradlew.bat -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | 2 | rootProject.name = 'kotlin-client' -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/lua/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/lua/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/lua/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/lua/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/lua/git_push.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/perl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/perl/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/perl/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/perl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/perl/.travis.yml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/perl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/perl/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/perl/bin/autodoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/perl/bin/autodoc -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/perl/docs/Fills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/perl/docs/Fills.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/perl/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/perl/git_push.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/perl/t/FillsTest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/perl/t/FillsTest.t -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/php/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/php/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/php/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/php/.travis.yml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/php/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/php/composer.json -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/php/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/php/git_push.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/powershell/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/python/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/python/.travis.yml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/python/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/python/git_push.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=99 3 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/python/setup.py -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/test/test_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/test/test_paths/test_v1_balances/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/test/test_paths/test_v1_orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/test/test_paths/test_v1_orders_cancel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/test/test_paths/test_v1_orders_cancel_all/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/test/test_paths/test_v1_orders_history/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/test/test_paths/test_v1_orders_status_client_order_id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/test/test_paths/test_v1_positions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/python/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/python/tox.ini -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/.Rbuildignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/.lintr -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/.travis.yml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/DESCRIPTION -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/NAMESPACE -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/R/api_client.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/R/api_client.R -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/R/api_response.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/R/api_response.R -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/R/balance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/R/balance.R -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/R/balances_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/R/balances_api.R -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/R/fills.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/R/fills.R -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/R/ord_side.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/R/ord_side.R -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/R/ord_status.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/R/ord_status.R -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/R/ord_type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/R/ord_type.R -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/R/orders_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/R/orders_api.R -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/R/position.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/R/position.R -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/docs/Balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/docs/Balance.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/docs/Fills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/docs/Fills.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/docs/OrdSide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/docs/OrdSide.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/docs/OrdType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/docs/OrdType.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/docs/Position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/docs/Position.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/git_push.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/r/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/r/tests/testthat.R -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ruby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/ruby/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ruby/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ruby/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ruby/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/ruby/.rubocop.yml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ruby/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/ruby/.travis.yml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/ruby/Gemfile -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/ruby/README.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ruby/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/ruby/Rakefile -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ruby/docs/Fills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/ruby/docs/Fills.md -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/ruby/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/ruby/git_push.sh -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/scala-akka/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/scala-akka/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-api-rest/sdk/scala-akka/pom.xml -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/scala-akka/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.3.10 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/typescript-angular/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/typescript-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/typescript-jquery/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/typescript-node/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/typescript-node/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/typescript-rxjs/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/ems-api-rest/sdk/typescript-rxjs/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/ada/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/ada/src/.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/ada/src/.ads -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/android/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/apex/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/bash/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/c/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/c/README.md -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/c/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/c/src/list.c -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/clojure/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/cpp-restsdk/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/cpp-tizen/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/csharp-netcore/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/csharp/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/dart-dio/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/dart/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/dart/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/eiffel/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/elixir/.formatter.exs: -------------------------------------------------------------------------------- 1 | [ 2 | inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"] 3 | ] 4 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/elixir/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/elixir/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/elm/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/elm/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/elm/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/elm/elm.json -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/erlang-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/erlang-proper/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/go/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/go/README.md -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/go/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/go/client.go -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/go/go.mod -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/go/go.sum -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/go/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/go/utils.go -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/groovy/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/haskell-http-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/haskell-http-client/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/java/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/java/gradlew -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/java/pom.xml -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/java/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "openapi-java-client" -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/javascript-closure-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/javascript-flowtyped/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/javascript-flowtyped/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/javascript/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/javascript/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/kotlin/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | 2 | rootProject.name = 'kotlin-client' -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/lua/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/perl/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/php/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/powershell/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/python/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/python/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=99 3 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/python/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/python/test/test_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/python/test/test_paths/test_v1_balances/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/python/test/test_paths/test_v1_orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/python/test/test_paths/test_v1_orders_cancel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/python/test/test_paths/test_v1_orders_cancel_all/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/python/test/test_paths/test_v1_orders_history/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/python/test/test_paths/test_v1_orders_status_client_order_id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/python/test/test_paths/test_v1_positions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/r/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/r/.gitignore -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/r/.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/r/.lintr -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/r/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/r/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/r/NAMESPACE -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/r/R/fills.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/r/R/fills.R -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/r/README.md -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/ruby/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/ruby/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/ems-cloud-mgmt-api/sdk/ruby/Gemfile -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/scala-akka/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/scala-akka/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.3.10 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/typescript-angular/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/typescript-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/typescript-jquery/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/typescript-node/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/typescript-node/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/typescript-rxjs/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/ems-cloud-mgmt-api/sdk/typescript-rxjs/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/ada/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/android/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/apex/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/bash/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/c/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/clojure/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/cpp-restsdk/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/cpp-tizen/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/csharp/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/csharp/src/APIBricks.CoinAPI.ExchangeRatesAPI.Historical.REST.V1.Test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/dart-dio/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/dart/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/dart/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/eiffel/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/elixir/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/elixir/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/elm/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/elm/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/erlang-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/erlang-proper/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/go/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/groovy/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/haskell-http-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/haskell-http-client/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/java/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/java/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "openapi-java-client" -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/javascript-closure-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/javascript-flowtyped/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/javascript-flowtyped/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/javascript/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/javascript/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/kotlin/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'kotlin-client' 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/lua/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/perl/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/php/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/powershell/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/python/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/python/api_bricks_coinapi_exchange_rates_api_rest_historical/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/r/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/ruby/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/ruby/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/scala-akka/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/scala-akka/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.10.11 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/typescript-angular/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/typescript-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/typescript-jquery/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/typescript-node/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/typescript-node/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/typescript-rxjs/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-historical/sdk/typescript-rxjs/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/ada/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/android/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/apex/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/bash/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/c/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/clojure/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/cpp-restsdk/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/cpp-tizen/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/csharp/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/csharp/src/APIBricks.CoinAPI.ExchangeRatesAPI.Realtime.REST.V1.Test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/dart-dio/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/dart/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/dart/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/eiffel/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/elixir/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/elixir/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/elm/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/elm/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/erlang-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/erlang-proper/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/go/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/groovy/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/haskell-http-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/haskell-http-client/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/java/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/java/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "openapi-java-client" -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/javascript-closure-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/javascript-flowtyped/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/javascript-flowtyped/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/javascript/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/javascript/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/kotlin/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'kotlin-client' 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/lua/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/perl/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/php/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/powershell/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/python/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/python/api_bricks_coinapi_exchange_rates_api_rest_realtime/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/r/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/ruby/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/ruby/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/scala-akka/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/scala-akka/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.10.11 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/typescript-angular/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/typescript-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/typescript-jquery/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/typescript-node/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/typescript-node/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/typescript-rxjs/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/exchange-rates-api-rest-realtime/sdk/typescript-rxjs/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk-config/c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk-config/c.yaml -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk-config/go.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk-config/go.yaml -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk-config/r.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk-config/r.yaml -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/ada/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/ada/config.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/ada/config.gpr -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/ada/src/.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/ada/src/.ads -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/android/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/apex/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/apex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/apex/README.md -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/bash/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/bash/README.md -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/bash/client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/bash/client.sh -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/c/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/c/README.md -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/c/src/apiKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/c/src/apiKey.c -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/c/src/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/c/src/binary.c -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/c/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/c/src/list.c -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/clojure/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/cpp-restsdk/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/cpp-tizen/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/csharp/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/csharp/src/APIBricks.CoinAPI.IndexesAPI.REST.V1.Test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/dart-dio/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/dart/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/dart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/dart/README.md -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/dart/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/eiffel/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/elixir/.formatter.exs: -------------------------------------------------------------------------------- 1 | [ 2 | inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"] 3 | ] 4 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/elixir/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/elixir/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/elixir/mix.exs -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/elixir/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/elm/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/elm/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/elm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/elm/README.md -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/elm/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/elm/elm.json -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/erlang-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/erlang-proper/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/go/.gitignore -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/go/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/go/.travis.yml -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/go/README.md -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/go/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/go/client.go -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/go/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/go/git_push.sh -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/go/go.mod -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/go/go.sum -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/go/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/go/response.go -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/go/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/go/utils.go -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/groovy/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/haskell-http-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/haskell-http-client/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/java/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/java/README.md -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/java/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/java/build.sbt -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/java/gradlew -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/java/pom.xml -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/java/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "openapi-java-client" -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/javascript-closure-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/javascript-flowtyped/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/javascript-flowtyped/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/javascript/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/javascript/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/kotlin/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/kotlin/gradlew -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'kotlin-client' 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/lua/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/lua/.gitignore -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/lua/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/perl/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/perl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/perl/README.md -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/perl/cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/perl/cpanfile -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/php/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/php/.gitignore -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/php/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/php/README.md -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/powershell/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/python/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/python/api_bricks_coinapi_indexes_api_rest/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/r/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/r/.gitignore -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/r/.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/r/.lintr -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/r/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/r/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/r/.travis.yml -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/r/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/r/DESCRIPTION -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/r/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/r/NAMESPACE -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/r/README.md -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/r/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/r/git_push.sh -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/ruby/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/ruby/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/ruby/Gemfile -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/ruby/README.md -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/ruby/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/sdk/ruby/Rakefile -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/scala-akka/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/scala-akka/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.10.11 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/typescript-angular/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/typescript-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/typescript-jquery/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/typescript-node/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/typescript-node/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/typescript-rxjs/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/sdk/typescript-rxjs/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.14.0 2 | -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/spec/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/spec/openapi.json -------------------------------------------------------------------------------- /coinapi/indexes-api-rest/spec/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/indexes-api-rest/spec/openapi.yaml -------------------------------------------------------------------------------- /coinapi/market-data-api-fix/spec/FIX44.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/market-data-api-fix/spec/FIX44.xml -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk-handcrafted/haskell-rest/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | *~ 3 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk-handcrafted/haskell-rest/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/ada/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/android/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/apex/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/bash/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/c/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/clojure/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/cpp-restsdk/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/cpp-tizen/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/csharp/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/csharp/src/APIBricks.CoinAPI.MarketDataAPI.REST.V1.Test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/dart-dio/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/dart/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/dart/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/eiffel/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/elixir/.formatter.exs: -------------------------------------------------------------------------------- 1 | [ 2 | inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"] 3 | ] 4 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/elixir/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/elixir/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/elm/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/elm/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/erlang-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/erlang-proper/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/go/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/market-data-api-rest/sdk/go/go.mod -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/market-data-api-rest/sdk/go/go.sum -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/groovy/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/haskell-http-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/haskell-http-client/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/java/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/java/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "openapi-java-client" -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/javascript-closure-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/javascript-flowtyped/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/javascript-flowtyped/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/javascript/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/javascript/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/kotlin/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'kotlin-client' 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/lua/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/perl/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/php/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/powershell/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/python/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/python/api_bricks_coinapi_market_data_api_rest/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/r/.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/market-data-api-rest/sdk/r/.lintr -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/r/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/ruby/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/ruby/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/scala-akka/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/scala-akka/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.10.11 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/typescript-angular/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/typescript-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/typescript-jquery/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/typescript-node/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/typescript-node/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/typescript-rxjs/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /coinapi/market-data-api-rest/sdk/typescript-rxjs/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-ws/sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/market-data-api-ws/sdk/LICENSE -------------------------------------------------------------------------------- /coinapi/market-data-api-ws/sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/market-data-api-ws/sdk/README.md -------------------------------------------------------------------------------- /coinapi/market-data-api-ws/sdk/csharp-ws/CoinAPI.WebSocket.V1.Tests/.gitignore: -------------------------------------------------------------------------------- 1 | /config.json 2 | -------------------------------------------------------------------------------- /coinapi/market-data-api-ws/sdk/go-ws/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/market-data-api-ws/sdk/go-ws/go.mod -------------------------------------------------------------------------------- /coinapi/market-data-api-ws/sdk/go-ws/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/market-data-api-ws/sdk/go-ws/go.sum -------------------------------------------------------------------------------- /coinapi/market-data-api-ws/sdk/java-websocket/src/main/resources/config.properties: -------------------------------------------------------------------------------- 1 | coinapi_key=YOUR_API_KEY_HERE -------------------------------------------------------------------------------- /coinapi/tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/coinapi/tutorials/README.md -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/ada/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/android/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/apex/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/bash/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/c/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/clojure/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/cpp-restsdk/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/cpp-tizen/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/csharp/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/csharp/src/APIBricks.FinFeedAPI.CurrenciesAPI.REST.V1.Historical.Test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/dart-dio/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/dart/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/dart/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/eiffel/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/elixir/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/elixir/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/elm/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/elm/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/erlang-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/erlang-proper/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/go/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/groovy/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/haskell-http-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/haskell-http-client/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/java/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/java/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "openapi-java-client" -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/javascript-closure-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/javascript-flowtyped/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/javascript-flowtyped/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/javascript/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/javascript/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/kotlin/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'kotlin-client' 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/lua/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/perl/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/php/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/powershell/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/python/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/python/api_bricks_currencies_api_rest_historical/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/r/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/ruby/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/ruby/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/scala-akka/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/scala-akka/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.10.11 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/typescript-angular/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/typescript-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/typescript-jquery/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/typescript-node/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/typescript-node/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/typescript-rxjs/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-historical/sdk/typescript-rxjs/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/ada/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/android/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/apex/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/bash/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/c/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/clojure/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/cpp-restsdk/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/cpp-tizen/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/csharp/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/csharp/src/APIBricks.FinFeedAPI.CurrenciesAPI.REST.V1.Realtime.Test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/dart-dio/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/dart/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/dart/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/eiffel/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/elixir/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/elixir/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/elm/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/elm/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/erlang-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/erlang-proper/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/go/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/groovy/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/haskell-http-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/haskell-http-client/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/java/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/java/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "openapi-java-client" -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/javascript-closure-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/javascript-flowtyped/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/javascript-flowtyped/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/javascript/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/javascript/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/kotlin/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'kotlin-client' 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/lua/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/perl/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/php/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/powershell/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/python/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/python/api_bricks_currencies_api_rest_realtime/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/r/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/ruby/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/ruby/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/scala-akka/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/scala-akka/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.10.11 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/typescript-angular/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/typescript-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/typescript-jquery/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/typescript-node/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/typescript-node/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/typescript-rxjs/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /finfeedapi/currencies-api-rest-realtime/sdk/typescript-rxjs/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/openapitools.json -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk-config/ada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk-config/ada.yaml -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk-config/c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk-config/c.yaml -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk-config/elm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk-config/elm.yaml -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk-config/go.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk-config/go.yaml -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk-config/lua.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk-config/lua.yaml -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk-config/php.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk-config/php.yaml -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk-config/r.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk-config/r.yaml -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/ada/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/ada/config.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/ada/config.gpr -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/ada/src/.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/ada/src/.ads -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/android/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/android/gradlew -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/android/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/android/pom.xml -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/apex/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/apex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/apex/README.md -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/bash/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/bash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/bash/Dockerfile -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/bash/README.md -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/bash/_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/bash/_client.sh -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/bash/client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/bash/client.sh -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/c/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/c/Packing.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/c/Packing.cmake -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/c/README.md -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/c/src/apiKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/c/src/apiKey.c -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/c/src/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/c/src/binary.c -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/c/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/c/src/list.c -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/clojure/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/cpp-restsdk/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/cpp-tizen/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/csharp/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/csharp/README.md: -------------------------------------------------------------------------------- 1 | # Created with Openapi Generator 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/csharp/src/APIBricks.FinFeedAPI.SECAPI.REST.V1.Test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/dart-dio/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/dart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/dart/.gitignore -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/dart/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/dart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/dart/README.md -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/dart/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/eiffel/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/elixir/.formatter.exs: -------------------------------------------------------------------------------- 1 | [ 2 | inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"] 3 | ] 4 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/elixir/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/elixir/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/elixir/mix.exs -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/elixir/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/elm/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/elm/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/elm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/elm/README.md -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/elm/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/elm/elm.json -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/elm/src/Api.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/elm/src/Api.elm -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/erlang-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/erlang-proper/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/go/.gitignore -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/go/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/go/.travis.yml -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/go/README.md -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/go/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/go/client.go -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/go/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/go/git_push.sh -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/go/go.mod -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/go/go.sum -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/go/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/go/response.go -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/go/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/go/utils.go -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/groovy/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/haskell-http-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/haskell-http-client/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/java/.gitignore -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/java/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/java/README.md -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/java/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/java/build.sbt -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/java/gradlew -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/java/pom.xml -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/java/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "openapi-java-client" -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/javascript-closure-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/javascript-flowtyped/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/javascript-flowtyped/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/javascript/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/javascript/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/kotlin/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/kotlin/gradlew -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'kotlin-client' 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/lua/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/lua/.gitignore -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/lua/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/lua/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/lua/git_push.sh -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/perl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/perl/.gitignore -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/perl/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/perl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/perl/README.md -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/perl/cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/perl/cpanfile -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/php/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/php/.gitignore -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/php/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/php/.travis.yml -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/php/README.md -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/php/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/php/git_push.sh -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/powershell/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/python/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/python/api_bricks_sec_api_rest/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/r/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/r/.Rbuildignore -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/r/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/r/.gitignore -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/r/.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/r/.lintr -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/r/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/r/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/r/.travis.yml -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/r/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/r/DESCRIPTION -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/r/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/r/NAMESPACE -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/r/README.md -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/r/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/r/git_push.sh -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/ruby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/ruby/.gitignore -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/ruby/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/ruby/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/ruby/Gemfile -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/ruby/README.md -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/ruby/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/sdk/ruby/Rakefile -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/scala-akka/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/scala-akka/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.10.11 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/typescript-angular/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/typescript-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/typescript-jquery/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/typescript-node/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/typescript-node/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/typescript-rxjs/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/sdk/typescript-rxjs/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/spec/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/spec/openapi.json -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/spec/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/spec/openapi.yaml -------------------------------------------------------------------------------- /finfeedapi/sec-api-rest/tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/sec-api-rest/tutorials/README.md -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk-config/c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk-config/c.yaml -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk-config/r.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk-config/r.yaml -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/ada/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/ada/src/.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/ada/src/.ads -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/android/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/apex/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/bash/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/c/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/c/README.md -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/c/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/c/src/list.c -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/clojure/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/cpp-restsdk/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/cpp-tizen/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/csharp/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/csharp/src/APIBricks.FinFeedAPI.STOCKAPI.REST.V1.Test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/dart-dio/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/dart/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/dart/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/eiffel/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/elixir/.formatter.exs: -------------------------------------------------------------------------------- 1 | [ 2 | inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"] 3 | ] 4 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/elixir/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/elixir/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/elm/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/elm/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/elm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/elm/README.md -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/elm/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/elm/elm.json -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/erlang-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/erlang-proper/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/go/.gitignore -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/go/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/go/README.md -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/go/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/go/client.go -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/go/go.mod -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/go/go.sum -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/go/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/go/utils.go -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/groovy/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/haskell-http-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/haskell-http-client/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/java/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/java/gradlew -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/java/pom.xml -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/java/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "openapi-java-client" -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/javascript-closure-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/javascript-flowtyped/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/javascript-flowtyped/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/javascript/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/javascript/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/kotlin/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'kotlin-client' 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/lua/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/perl/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/perl/cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/perl/cpanfile -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/php/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/php/README.md -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/powershell/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/python/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/python/api_bricks_stock_api_rest/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/r/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/r/.gitignore -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/r/.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/r/.lintr -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/r/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/r/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/r/.travis.yml -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/r/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/r/DESCRIPTION -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/r/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/r/NAMESPACE -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/r/README.md -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/r/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/r/git_push.sh -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/ruby/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/ruby/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/ruby/Gemfile -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/ruby/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/sdk/ruby/Rakefile -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/scala-akka/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/scala-akka/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.10.11 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/typescript-angular/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/typescript-angular/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/typescript-jquery/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/typescript-node/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/typescript-node/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/typescript-rxjs/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/sdk/typescript-rxjs/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.17.0 2 | -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/spec/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/spec/openapi.json -------------------------------------------------------------------------------- /finfeedapi/stock-api-rest/spec/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api-bricks/api-bricks-sdk/HEAD/finfeedapi/stock-api-rest/spec/openapi.yaml --------------------------------------------------------------------------------