Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hyperledger-cacti/cacti
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0b2053f2b2aeeb02f8f3a4b2b17c9832485be41f
Choose a base ref
...
head repository: hyperledger-cacti/cacti
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8d240cae2df4908be62072d1974040eb465b827d
Choose a head ref
  • 1 commit
  • 95 files changed
  • 2 contributors

Commits on Feb 19, 2025

  1. feat(daml): creation of connector class

    Primary Changes
    ---------------
    1. Create a DAML connector class
    2. Created OpenAPI endpoints of DAML
    3. Created DAML web services for create, exercise and query contracts
    4. Create simple IOU Transaction using DAML
    
    Fixes #3489
    
    Co-authored-by: Peter Somogyvari <[email protected]>
    Signed-off-by: raynato.c.pedrajeta <[email protected]>
    raynatopedrajeta and petermetz committed Feb 19, 2025

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    8d240ca View commit details
Showing with 19,333 additions and 12,070 deletions.
  1. +3 −0 .cspell.json
  2. +11 −0 CODEOWNERS
  3. +8 −0 packages/cactus-plugin-ledger-connector-daml/openapitools.json
  4. +96 −0 packages/cactus-plugin-ledger-connector-daml/package.json
  5. +23 −0 ...tus-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client/.openapi-generator/FILES
  6. +1 −0 ...s-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client/.openapi-generator/VERSION
  7. +8 −0 packages/cactus-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client/.travis.yml
  8. +128 −0 packages/cactus-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client/README.md
  9. +388 −0 ...ages/cactus-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client/api/openapi.yaml
  10. +568 −0 packages/cactus-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client/api_default.go
  11. +656 −0 packages/cactus-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client/client.go
  12. +215 −0 ...ages/cactus-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client/configuration.go
  13. +6 −0 packages/cactus-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client/go.mod
  14. +11 −0 packages/cactus-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client/go.sum
  15. +198 −0 ...edger-connector-daml/src/main/go/generated/openapi/go-client/model_create_iou_endpoint_request.go
  16. +270 −0 ...nnector-daml/src/main/go/generated/openapi/go-client/model_create_iou_endpoint_request_payload.go
  17. +342 −0 ...dger-connector-daml/src/main/go/generated/openapi/go-client/model_create_iou_endpoint_response.go
  18. +270 −0 ...nector-daml/src/main/go/generated/openapi/go-client/model_create_iou_endpoint_response_payload.go
  19. +270 −0 ...ger-connector-daml/src/main/go/generated/openapi/go-client/model_exercise_iou_endpoint_request.go
  20. +126 −0 ...ctor-daml/src/main/go/generated/openapi/go-client/model_exercise_iou_endpoint_request_argument.go
  21. +162 −0 ...er-connector-daml/src/main/go/generated/openapi/go-client/model_exercise_iou_endpoint_response.go
  22. +126 −0 ...daml/src/main/go/generated/openapi/go-client/model_exercise_iou_endpoint_response_events_inner.go
  23. +162 −0 ...main/go/generated/openapi/go-client/model_exercise_iou_endpoint_response_events_inner_archived.go
  24. +126 −0 ...ector-daml/src/main/go/generated/openapi/go-client/model_get_parties_involved_endpoint_request.go
  25. +209 −0 ...ger-connector-daml/src/main/go/generated/openapi/go-client/model_get_parties_involved_response.go
  26. +234 −0 ...ledger-connector-daml/src/main/go/generated/openapi/go-client/model_query_iou_endpoint_request.go
  27. +126 −0 ...-connector-daml/src/main/go/generated/openapi/go-client/model_query_iou_endpoint_request_query.go
  28. +162 −0 ...edger-connector-daml/src/main/go/generated/openapi/go-client/model_query_iou_endpoint_response.go
  29. +126 −0 ...or-daml/src/main/go/generated/openapi/go-client/model_query_iou_endpoint_response_events_inner.go
  30. +162 −0 ...rc/main/go/generated/openapi/go-client/model_query_iou_endpoint_response_events_inner_archived.go
  31. +126 −0 ...er-connector-daml/src/main/go/generated/openapi/go-client/model_query_raw_iou_endpoint_request.go
  32. +47 −0 packages/cactus-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client/response.go
  33. +49 −0 ...tus-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client/test/api_default_test.go
  34. +347 −0 packages/cactus-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client/utils.go
  35. +471 −0 packages/cactus-plugin-ledger-connector-daml/src/main/json/openapi.json
  36. +471 −0 packages/cactus-plugin-ledger-connector-daml/src/main/json/openapi.tpl.json
  37. +36 −0 ...in-ledger-connector-daml/src/main/kotlin/generated/openapi/kotlin-client/.openapi-generator/FILES
  38. +1 −0 ...-ledger-connector-daml/src/main/kotlin/generated/openapi/kotlin-client/.openapi-generator/VERSION
  39. +76 −0 ...ges/cactus-plugin-ledger-connector-daml/src/main/kotlin/generated/openapi/kotlin-client/README.md
  40. +38 −0 .../cactus-plugin-ledger-connector-daml/src/main/kotlin/generated/openapi/kotlin-client/build.gradle
  41. +245 −0 packages/cactus-plugin-ledger-connector-daml/src/main/kotlin/generated/openapi/kotlin-client/gradlew
  42. +92 −0 ...s/cactus-plugin-ledger-connector-daml/src/main/kotlin/generated/openapi/kotlin-client/gradlew.bat
  43. +2 −0 ...ctus-plugin-ledger-connector-daml/src/main/kotlin/generated/openapi/kotlin-client/settings.gradle
  44. +418 −0 ...kotlin/generated/openapi/kotlin-client/src/main/kotlin/org/openapitools/client/apis/DefaultApi.kt
  45. +23 −0 ...d/openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/ApiAbstractions.kt
  46. +245 −0 ...nerated/openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/ApiClient.kt
  47. +43 −0 ...rated/openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/ApiResponse.kt
  48. +17 −0 ...openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/BigDecimalAdapter.kt
  49. +17 −0 ...openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/BigIntegerAdapter.kt
  50. +12 −0 .../openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/ByteArrayAdapter.kt
  51. +18 −0 .../generated/openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/Errors.kt
  52. +19 −0 .../openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/LocalDateAdapter.kt
  53. +19 −0 ...napi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/LocalDateTimeAdapter.kt
  54. +19 −0 ...api/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/OffsetDateTimeAdapter.kt
  55. +11 −0 ...erated/openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/PartConfig.kt
  56. +18 −0 ...ted/openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/RequestConfig.kt
  57. +8 −0 ...ted/openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/RequestMethod.kt
  58. +24 −0 ...penapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/ResponseExtensions.kt
  59. +23 −0 ...erated/openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/Serializer.kt
  60. +13 −0 ...erated/openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/URIAdapter.kt
  61. +13 −0 ...rated/openapi/kotlin-client/src/main/kotlin/org/openapitools/client/infrastructure/UUIDAdapter.kt
  62. +44 −0 .../openapi/kotlin-client/src/main/kotlin/org/openapitools/client/models/CreateIOUEndpointRequest.kt
  63. +51 −0 ...i/kotlin-client/src/main/kotlin/org/openapitools/client/models/CreateIOUEndpointRequestPayload.kt
  64. +60 −0 ...openapi/kotlin-client/src/main/kotlin/org/openapitools/client/models/CreateIOUEndpointResponse.kt
  65. +52 −0 ...penapi/kotlin-client/src/main/kotlin/org/openapitools/client/models/ExerciseIOUEndpointRequest.kt
  66. +35 −0 ...otlin-client/src/main/kotlin/org/openapitools/client/models/ExerciseIOUEndpointRequestArgument.kt
  67. +40 −0 ...enapi/kotlin-client/src/main/kotlin/org/openapitools/client/models/ExerciseIOUEndpointResponse.kt
  68. +35 −0 ...kotlin-client/src/main/kotlin/org/openapitools/client/models/GetPartiesInvolvedEndpointRequest.kt
  69. +48 −0 ...d/openapi/kotlin-client/src/main/kotlin/org/openapitools/client/models/QueryIOUEndpointRequest.kt
  70. +35 −0 ...napi/kotlin-client/src/main/kotlin/org/openapitools/client/models/QueryIOUEndpointRequestQuery.kt
  71. +40 −0 .../openapi/kotlin-client/src/main/kotlin/org/openapitools/client/models/QueryIOUEndpointResponse.kt
  72. +36 −0 ...tlin-client/src/main/kotlin/org/openapitools/client/models/QueryIOUEndpointResponseEventsInner.kt
  73. +39 −0 ...ent/src/main/kotlin/org/openapitools/client/models/QueryIOUEndpointResponseEventsInnerArchived.kt
  74. +35 −0 ...penapi/kotlin-client/src/main/kotlin/org/openapitools/client/models/QueryRawIOUEndpointRequest.kt
  75. +5 −0 ...er-connector-daml/src/main/typescript/generated/openapi/typescript-axios/.openapi-generator/FILES
  76. +1 −0 ...-connector-daml/src/main/typescript/generated/openapi/typescript-axios/.openapi-generator/VERSION
  77. +710 −0 ...cactus-plugin-ledger-connector-daml/src/main/typescript/generated/openapi/typescript-axios/api.ts
  78. +72 −0 ...actus-plugin-ledger-connector-daml/src/main/typescript/generated/openapi/typescript-axios/base.ts
  79. +150 −0 ...tus-plugin-ledger-connector-daml/src/main/typescript/generated/openapi/typescript-axios/common.ts
  80. +101 −0 ...gin-ledger-connector-daml/src/main/typescript/generated/openapi/typescript-axios/configuration.ts
  81. +18 −0 ...ctus-plugin-ledger-connector-daml/src/main/typescript/generated/openapi/typescript-axios/index.ts
  82. +390 −0 packages/cactus-plugin-ledger-connector-daml/src/main/typescript/plugin-ledger-connector-daml.ts
  83. +118 −0 packages/cactus-plugin-ledger-connector-daml/src/main/typescript/web-services/create-iou-endpoint.ts
  84. +118 −0 ...ges/cactus-plugin-ledger-connector-daml/src/main/typescript/web-services/exercise-iou-endpoint.ts
  85. +118 −0 ...us-plugin-ledger-connector-daml/src/main/typescript/web-services/get-parties-involved-endpoint.ts
  86. +118 −0 packages/cactus-plugin-ledger-connector-daml/src/main/typescript/web-services/query-iou-endpoint.ts
  87. +118 −0 ...es/cactus-plugin-ledger-connector-daml/src/main/typescript/web-services/query-raw-iou-endpoint.ts
  88. +221 −0 .../cactus-plugin-ledger-connector-daml/src/test/typescript/integration/daml-get-transaction.test.ts
  89. +30 −0 packages/cactus-plugin-ledger-connector-daml/tsconfig.json
  90. +32 −4 packages/cactus-test-tooling/src/main/typescript/daml/daml-test-ledger.ts
  91. +36 −0 packages/cactus-test-tooling/src/main/typescript/daml/generate-jwt-token.ts
  92. +54 −5 tools/docker/daml-all-in-one/Dockerfile
  93. +6 −1 tools/docker/daml-all-in-one/README.md
  94. +9 −2 tools/docker/daml-all-in-one/supervisord.conf
  95. +8,204 −12,058 yarn.lock
3 changes: 3 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -58,6 +58,7 @@
"Crpc",
"CSDE",
"csdetemplate",
"daio",
"daml",
"data",
"davecgh",
@@ -102,6 +103,7 @@
"HyperLedger",
"immalleable",
"imodule",
"ioutemplateid",
"ipaddress",
"ipfs",
"IPFSHTTP",
@@ -191,6 +193,7 @@
"Splug",
"Sprintf",
"stretchr",
"succesfully",
"supervisorctl",
"supervisord",
"svcs",
11 changes: 11 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
* @petermetz @takeutak @izuru0 @jagpreetsinghsasan @vramakrishna @sandeepnRES @outSH

packages/cactus-plugin-ccmodel-hephaestus @RafaelAPB
packages/cactus-plugin-satp-hermes @RafaelAPB
packages/cactus-plugin-bungee-hermes @RafaelAPB
examples/cactus-example-cbdc-bridging @RafaelAPB
examples/cactus-example-cbdc-bridging-backend @RafaelAPB
examples/cactus-example-cbdc-bridging-frontend @RafaelAPB
packages/cactus-plugin-satp-hermes @LordKubaya
packages/cactus-plugin-bungee-hermes @LordKubaya
examples/cactus-example-cbdc-bridging @LordKubaya
examples/cactus-example-cbdc-bridging-backend @LordKubaya
examples/cactus-example-cbdc-bridging-frontend @LordKubaya
packages/cactus-plugin-satp-hermes @AndreAugusto11
packages/cactus-plugin-bungee-hermes @AndreAugusto11
examples/cactus-example-cbdc-bridging @AndreAugusto11
examples/cactus-example-cbdc-bridging-backend @AndreAugusto11
examples/cactus-example-cbdc-bridging-frontend @AndreAugusto11
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "6.6.0"
}
}

96 changes: 96 additions & 0 deletions packages/cactus-plugin-ledger-connector-daml/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
{
"name": "@hyperledger/cactus-plugin-ledger-connector-daml",
"version": "2.0.0",
"description": "Allows Cactus nodes to connect to a DAML ledger.",
"keywords": [
"Hyperledger",
"Cactus",
"Integration",
"Blockchain",
"Distributed Ledger Technology"
],
"homepage": "https://github.com/hyperledger/cacti#readme",
"bugs": {
"url": "https://github.com/hyperledger/cacti/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperledger/cacti.git"
},
"license": "Apache-2.0",
"author": {
"name": "Hyperledger Cactus Contributors",
"email": "cactus@lists.hyperledger.org",
"url": "https://www.hyperledger.org/use/cacti"
},
"contributors": [
{
"name": "Please add yourself to the list of contributors",
"email": "your.name@example.com",
"url": "https://example.com"
},
{
"name": "Peter Somogyvari",
"email": "peter.somogyvari@accenture.com",
"url": "https://accenture.com"
}
],
"main": "dist/lib/main/typescript/index.js",
"module": "dist/lib/main/typescript/index.js",
"types": "dist/lib/main/typescript/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"codegen": "yarn run --top-level run-s 'codegen:*'",
"codegen:openapi": "npm run generate-sdk",
"generate-sdk": "run-p 'generate-sdk:*'",
"watch": "npm-watch",
"webpack": "npm-run-all webpack:dev",
"webpack:dev": "npm-run-all webpack:dev:node webpack:dev:web",
"webpack:dev:node": "webpack --env=dev --target=node --config ../../webpack.config.js",
"webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js"
},
"dependencies": {
"@hyperledger/cactus-common": "2.0.0",
"@hyperledger/cactus-core": "2.0.0",
"@hyperledger/cactus-core-api": "2.0.0",
"axios": "1.7.7",
"express": "4.21.0",
"express-openapi-validator": "5.2.0",
"http-errors-enhanced-cjs": "2.0.1",
"internal-ip": "6.2.0",
"joi": "17.13.3",
"node-fetch": "2.7.0",
"node-ssh": "13.1.0",
"prom-client": "15.1.3",
"rxjs": "7.8.1",
"temp": "0.9.4",
"typescript-optional": "2.0.1"
},
"devDependencies": {
"@hyperledger/cactus-test-tooling": "2.1.0",
"@types/body-parser": "1.19.4",
"@types/express": "5.0.0",
"@types/multer": "1.4.7",
"@types/temp": "0.9.1",
"@types/uuid": "10.0.0",
"body-parser": "1.20.2",
"express": "4.21.0",
"uuid": "10.0.0"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"publishConfig": {
"access": "public"
},
"watch": {
"codegen:openapi": {
"patterns": [
"./src/main/json/openapi.json"
]
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.travis.yml
README.md
api/openapi.yaml
api_default.go
client.go
configuration.go
go.mod
go.sum
model_create_iou_endpoint_request.go
model_create_iou_endpoint_request_payload.go
model_create_iou_endpoint_response.go
model_exercise_iou_endpoint_request.go
model_exercise_iou_endpoint_request_argument.go
model_exercise_iou_endpoint_response.go
model_get_parties_involved_endpoint_request.go
model_query_iou_endpoint_request.go
model_query_iou_endpoint_request_query.go
model_query_iou_endpoint_response.go
model_query_iou_endpoint_response_events_inner.go
model_query_iou_endpoint_response_events_inner_archived.go
model_query_raw_iou_endpoint_request.go
response.go
utils.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6.6.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: go

install:
- go get -d -v .

script:
- go build -v ./

Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
# Go API client for cactus-plugin-ledger-connector-daml

Can perform basic tasks on a DAML ledger

## Overview
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.

- API version: 2.0.0-rc.3
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen

## Installation

Install the following dependencies:

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

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

```golang
import cactus-plugin-ledger-connector-daml "github.com/hyperledger/cactus-plugin-ledger-connector-daml/src/main/go/generated/openapi/go-client"
```

To use a proxy, set the environment variable `HTTP_PROXY`:

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

## Configuration of Server URL

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

### Select Server Configuration

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

```golang
ctx := context.WithValue(context.Background(), cactus-plugin-ledger-connector-daml.ContextServerIndex, 1)
```

### Templated Server URL

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

```golang
ctx := context.WithValue(context.Background(), cactus-plugin-ledger-connector-daml.ContextServerVariables, map[string]string{
"basePath": "v2",
})
```

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

### URLs Configuration per Operation

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

```golang
ctx := context.WithValue(context.Background(), cactus-plugin-ledger-connector-daml.ContextOperationServerIndices, map[string]int{
"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), cactus-plugin-ledger-connector-daml.ContextOperationServerVariables, map[string]map[string]string{
"{classname}Service.{nickname}": {
"port": "8443",
},
})
```

## Documentation for API Endpoints

All URIs are relative to *http://localhost*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*DefaultApi* | [**CreateIou**](docs/DefaultApi.md#createiou) | **Post** /api/v1/plugins/@hyperledger/cactus-plugin-ledger-connector-daml/create-iou-endpoint | This method creates a simple iou countract
*DefaultApi* | [**ExerciseChoice**](docs/DefaultApi.md#exercisechoice) | **Post** /api/v1/plugins/@hyperledger/cactus-plugin-ledger-connector-daml/exercise-iou-endpoint | This method exercise choices(DAML term for function on contracts) for iou countract
*DefaultApi* | [**GetPartiesInvolved**](docs/DefaultApi.md#getpartiesinvolved) | **Get** /api/v1/plugins/@hyperledger/cactus-plugin-ledger-connector-daml/get-parties-involved-endpoint | This method queries all the parties that is included on IOU contract
*DefaultApi* | [**QueryContract**](docs/DefaultApi.md#querycontract) | **Post** /api/v1/plugins/@hyperledger/cactus-plugin-ledger-connector-daml/query-iou-endpoint | This method queries DAML contracts
*DefaultApi* | [**QueryRawContract**](docs/DefaultApi.md#queryrawcontract) | **Get** /api/v1/plugins/@hyperledger/cactus-plugin-ledger-connector-daml/query-raw-iou-endpoint | This method queries DAML contracts that does not include request body


## Documentation For Models

- [CreateIOUEndpointRequest](docs/CreateIOUEndpointRequest.md)
- [CreateIOUEndpointRequestPayload](docs/CreateIOUEndpointRequestPayload.md)
- [CreateIOUEndpointResponse](docs/CreateIOUEndpointResponse.md)
- [ExerciseIOUEndpointRequest](docs/ExerciseIOUEndpointRequest.md)
- [ExerciseIOUEndpointRequestArgument](docs/ExerciseIOUEndpointRequestArgument.md)
- [ExerciseIOUEndpointResponse](docs/ExerciseIOUEndpointResponse.md)
- [GetPartiesInvolvedEndpointRequest](docs/GetPartiesInvolvedEndpointRequest.md)
- [QueryIOUEndpointRequest](docs/QueryIOUEndpointRequest.md)
- [QueryIOUEndpointRequestQuery](docs/QueryIOUEndpointRequestQuery.md)
- [QueryIOUEndpointResponse](docs/QueryIOUEndpointResponse.md)
- [QueryIOUEndpointResponseEventsInner](docs/QueryIOUEndpointResponseEventsInner.md)
- [QueryIOUEndpointResponseEventsInnerArchived](docs/QueryIOUEndpointResponseEventsInnerArchived.md)
- [QueryRawIOUEndpointRequest](docs/QueryRawIOUEndpointRequest.md)


## Documentation For Authorization

Endpoints do not require authorization.


## Documentation for Utility Methods

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

* `PtrBool`
* `PtrInt`
* `PtrInt32`
* `PtrInt64`
* `PtrFloat`
* `PtrFloat32`
* `PtrFloat64`
* `PtrString`
* `PtrTime`

## Author



Loading