diff --git a/.github/workflows/agdb.yaml b/.github/workflows/agdb.yaml index fe9828f6..81a19c1c 100644 --- a/.github/workflows/agdb.yaml +++ b/.github/workflows/agdb.yaml @@ -12,7 +12,7 @@ jobs: agdb: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: components: rustfmt,clippy @@ -26,6 +26,6 @@ jobs: agdb_doctests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 - run: cargo test -p agdb --all-features --doc diff --git a/.github/workflows/agdb_api_php.yaml b/.github/workflows/agdb_api_php.yaml index bae4b577..5e8fdf51 100644 --- a/.github/workflows/agdb_api_php.yaml +++ b/.github/workflows/agdb_api_php.yaml @@ -15,7 +15,7 @@ jobs: run: working-directory: agdb_api/php steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: shivammathur/setup-php@v2 - run: npm i -g pnpm - run: pnpm i --frozen-lockfile @@ -25,7 +25,7 @@ jobs: - run: ./ci.sh analyse - uses: actions-rust-lang/setup-rust-toolchain@v1 - run: ./ci.sh coverage - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 if: always() with: name: coverage diff --git a/.github/workflows/agdb_api_typescript.yaml b/.github/workflows/agdb_api_typescript.yaml index 0ac71c35..4918f240 100644 --- a/.github/workflows/agdb_api_typescript.yaml +++ b/.github/workflows/agdb_api_typescript.yaml @@ -14,7 +14,7 @@ jobs: agdb_api_typescript: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: npm i -g pnpm - run: pnpm i --frozen-lockfile - run: pnpm run format:check --filter=@agnesoft/agdb_api @@ -22,7 +22,7 @@ jobs: - run: pnpm run build --filter=@agnesoft/agdb_api - uses: actions-rust-lang/setup-rust-toolchain@v1 - run: pnpm run test --filter=@agnesoft/agdb_api - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 if: always() with: name: coverage diff --git a/.github/workflows/agdb_benchmarks.yaml b/.github/workflows/agdb_benchmarks.yaml index 4c882c3d..7aeba128 100644 --- a/.github/workflows/agdb_benchmarks.yaml +++ b/.github/workflows/agdb_benchmarks.yaml @@ -13,7 +13,7 @@ jobs: agdb_benchmarks: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: components: rustfmt,clippy diff --git a/.github/workflows/agdb_ci.yaml b/.github/workflows/agdb_ci.yaml index a27774e3..bd002da4 100644 --- a/.github/workflows/agdb_ci.yaml +++ b/.github/workflows/agdb_ci.yaml @@ -14,7 +14,7 @@ jobs: agdb_ci: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - uses: actions-rust-lang/setup-rust-toolchain@v1 diff --git a/.github/workflows/agdb_server.yaml b/.github/workflows/agdb_server.yaml index c8cff7ac..1b256c0c 100644 --- a/.github/workflows/agdb_server.yaml +++ b/.github/workflows/agdb_server.yaml @@ -14,7 +14,7 @@ jobs: agdb_server: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: components: rustfmt,clippy @@ -28,7 +28,7 @@ jobs: agdb_server_image: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: docker build --pull -t agnesoft/agdb:dev -f agdb_server/containerfile . - run: docker compose -f agdb_server/compose.yaml up --wait - run: sleep 5 diff --git a/.github/workflows/agdb_studio.yaml b/.github/workflows/agdb_studio.yaml index 585f1cb5..9e12cf60 100644 --- a/.github/workflows/agdb_studio.yaml +++ b/.github/workflows/agdb_studio.yaml @@ -15,7 +15,7 @@ jobs: agdb_studio: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: npm i -g pnpm - run: pnpm i --frozen-lockfile - run: pnpm run format:check --filter=./agdb_studio/**/* @@ -23,7 +23,7 @@ jobs: - run: pnpm run lint:check --filter=./agdb_studio/**/* - run: pnpm run type-check --filter=./agdb_studio/**/* - run: pnpm run test --filter=./agdb_studio/**/* - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 if: always() with: name: coverage @@ -31,7 +31,7 @@ jobs: retention-days: 30 - run: pnpm exec playwright install - run: pnpm run test:e2e --filter=agdb_studio - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 if: always() with: name: e2e diff --git a/.github/workflows/agdb_web.yaml b/.github/workflows/agdb_web.yaml index 4e9c1daf..6b2a6248 100644 --- a/.github/workflows/agdb_web.yaml +++ b/.github/workflows/agdb_web.yaml @@ -14,14 +14,14 @@ jobs: agdb_web: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: npm i -g pnpm - run: pnpm i --frozen-lockfile - run: pnpm run format:check --filter=agdb_web - run: pnpm run lint:check --filter=agdb_web - run: pnpm run build --filter=agdb_web - run: pnpm run test --filter=agdb_web - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 if: always() with: name: coverage @@ -29,7 +29,7 @@ jobs: retention-days: 30 - run: pnpm exec playwright install - run: pnpm run test:e2e --filter=agdb_web - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 if: always() with: name: e2e diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml index 56ebc9db..53cbcde2 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -22,7 +22,7 @@ jobs: codecov: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 - uses: taiki-e/install-action@cargo-llvm-cov - uses: shivammathur/setup-php@v2 @@ -35,6 +35,6 @@ jobs: - run: composer install - run: ./ci.sh coverage working-directory: agdb_api/php - - uses: codecov/codecov-action@v5 + - uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/examples.yaml b/.github/workflows/examples.yaml index 1b04dab1..ecfad0d1 100644 --- a/.github/workflows/examples.yaml +++ b/.github/workflows/examples.yaml @@ -18,7 +18,7 @@ jobs: agdb_examples_rust: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: components: rustfmt,clippy @@ -32,7 +32,7 @@ jobs: run: working-directory: examples/server_client_typescript steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: npm i -g pnpm - run: pnpm i --frozen-lockfile && pnpm run build working-directory: agdb_api/typescript @@ -46,7 +46,7 @@ jobs: run: working-directory: examples/server_client_php steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: npm i -g pnpm - run: pnpm i --frozen-lockfile - run: pnpm exec prettier --plugin '@prettier/plugin-php' --check src diff --git a/.github/workflows/pr_title.yaml b/.github/workflows/pr_title.yaml index dcc0f194..ebdc84c1 100644 --- a/.github/workflows/pr_title.yaml +++ b/.github/workflows/pr_title.yaml @@ -13,7 +13,7 @@ jobs: title_check: runs-on: ubuntu-latest steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v9 with: script: | const regex = RegExp("^\\[(api|ci|db|docs|server|studio|tests|web)\\] .+ #[\\d]+$") diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5c3fd05e..586693a8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,7 +18,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 - run: npm i -g pnpm - run: cargo build -p agdb_derive -p agdb -p agdb_api -p agdb_server --all-features -r @@ -26,7 +26,7 @@ jobs: dev_image: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: docker build --pull -t agnesoft/agdb:dev -f agdb_server/containerfile . - run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u agnesoft --password-stdin - run: docker push agnesoft/agdb:dev @@ -39,7 +39,7 @@ jobs: outputs: new_version: ${{ steps.new_version.outputs.new_version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - id: new_version @@ -52,7 +52,7 @@ jobs: needs: [build, new_version] if: needs.new_version.outputs.new_version != '' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: | git config user.name "${GITHUB_ACTOR}" git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" @@ -68,7 +68,7 @@ jobs: needs: [release, new_version] if: needs.new_version.outputs.new_version != '' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 - run: npm i -g pnpm - run: | @@ -87,8 +87,8 @@ jobs: id-token: write # Required for OIDC contents: read steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v4 + - uses: actions/checkout@v6 + - uses: pnpm/action-setup@v6 - uses: actions/setup-node@v6 with: node-version: "24" @@ -103,7 +103,7 @@ jobs: needs: [release, new_version] if: needs.new_version.outputs.new_version != '' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: docker build -t agnesoft/agdb:latest -f agdb_server/containerfile . - run: docker tag agnesoft/agdb:latest agnesoft/agdb:${{ needs.new_version.outputs.new_version }} - run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u agnesoft --password-stdin diff --git a/agdb_api/php/README.md b/agdb_api/php/README.md index 98482630..fb5e8bb5 100644 --- a/agdb_api/php/README.md +++ b/agdb_api/php/README.md @@ -268,5 +268,5 @@ This PHP package is automatically generated by the [OpenAPI Generator](https://o - API version: `0.12.10` - Package version: `0.7.2` - - Generator version: `7.20.0` + - Generator version: `7.21.0` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` diff --git a/agdb_api/php/docs/Model/AdminStatus.md b/agdb_api/php/docs/Model/AdminStatus.md index 740b85a4..d9861c86 100644 --- a/agdb_api/php/docs/Model/AdminStatus.md +++ b/agdb_api/php/docs/Model/AdminStatus.md @@ -1,4 +1,4 @@ -# # AdminStatus +# AdminStatus ## Properties diff --git a/agdb_api/php/docs/Model/ChangePassword.md b/agdb_api/php/docs/Model/ChangePassword.md index 303d974b..59b8c9ea 100644 --- a/agdb_api/php/docs/Model/ChangePassword.md +++ b/agdb_api/php/docs/Model/ChangePassword.md @@ -1,4 +1,4 @@ -# # ChangePassword +# ChangePassword ## Properties diff --git a/agdb_api/php/docs/Model/ClusterStatus.md b/agdb_api/php/docs/Model/ClusterStatus.md index 4dc336ba..99ab5201 100644 --- a/agdb_api/php/docs/Model/ClusterStatus.md +++ b/agdb_api/php/docs/Model/ClusterStatus.md @@ -1,4 +1,4 @@ -# # ClusterStatus +# ClusterStatus ## Properties diff --git a/agdb_api/php/docs/Model/Comparison.md b/agdb_api/php/docs/Model/Comparison.md index 51bf6b48..89061726 100644 --- a/agdb_api/php/docs/Model/Comparison.md +++ b/agdb_api/php/docs/Model/Comparison.md @@ -1,4 +1,4 @@ -# # Comparison +# Comparison ## Properties diff --git a/agdb_api/php/docs/Model/ComparisonOneOf.md b/agdb_api/php/docs/Model/ComparisonOneOf.md index 0ed7ff94..8bf817c0 100644 --- a/agdb_api/php/docs/Model/ComparisonOneOf.md +++ b/agdb_api/php/docs/Model/ComparisonOneOf.md @@ -1,4 +1,4 @@ -# # ComparisonOneOf +# ComparisonOneOf ## Properties diff --git a/agdb_api/php/docs/Model/ComparisonOneOf1.md b/agdb_api/php/docs/Model/ComparisonOneOf1.md index 2bc0e4fc..bce9b8fb 100644 --- a/agdb_api/php/docs/Model/ComparisonOneOf1.md +++ b/agdb_api/php/docs/Model/ComparisonOneOf1.md @@ -1,4 +1,4 @@ -# # ComparisonOneOf1 +# ComparisonOneOf1 ## Properties diff --git a/agdb_api/php/docs/Model/ComparisonOneOf2.md b/agdb_api/php/docs/Model/ComparisonOneOf2.md index dac4aca2..06aaf390 100644 --- a/agdb_api/php/docs/Model/ComparisonOneOf2.md +++ b/agdb_api/php/docs/Model/ComparisonOneOf2.md @@ -1,4 +1,4 @@ -# # ComparisonOneOf2 +# ComparisonOneOf2 ## Properties diff --git a/agdb_api/php/docs/Model/ComparisonOneOf3.md b/agdb_api/php/docs/Model/ComparisonOneOf3.md index 93874431..17d733ab 100644 --- a/agdb_api/php/docs/Model/ComparisonOneOf3.md +++ b/agdb_api/php/docs/Model/ComparisonOneOf3.md @@ -1,4 +1,4 @@ -# # ComparisonOneOf3 +# ComparisonOneOf3 ## Properties diff --git a/agdb_api/php/docs/Model/ComparisonOneOf4.md b/agdb_api/php/docs/Model/ComparisonOneOf4.md index cd9e0761..bbfe19d1 100644 --- a/agdb_api/php/docs/Model/ComparisonOneOf4.md +++ b/agdb_api/php/docs/Model/ComparisonOneOf4.md @@ -1,4 +1,4 @@ -# # ComparisonOneOf4 +# ComparisonOneOf4 ## Properties diff --git a/agdb_api/php/docs/Model/ComparisonOneOf5.md b/agdb_api/php/docs/Model/ComparisonOneOf5.md index 05b8997f..fdb810f2 100644 --- a/agdb_api/php/docs/Model/ComparisonOneOf5.md +++ b/agdb_api/php/docs/Model/ComparisonOneOf5.md @@ -1,4 +1,4 @@ -# # ComparisonOneOf5 +# ComparisonOneOf5 ## Properties diff --git a/agdb_api/php/docs/Model/ComparisonOneOf6.md b/agdb_api/php/docs/Model/ComparisonOneOf6.md index 81a8408a..413faa23 100644 --- a/agdb_api/php/docs/Model/ComparisonOneOf6.md +++ b/agdb_api/php/docs/Model/ComparisonOneOf6.md @@ -1,4 +1,4 @@ -# # ComparisonOneOf6 +# ComparisonOneOf6 ## Properties diff --git a/agdb_api/php/docs/Model/ComparisonOneOf7.md b/agdb_api/php/docs/Model/ComparisonOneOf7.md index a67a4c71..5e290b28 100644 --- a/agdb_api/php/docs/Model/ComparisonOneOf7.md +++ b/agdb_api/php/docs/Model/ComparisonOneOf7.md @@ -1,4 +1,4 @@ -# # ComparisonOneOf7 +# ComparisonOneOf7 ## Properties diff --git a/agdb_api/php/docs/Model/ComparisonOneOf8.md b/agdb_api/php/docs/Model/ComparisonOneOf8.md index f4f373ff..0b356483 100644 --- a/agdb_api/php/docs/Model/ComparisonOneOf8.md +++ b/agdb_api/php/docs/Model/ComparisonOneOf8.md @@ -1,4 +1,4 @@ -# # ComparisonOneOf8 +# ComparisonOneOf8 ## Properties diff --git a/agdb_api/php/docs/Model/CountComparison.md b/agdb_api/php/docs/Model/CountComparison.md index 3d764d53..9c35c702 100644 --- a/agdb_api/php/docs/Model/CountComparison.md +++ b/agdb_api/php/docs/Model/CountComparison.md @@ -1,4 +1,4 @@ -# # CountComparison +# CountComparison ## Properties diff --git a/agdb_api/php/docs/Model/CountComparisonOneOf.md b/agdb_api/php/docs/Model/CountComparisonOneOf.md index 1c54e5b7..de77abb9 100644 --- a/agdb_api/php/docs/Model/CountComparisonOneOf.md +++ b/agdb_api/php/docs/Model/CountComparisonOneOf.md @@ -1,4 +1,4 @@ -# # CountComparisonOneOf +# CountComparisonOneOf ## Properties diff --git a/agdb_api/php/docs/Model/CountComparisonOneOf1.md b/agdb_api/php/docs/Model/CountComparisonOneOf1.md index f3a5dcb8..bf6f7577 100644 --- a/agdb_api/php/docs/Model/CountComparisonOneOf1.md +++ b/agdb_api/php/docs/Model/CountComparisonOneOf1.md @@ -1,4 +1,4 @@ -# # CountComparisonOneOf1 +# CountComparisonOneOf1 ## Properties diff --git a/agdb_api/php/docs/Model/CountComparisonOneOf2.md b/agdb_api/php/docs/Model/CountComparisonOneOf2.md index f441cdae..d86f35fa 100644 --- a/agdb_api/php/docs/Model/CountComparisonOneOf2.md +++ b/agdb_api/php/docs/Model/CountComparisonOneOf2.md @@ -1,4 +1,4 @@ -# # CountComparisonOneOf2 +# CountComparisonOneOf2 ## Properties diff --git a/agdb_api/php/docs/Model/CountComparisonOneOf3.md b/agdb_api/php/docs/Model/CountComparisonOneOf3.md index 27511458..b3bf3af5 100644 --- a/agdb_api/php/docs/Model/CountComparisonOneOf3.md +++ b/agdb_api/php/docs/Model/CountComparisonOneOf3.md @@ -1,4 +1,4 @@ -# # CountComparisonOneOf3 +# CountComparisonOneOf3 ## Properties diff --git a/agdb_api/php/docs/Model/CountComparisonOneOf4.md b/agdb_api/php/docs/Model/CountComparisonOneOf4.md index fa872bcb..bba1a33c 100644 --- a/agdb_api/php/docs/Model/CountComparisonOneOf4.md +++ b/agdb_api/php/docs/Model/CountComparisonOneOf4.md @@ -1,4 +1,4 @@ -# # CountComparisonOneOf4 +# CountComparisonOneOf4 ## Properties diff --git a/agdb_api/php/docs/Model/CountComparisonOneOf5.md b/agdb_api/php/docs/Model/CountComparisonOneOf5.md index 5b6e9da6..5dcb2586 100644 --- a/agdb_api/php/docs/Model/CountComparisonOneOf5.md +++ b/agdb_api/php/docs/Model/CountComparisonOneOf5.md @@ -1,4 +1,4 @@ -# # CountComparisonOneOf5 +# CountComparisonOneOf5 ## Properties diff --git a/agdb_api/php/docs/Model/DbElement.md b/agdb_api/php/docs/Model/DbElement.md index f4c54f5c..c54bf897 100644 --- a/agdb_api/php/docs/Model/DbElement.md +++ b/agdb_api/php/docs/Model/DbElement.md @@ -1,4 +1,4 @@ -# # DbElement +# DbElement ## Properties diff --git a/agdb_api/php/docs/Model/DbKeyOrder.md b/agdb_api/php/docs/Model/DbKeyOrder.md index 0e6959dd..cc6ed185 100644 --- a/agdb_api/php/docs/Model/DbKeyOrder.md +++ b/agdb_api/php/docs/Model/DbKeyOrder.md @@ -1,4 +1,4 @@ -# # DbKeyOrder +# DbKeyOrder ## Properties diff --git a/agdb_api/php/docs/Model/DbKeyOrderOneOf.md b/agdb_api/php/docs/Model/DbKeyOrderOneOf.md index 98d58d67..fa643122 100644 --- a/agdb_api/php/docs/Model/DbKeyOrderOneOf.md +++ b/agdb_api/php/docs/Model/DbKeyOrderOneOf.md @@ -1,4 +1,4 @@ -# # DbKeyOrderOneOf +# DbKeyOrderOneOf ## Properties diff --git a/agdb_api/php/docs/Model/DbKeyOrderOneOf1.md b/agdb_api/php/docs/Model/DbKeyOrderOneOf1.md index 65d5145d..bc7520be 100644 --- a/agdb_api/php/docs/Model/DbKeyOrderOneOf1.md +++ b/agdb_api/php/docs/Model/DbKeyOrderOneOf1.md @@ -1,4 +1,4 @@ -# # DbKeyOrderOneOf1 +# DbKeyOrderOneOf1 ## Properties diff --git a/agdb_api/php/docs/Model/DbKeyValue.md b/agdb_api/php/docs/Model/DbKeyValue.md index bf63af8b..efff5060 100644 --- a/agdb_api/php/docs/Model/DbKeyValue.md +++ b/agdb_api/php/docs/Model/DbKeyValue.md @@ -1,4 +1,4 @@ -# # DbKeyValue +# DbKeyValue ## Properties diff --git a/agdb_api/php/docs/Model/DbKind.md b/agdb_api/php/docs/Model/DbKind.md index ccb0f8f2..b8ec82fc 100644 --- a/agdb_api/php/docs/Model/DbKind.md +++ b/agdb_api/php/docs/Model/DbKind.md @@ -1,4 +1,4 @@ -# # DbKind +# DbKind ## Properties diff --git a/agdb_api/php/docs/Model/DbResource.md b/agdb_api/php/docs/Model/DbResource.md index f069b646..1ae3323a 100644 --- a/agdb_api/php/docs/Model/DbResource.md +++ b/agdb_api/php/docs/Model/DbResource.md @@ -1,4 +1,4 @@ -# # DbResource +# DbResource ## Properties diff --git a/agdb_api/php/docs/Model/DbTypeParam.md b/agdb_api/php/docs/Model/DbTypeParam.md index ba33e6c2..a7092b9a 100644 --- a/agdb_api/php/docs/Model/DbTypeParam.md +++ b/agdb_api/php/docs/Model/DbTypeParam.md @@ -1,4 +1,4 @@ -# # DbTypeParam +# DbTypeParam ## Properties diff --git a/agdb_api/php/docs/Model/DbUser.md b/agdb_api/php/docs/Model/DbUser.md index ec740b93..d2f737e4 100644 --- a/agdb_api/php/docs/Model/DbUser.md +++ b/agdb_api/php/docs/Model/DbUser.md @@ -1,4 +1,4 @@ -# # DbUser +# DbUser ## Properties diff --git a/agdb_api/php/docs/Model/DbUserRole.md b/agdb_api/php/docs/Model/DbUserRole.md index 6a77a73a..725d7dc8 100644 --- a/agdb_api/php/docs/Model/DbUserRole.md +++ b/agdb_api/php/docs/Model/DbUserRole.md @@ -1,4 +1,4 @@ -# # DbUserRole +# DbUserRole ## Properties diff --git a/agdb_api/php/docs/Model/DbUserRoleParam.md b/agdb_api/php/docs/Model/DbUserRoleParam.md index 315704aa..0f31aa19 100644 --- a/agdb_api/php/docs/Model/DbUserRoleParam.md +++ b/agdb_api/php/docs/Model/DbUserRoleParam.md @@ -1,4 +1,4 @@ -# # DbUserRoleParam +# DbUserRoleParam ## Properties diff --git a/agdb_api/php/docs/Model/DbValue.md b/agdb_api/php/docs/Model/DbValue.md index 86b6cb0e..af65775d 100644 --- a/agdb_api/php/docs/Model/DbValue.md +++ b/agdb_api/php/docs/Model/DbValue.md @@ -1,4 +1,4 @@ -# # DbValue +# DbValue ## Properties diff --git a/agdb_api/php/docs/Model/DbValueOneOf.md b/agdb_api/php/docs/Model/DbValueOneOf.md index d20e7ef9..f01e0dc5 100644 --- a/agdb_api/php/docs/Model/DbValueOneOf.md +++ b/agdb_api/php/docs/Model/DbValueOneOf.md @@ -1,4 +1,4 @@ -# # DbValueOneOf +# DbValueOneOf ## Properties diff --git a/agdb_api/php/docs/Model/DbValueOneOf1.md b/agdb_api/php/docs/Model/DbValueOneOf1.md index 3041c3d4..3431cd74 100644 --- a/agdb_api/php/docs/Model/DbValueOneOf1.md +++ b/agdb_api/php/docs/Model/DbValueOneOf1.md @@ -1,4 +1,4 @@ -# # DbValueOneOf1 +# DbValueOneOf1 ## Properties diff --git a/agdb_api/php/docs/Model/DbValueOneOf2.md b/agdb_api/php/docs/Model/DbValueOneOf2.md index 7015fa78..7f2e3105 100644 --- a/agdb_api/php/docs/Model/DbValueOneOf2.md +++ b/agdb_api/php/docs/Model/DbValueOneOf2.md @@ -1,4 +1,4 @@ -# # DbValueOneOf2 +# DbValueOneOf2 ## Properties diff --git a/agdb_api/php/docs/Model/DbValueOneOf3.md b/agdb_api/php/docs/Model/DbValueOneOf3.md index 54de7c30..94c2e496 100644 --- a/agdb_api/php/docs/Model/DbValueOneOf3.md +++ b/agdb_api/php/docs/Model/DbValueOneOf3.md @@ -1,4 +1,4 @@ -# # DbValueOneOf3 +# DbValueOneOf3 ## Properties diff --git a/agdb_api/php/docs/Model/DbValueOneOf4.md b/agdb_api/php/docs/Model/DbValueOneOf4.md index 9bcb40bd..409228e6 100644 --- a/agdb_api/php/docs/Model/DbValueOneOf4.md +++ b/agdb_api/php/docs/Model/DbValueOneOf4.md @@ -1,4 +1,4 @@ -# # DbValueOneOf4 +# DbValueOneOf4 ## Properties diff --git a/agdb_api/php/docs/Model/DbValueOneOf5.md b/agdb_api/php/docs/Model/DbValueOneOf5.md index c54a4509..cae0fe24 100644 --- a/agdb_api/php/docs/Model/DbValueOneOf5.md +++ b/agdb_api/php/docs/Model/DbValueOneOf5.md @@ -1,4 +1,4 @@ -# # DbValueOneOf5 +# DbValueOneOf5 ## Properties diff --git a/agdb_api/php/docs/Model/DbValueOneOf6.md b/agdb_api/php/docs/Model/DbValueOneOf6.md index 04c8c49d..0515a978 100644 --- a/agdb_api/php/docs/Model/DbValueOneOf6.md +++ b/agdb_api/php/docs/Model/DbValueOneOf6.md @@ -1,4 +1,4 @@ -# # DbValueOneOf6 +# DbValueOneOf6 ## Properties diff --git a/agdb_api/php/docs/Model/DbValueOneOf7.md b/agdb_api/php/docs/Model/DbValueOneOf7.md index 02a41a37..c37d47f8 100644 --- a/agdb_api/php/docs/Model/DbValueOneOf7.md +++ b/agdb_api/php/docs/Model/DbValueOneOf7.md @@ -1,4 +1,4 @@ -# # DbValueOneOf7 +# DbValueOneOf7 ## Properties diff --git a/agdb_api/php/docs/Model/DbValueOneOf8.md b/agdb_api/php/docs/Model/DbValueOneOf8.md index 6d3cfe0f..0df86efc 100644 --- a/agdb_api/php/docs/Model/DbValueOneOf8.md +++ b/agdb_api/php/docs/Model/DbValueOneOf8.md @@ -1,4 +1,4 @@ -# # DbValueOneOf8 +# DbValueOneOf8 ## Properties diff --git a/agdb_api/php/docs/Model/InsertAliasesQuery.md b/agdb_api/php/docs/Model/InsertAliasesQuery.md index e24c2c23..553fab72 100644 --- a/agdb_api/php/docs/Model/InsertAliasesQuery.md +++ b/agdb_api/php/docs/Model/InsertAliasesQuery.md @@ -1,4 +1,4 @@ -# # InsertAliasesQuery +# InsertAliasesQuery ## Properties diff --git a/agdb_api/php/docs/Model/InsertEdgesQuery.md b/agdb_api/php/docs/Model/InsertEdgesQuery.md index ccd22c9f..9b1e1300 100644 --- a/agdb_api/php/docs/Model/InsertEdgesQuery.md +++ b/agdb_api/php/docs/Model/InsertEdgesQuery.md @@ -1,4 +1,4 @@ -# # InsertEdgesQuery +# InsertEdgesQuery ## Properties diff --git a/agdb_api/php/docs/Model/InsertIndexQuery.md b/agdb_api/php/docs/Model/InsertIndexQuery.md index d4a9301c..80fe37e0 100644 --- a/agdb_api/php/docs/Model/InsertIndexQuery.md +++ b/agdb_api/php/docs/Model/InsertIndexQuery.md @@ -1,4 +1,4 @@ -# # InsertIndexQuery +# InsertIndexQuery ## Properties diff --git a/agdb_api/php/docs/Model/InsertNodesQuery.md b/agdb_api/php/docs/Model/InsertNodesQuery.md index e818acbb..02ad59e4 100644 --- a/agdb_api/php/docs/Model/InsertNodesQuery.md +++ b/agdb_api/php/docs/Model/InsertNodesQuery.md @@ -1,4 +1,4 @@ -# # InsertNodesQuery +# InsertNodesQuery ## Properties diff --git a/agdb_api/php/docs/Model/InsertValuesQuery.md b/agdb_api/php/docs/Model/InsertValuesQuery.md index 9c191e0c..ec454d4e 100644 --- a/agdb_api/php/docs/Model/InsertValuesQuery.md +++ b/agdb_api/php/docs/Model/InsertValuesQuery.md @@ -1,4 +1,4 @@ -# # InsertValuesQuery +# InsertValuesQuery ## Properties diff --git a/agdb_api/php/docs/Model/KeyValueComparison.md b/agdb_api/php/docs/Model/KeyValueComparison.md index 7a812842..25ae2a81 100644 --- a/agdb_api/php/docs/Model/KeyValueComparison.md +++ b/agdb_api/php/docs/Model/KeyValueComparison.md @@ -1,4 +1,4 @@ -# # KeyValueComparison +# KeyValueComparison ## Properties diff --git a/agdb_api/php/docs/Model/LogLevelFilter.md b/agdb_api/php/docs/Model/LogLevelFilter.md index 69c4b3cb..6b9625f8 100644 --- a/agdb_api/php/docs/Model/LogLevelFilter.md +++ b/agdb_api/php/docs/Model/LogLevelFilter.md @@ -1,4 +1,4 @@ -# # LogLevelFilter +# LogLevelFilter ## Properties diff --git a/agdb_api/php/docs/Model/OptimizeParam.md b/agdb_api/php/docs/Model/OptimizeParam.md index a26bffef..b245c5d9 100644 --- a/agdb_api/php/docs/Model/OptimizeParam.md +++ b/agdb_api/php/docs/Model/OptimizeParam.md @@ -1,4 +1,4 @@ -# # OptimizeParam +# OptimizeParam ## Properties diff --git a/agdb_api/php/docs/Model/QueryAudit.md b/agdb_api/php/docs/Model/QueryAudit.md index f720f752..1d96e09a 100644 --- a/agdb_api/php/docs/Model/QueryAudit.md +++ b/agdb_api/php/docs/Model/QueryAudit.md @@ -1,4 +1,4 @@ -# # QueryAudit +# QueryAudit ## Properties diff --git a/agdb_api/php/docs/Model/QueryCondition.md b/agdb_api/php/docs/Model/QueryCondition.md index e33312de..56269b13 100644 --- a/agdb_api/php/docs/Model/QueryCondition.md +++ b/agdb_api/php/docs/Model/QueryCondition.md @@ -1,4 +1,4 @@ -# # QueryCondition +# QueryCondition ## Properties diff --git a/agdb_api/php/docs/Model/QueryConditionData.md b/agdb_api/php/docs/Model/QueryConditionData.md index 674a1296..d53faffa 100644 --- a/agdb_api/php/docs/Model/QueryConditionData.md +++ b/agdb_api/php/docs/Model/QueryConditionData.md @@ -1,4 +1,4 @@ -# # QueryConditionData +# QueryConditionData ## Properties diff --git a/agdb_api/php/docs/Model/QueryConditionDataOneOf.md b/agdb_api/php/docs/Model/QueryConditionDataOneOf.md index b28919f5..3b953c87 100644 --- a/agdb_api/php/docs/Model/QueryConditionDataOneOf.md +++ b/agdb_api/php/docs/Model/QueryConditionDataOneOf.md @@ -1,4 +1,4 @@ -# # QueryConditionDataOneOf +# QueryConditionDataOneOf ## Properties diff --git a/agdb_api/php/docs/Model/QueryConditionDataOneOf1.md b/agdb_api/php/docs/Model/QueryConditionDataOneOf1.md index 63896369..745e8578 100644 --- a/agdb_api/php/docs/Model/QueryConditionDataOneOf1.md +++ b/agdb_api/php/docs/Model/QueryConditionDataOneOf1.md @@ -1,4 +1,4 @@ -# # QueryConditionDataOneOf1 +# QueryConditionDataOneOf1 ## Properties diff --git a/agdb_api/php/docs/Model/QueryConditionDataOneOf2.md b/agdb_api/php/docs/Model/QueryConditionDataOneOf2.md index 9b357431..9b8db237 100644 --- a/agdb_api/php/docs/Model/QueryConditionDataOneOf2.md +++ b/agdb_api/php/docs/Model/QueryConditionDataOneOf2.md @@ -1,4 +1,4 @@ -# # QueryConditionDataOneOf2 +# QueryConditionDataOneOf2 ## Properties diff --git a/agdb_api/php/docs/Model/QueryConditionDataOneOf3.md b/agdb_api/php/docs/Model/QueryConditionDataOneOf3.md index 4e702664..70b9dbbd 100644 --- a/agdb_api/php/docs/Model/QueryConditionDataOneOf3.md +++ b/agdb_api/php/docs/Model/QueryConditionDataOneOf3.md @@ -1,4 +1,4 @@ -# # QueryConditionDataOneOf3 +# QueryConditionDataOneOf3 ## Properties diff --git a/agdb_api/php/docs/Model/QueryConditionDataOneOf4.md b/agdb_api/php/docs/Model/QueryConditionDataOneOf4.md index 899dd7ea..bf535c66 100644 --- a/agdb_api/php/docs/Model/QueryConditionDataOneOf4.md +++ b/agdb_api/php/docs/Model/QueryConditionDataOneOf4.md @@ -1,4 +1,4 @@ -# # QueryConditionDataOneOf4 +# QueryConditionDataOneOf4 ## Properties diff --git a/agdb_api/php/docs/Model/QueryConditionDataOneOf5.md b/agdb_api/php/docs/Model/QueryConditionDataOneOf5.md index 852c4b70..74e62cea 100644 --- a/agdb_api/php/docs/Model/QueryConditionDataOneOf5.md +++ b/agdb_api/php/docs/Model/QueryConditionDataOneOf5.md @@ -1,4 +1,4 @@ -# # QueryConditionDataOneOf5 +# QueryConditionDataOneOf5 ## Properties diff --git a/agdb_api/php/docs/Model/QueryConditionDataOneOf6.md b/agdb_api/php/docs/Model/QueryConditionDataOneOf6.md index ad7ba7bb..e7958cb1 100644 --- a/agdb_api/php/docs/Model/QueryConditionDataOneOf6.md +++ b/agdb_api/php/docs/Model/QueryConditionDataOneOf6.md @@ -1,4 +1,4 @@ -# # QueryConditionDataOneOf6 +# QueryConditionDataOneOf6 ## Properties diff --git a/agdb_api/php/docs/Model/QueryConditionDataOneOf7.md b/agdb_api/php/docs/Model/QueryConditionDataOneOf7.md index 702fff07..3dae3f5d 100644 --- a/agdb_api/php/docs/Model/QueryConditionDataOneOf7.md +++ b/agdb_api/php/docs/Model/QueryConditionDataOneOf7.md @@ -1,4 +1,4 @@ -# # QueryConditionDataOneOf7 +# QueryConditionDataOneOf7 ## Properties diff --git a/agdb_api/php/docs/Model/QueryConditionLogic.md b/agdb_api/php/docs/Model/QueryConditionLogic.md index 09262f08..409b8c97 100644 --- a/agdb_api/php/docs/Model/QueryConditionLogic.md +++ b/agdb_api/php/docs/Model/QueryConditionLogic.md @@ -1,4 +1,4 @@ -# # QueryConditionLogic +# QueryConditionLogic ## Properties diff --git a/agdb_api/php/docs/Model/QueryConditionModifier.md b/agdb_api/php/docs/Model/QueryConditionModifier.md index 89857ecf..adf40955 100644 --- a/agdb_api/php/docs/Model/QueryConditionModifier.md +++ b/agdb_api/php/docs/Model/QueryConditionModifier.md @@ -1,4 +1,4 @@ -# # QueryConditionModifier +# QueryConditionModifier ## Properties diff --git a/agdb_api/php/docs/Model/QueryId.md b/agdb_api/php/docs/Model/QueryId.md index fc92ca18..08ad38e9 100644 --- a/agdb_api/php/docs/Model/QueryId.md +++ b/agdb_api/php/docs/Model/QueryId.md @@ -1,4 +1,4 @@ -# # QueryId +# QueryId ## Properties diff --git a/agdb_api/php/docs/Model/QueryIdOneOf.md b/agdb_api/php/docs/Model/QueryIdOneOf.md index 196449bf..b5db07ce 100644 --- a/agdb_api/php/docs/Model/QueryIdOneOf.md +++ b/agdb_api/php/docs/Model/QueryIdOneOf.md @@ -1,4 +1,4 @@ -# # QueryIdOneOf +# QueryIdOneOf ## Properties diff --git a/agdb_api/php/docs/Model/QueryIdOneOf1.md b/agdb_api/php/docs/Model/QueryIdOneOf1.md index 23b97a7b..24b297dc 100644 --- a/agdb_api/php/docs/Model/QueryIdOneOf1.md +++ b/agdb_api/php/docs/Model/QueryIdOneOf1.md @@ -1,4 +1,4 @@ -# # QueryIdOneOf1 +# QueryIdOneOf1 ## Properties diff --git a/agdb_api/php/docs/Model/QueryIds.md b/agdb_api/php/docs/Model/QueryIds.md index cd1218b0..9b249116 100644 --- a/agdb_api/php/docs/Model/QueryIds.md +++ b/agdb_api/php/docs/Model/QueryIds.md @@ -1,4 +1,4 @@ -# # QueryIds +# QueryIds ## Properties diff --git a/agdb_api/php/docs/Model/QueryIdsOneOf.md b/agdb_api/php/docs/Model/QueryIdsOneOf.md index a882f791..a8ecc76e 100644 --- a/agdb_api/php/docs/Model/QueryIdsOneOf.md +++ b/agdb_api/php/docs/Model/QueryIdsOneOf.md @@ -1,4 +1,4 @@ -# # QueryIdsOneOf +# QueryIdsOneOf ## Properties diff --git a/agdb_api/php/docs/Model/QueryIdsOneOf1.md b/agdb_api/php/docs/Model/QueryIdsOneOf1.md index caf1125f..906da38d 100644 --- a/agdb_api/php/docs/Model/QueryIdsOneOf1.md +++ b/agdb_api/php/docs/Model/QueryIdsOneOf1.md @@ -1,4 +1,4 @@ -# # QueryIdsOneOf1 +# QueryIdsOneOf1 ## Properties diff --git a/agdb_api/php/docs/Model/QueryResult.md b/agdb_api/php/docs/Model/QueryResult.md index 3ff74508..f65b3d95 100644 --- a/agdb_api/php/docs/Model/QueryResult.md +++ b/agdb_api/php/docs/Model/QueryResult.md @@ -1,4 +1,4 @@ -# # QueryResult +# QueryResult ## Properties diff --git a/agdb_api/php/docs/Model/QueryType.md b/agdb_api/php/docs/Model/QueryType.md index 2fb713d3..c3ffd227 100644 --- a/agdb_api/php/docs/Model/QueryType.md +++ b/agdb_api/php/docs/Model/QueryType.md @@ -1,4 +1,4 @@ -# # QueryType +# QueryType ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf.md b/agdb_api/php/docs/Model/QueryTypeOneOf.md index 43fea3b2..906d17f8 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf +# QueryTypeOneOf ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf1.md b/agdb_api/php/docs/Model/QueryTypeOneOf1.md index dd2ac404..72dfd07b 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf1.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf1.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf1 +# QueryTypeOneOf1 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf10.md b/agdb_api/php/docs/Model/QueryTypeOneOf10.md index 770e4d08..bba3f27f 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf10.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf10.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf10 +# QueryTypeOneOf10 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf11.md b/agdb_api/php/docs/Model/QueryTypeOneOf11.md index c9a3db02..62988e6a 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf11.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf11.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf11 +# QueryTypeOneOf11 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf12.md b/agdb_api/php/docs/Model/QueryTypeOneOf12.md index ca869a09..215c575b 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf12.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf12.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf12 +# QueryTypeOneOf12 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf13.md b/agdb_api/php/docs/Model/QueryTypeOneOf13.md index 0dd754d3..cb9100e0 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf13.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf13.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf13 +# QueryTypeOneOf13 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf14.md b/agdb_api/php/docs/Model/QueryTypeOneOf14.md index 84475617..1511d5df 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf14.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf14.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf14 +# QueryTypeOneOf14 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf15.md b/agdb_api/php/docs/Model/QueryTypeOneOf15.md index c828ef71..acc10a88 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf15.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf15.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf15 +# QueryTypeOneOf15 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf16.md b/agdb_api/php/docs/Model/QueryTypeOneOf16.md index 275e944f..c9b64aeb 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf16.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf16.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf16 +# QueryTypeOneOf16 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf17.md b/agdb_api/php/docs/Model/QueryTypeOneOf17.md index 302679cd..7905d8de 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf17.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf17.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf17 +# QueryTypeOneOf17 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf2.md b/agdb_api/php/docs/Model/QueryTypeOneOf2.md index 2818d592..f26cfd06 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf2.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf2.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf2 +# QueryTypeOneOf2 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf3.md b/agdb_api/php/docs/Model/QueryTypeOneOf3.md index 0c68f574..fb6bd063 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf3.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf3.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf3 +# QueryTypeOneOf3 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf4.md b/agdb_api/php/docs/Model/QueryTypeOneOf4.md index 3645a038..3746ca1e 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf4.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf4.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf4 +# QueryTypeOneOf4 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf5.md b/agdb_api/php/docs/Model/QueryTypeOneOf5.md index d7f58179..be04cf27 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf5.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf5.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf5 +# QueryTypeOneOf5 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf6.md b/agdb_api/php/docs/Model/QueryTypeOneOf6.md index 93fa6ef7..fdb31dae 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf6.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf6.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf6 +# QueryTypeOneOf6 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf7.md b/agdb_api/php/docs/Model/QueryTypeOneOf7.md index 47d158aa..1ff8d708 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf7.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf7.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf7 +# QueryTypeOneOf7 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf8.md b/agdb_api/php/docs/Model/QueryTypeOneOf8.md index f0c0310e..ab9d15eb 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf8.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf8.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf8 +# QueryTypeOneOf8 ## Properties diff --git a/agdb_api/php/docs/Model/QueryTypeOneOf9.md b/agdb_api/php/docs/Model/QueryTypeOneOf9.md index 3dae8c5d..6f11cd36 100644 --- a/agdb_api/php/docs/Model/QueryTypeOneOf9.md +++ b/agdb_api/php/docs/Model/QueryTypeOneOf9.md @@ -1,4 +1,4 @@ -# # QueryTypeOneOf9 +# QueryTypeOneOf9 ## Properties diff --git a/agdb_api/php/docs/Model/QueryValues.md b/agdb_api/php/docs/Model/QueryValues.md index 5d54850f..f48fe057 100644 --- a/agdb_api/php/docs/Model/QueryValues.md +++ b/agdb_api/php/docs/Model/QueryValues.md @@ -1,4 +1,4 @@ -# # QueryValues +# QueryValues ## Properties diff --git a/agdb_api/php/docs/Model/QueryValuesOneOf.md b/agdb_api/php/docs/Model/QueryValuesOneOf.md index 3b703a4c..7c65927f 100644 --- a/agdb_api/php/docs/Model/QueryValuesOneOf.md +++ b/agdb_api/php/docs/Model/QueryValuesOneOf.md @@ -1,4 +1,4 @@ -# # QueryValuesOneOf +# QueryValuesOneOf ## Properties diff --git a/agdb_api/php/docs/Model/QueryValuesOneOf1.md b/agdb_api/php/docs/Model/QueryValuesOneOf1.md index 996395d6..7400ec3b 100644 --- a/agdb_api/php/docs/Model/QueryValuesOneOf1.md +++ b/agdb_api/php/docs/Model/QueryValuesOneOf1.md @@ -1,4 +1,4 @@ -# # QueryValuesOneOf1 +# QueryValuesOneOf1 ## Properties diff --git a/agdb_api/php/docs/Model/RemoveIndexQuery.md b/agdb_api/php/docs/Model/RemoveIndexQuery.md index 710c4492..20c2e523 100644 --- a/agdb_api/php/docs/Model/RemoveIndexQuery.md +++ b/agdb_api/php/docs/Model/RemoveIndexQuery.md @@ -1,4 +1,4 @@ -# # RemoveIndexQuery +# RemoveIndexQuery ## Properties diff --git a/agdb_api/php/docs/Model/RemoveQuery.md b/agdb_api/php/docs/Model/RemoveQuery.md index 70c04a06..8eef8be1 100644 --- a/agdb_api/php/docs/Model/RemoveQuery.md +++ b/agdb_api/php/docs/Model/RemoveQuery.md @@ -1,4 +1,4 @@ -# # RemoveQuery +# RemoveQuery ## Properties diff --git a/agdb_api/php/docs/Model/RemoveValuesQuery.md b/agdb_api/php/docs/Model/RemoveValuesQuery.md index 7e9323a5..b69ea159 100644 --- a/agdb_api/php/docs/Model/RemoveValuesQuery.md +++ b/agdb_api/php/docs/Model/RemoveValuesQuery.md @@ -1,4 +1,4 @@ -# # RemoveValuesQuery +# RemoveValuesQuery ## Properties diff --git a/agdb_api/php/docs/Model/SearchQuery.md b/agdb_api/php/docs/Model/SearchQuery.md index 899d8df0..9f8f4370 100644 --- a/agdb_api/php/docs/Model/SearchQuery.md +++ b/agdb_api/php/docs/Model/SearchQuery.md @@ -1,4 +1,4 @@ -# # SearchQuery +# SearchQuery ## Properties diff --git a/agdb_api/php/docs/Model/SearchQueryAlgorithm.md b/agdb_api/php/docs/Model/SearchQueryAlgorithm.md index 1c35f207..1ea955fe 100644 --- a/agdb_api/php/docs/Model/SearchQueryAlgorithm.md +++ b/agdb_api/php/docs/Model/SearchQueryAlgorithm.md @@ -1,4 +1,4 @@ -# # SearchQueryAlgorithm +# SearchQueryAlgorithm ## Properties diff --git a/agdb_api/php/docs/Model/SelectAliasesQuery.md b/agdb_api/php/docs/Model/SelectAliasesQuery.md index 0535c412..72f3269c 100644 --- a/agdb_api/php/docs/Model/SelectAliasesQuery.md +++ b/agdb_api/php/docs/Model/SelectAliasesQuery.md @@ -1,4 +1,4 @@ -# # SelectAliasesQuery +# SelectAliasesQuery ## Properties diff --git a/agdb_api/php/docs/Model/SelectEdgeCountQuery.md b/agdb_api/php/docs/Model/SelectEdgeCountQuery.md index 89beceea..e7bd2fc9 100644 --- a/agdb_api/php/docs/Model/SelectEdgeCountQuery.md +++ b/agdb_api/php/docs/Model/SelectEdgeCountQuery.md @@ -1,4 +1,4 @@ -# # SelectEdgeCountQuery +# SelectEdgeCountQuery ## Properties diff --git a/agdb_api/php/docs/Model/SelectKeyCountQuery.md b/agdb_api/php/docs/Model/SelectKeyCountQuery.md index 43c838a9..33b7d663 100644 --- a/agdb_api/php/docs/Model/SelectKeyCountQuery.md +++ b/agdb_api/php/docs/Model/SelectKeyCountQuery.md @@ -1,4 +1,4 @@ -# # SelectKeyCountQuery +# SelectKeyCountQuery ## Properties diff --git a/agdb_api/php/docs/Model/SelectKeysQuery.md b/agdb_api/php/docs/Model/SelectKeysQuery.md index bc277821..6642eac3 100644 --- a/agdb_api/php/docs/Model/SelectKeysQuery.md +++ b/agdb_api/php/docs/Model/SelectKeysQuery.md @@ -1,4 +1,4 @@ -# # SelectKeysQuery +# SelectKeysQuery ## Properties diff --git a/agdb_api/php/docs/Model/SelectValuesQuery.md b/agdb_api/php/docs/Model/SelectValuesQuery.md index d9fac118..6d9374b9 100644 --- a/agdb_api/php/docs/Model/SelectValuesQuery.md +++ b/agdb_api/php/docs/Model/SelectValuesQuery.md @@ -1,4 +1,4 @@ -# # SelectValuesQuery +# SelectValuesQuery ## Properties diff --git a/agdb_api/php/docs/Model/ServerDatabase.md b/agdb_api/php/docs/Model/ServerDatabase.md index 5b067837..74837284 100644 --- a/agdb_api/php/docs/Model/ServerDatabase.md +++ b/agdb_api/php/docs/Model/ServerDatabase.md @@ -1,4 +1,4 @@ -# # ServerDatabase +# ServerDatabase ## Properties diff --git a/agdb_api/php/docs/Model/ServerDatabaseAdminRename.md b/agdb_api/php/docs/Model/ServerDatabaseAdminRename.md index 31d19378..28dac4c1 100644 --- a/agdb_api/php/docs/Model/ServerDatabaseAdminRename.md +++ b/agdb_api/php/docs/Model/ServerDatabaseAdminRename.md @@ -1,4 +1,4 @@ -# # ServerDatabaseAdminRename +# ServerDatabaseAdminRename ## Properties diff --git a/agdb_api/php/docs/Model/ServerDatabaseRename.md b/agdb_api/php/docs/Model/ServerDatabaseRename.md index dd60eaa5..5a4a0e8b 100644 --- a/agdb_api/php/docs/Model/ServerDatabaseRename.md +++ b/agdb_api/php/docs/Model/ServerDatabaseRename.md @@ -1,4 +1,4 @@ -# # ServerDatabaseRename +# ServerDatabaseRename ## Properties diff --git a/agdb_api/php/docs/Model/ServerDatabaseResource.md b/agdb_api/php/docs/Model/ServerDatabaseResource.md index 9f3d241f..4709c3fb 100644 --- a/agdb_api/php/docs/Model/ServerDatabaseResource.md +++ b/agdb_api/php/docs/Model/ServerDatabaseResource.md @@ -1,4 +1,4 @@ -# # ServerDatabaseResource +# ServerDatabaseResource ## Properties diff --git a/agdb_api/php/docs/Model/SetLogLevelRequest.md b/agdb_api/php/docs/Model/SetLogLevelRequest.md index ea76a55c..8ac02213 100644 --- a/agdb_api/php/docs/Model/SetLogLevelRequest.md +++ b/agdb_api/php/docs/Model/SetLogLevelRequest.md @@ -1,4 +1,4 @@ -# # SetLogLevelRequest +# SetLogLevelRequest ## Properties diff --git a/agdb_api/php/docs/Model/UserCredentials.md b/agdb_api/php/docs/Model/UserCredentials.md index 97407933..8504379f 100644 --- a/agdb_api/php/docs/Model/UserCredentials.md +++ b/agdb_api/php/docs/Model/UserCredentials.md @@ -1,4 +1,4 @@ -# # UserCredentials +# UserCredentials ## Properties diff --git a/agdb_api/php/docs/Model/UserLogin.md b/agdb_api/php/docs/Model/UserLogin.md index 5629c753..c02e9a6c 100644 --- a/agdb_api/php/docs/Model/UserLogin.md +++ b/agdb_api/php/docs/Model/UserLogin.md @@ -1,4 +1,4 @@ -# # UserLogin +# UserLogin ## Properties diff --git a/agdb_api/php/docs/Model/UserStatus.md b/agdb_api/php/docs/Model/UserStatus.md index 78042c49..9a4f3163 100644 --- a/agdb_api/php/docs/Model/UserStatus.md +++ b/agdb_api/php/docs/Model/UserStatus.md @@ -1,4 +1,4 @@ -# # UserStatus +# UserStatus ## Properties diff --git a/agdb_api/php/lib/Api/AgdbApi.php b/agdb_api/php/lib/Api/AgdbApi.php index ed87913a..f3f47c38 100644 --- a/agdb_api/php/lib/Api/AgdbApi.php +++ b/agdb_api/php/lib/Api/AgdbApi.php @@ -16,7 +16,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** diff --git a/agdb_api/php/lib/ApiException.php b/agdb_api/php/lib/ApiException.php index 012a3364..5f41d121 100644 --- a/agdb_api/php/lib/ApiException.php +++ b/agdb_api/php/lib/ApiException.php @@ -16,7 +16,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** diff --git a/agdb_api/php/lib/Configuration.php b/agdb_api/php/lib/Configuration.php index fd4237f5..d36fe37e 100644 --- a/agdb_api/php/lib/Configuration.php +++ b/agdb_api/php/lib/Configuration.php @@ -16,7 +16,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** diff --git a/agdb_api/php/lib/FormDataProcessor.php b/agdb_api/php/lib/FormDataProcessor.php index ab0ff2b3..c40b686d 100644 --- a/agdb_api/php/lib/FormDataProcessor.php +++ b/agdb_api/php/lib/FormDataProcessor.php @@ -16,7 +16,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** diff --git a/agdb_api/php/lib/HeaderSelector.php b/agdb_api/php/lib/HeaderSelector.php index 1f3919e1..1130a07a 100644 --- a/agdb_api/php/lib/HeaderSelector.php +++ b/agdb_api/php/lib/HeaderSelector.php @@ -16,7 +16,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** diff --git a/agdb_api/php/lib/Model/AdminStatus.php b/agdb_api/php/lib/Model/AdminStatus.php index 9c57366b..9686ab43 100644 --- a/agdb_api/php/lib/Model/AdminStatus.php +++ b/agdb_api/php/lib/Model/AdminStatus.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,17 +45,17 @@ class AdminStatus implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'AdminStatus'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'dbs' => 'int', 'log_level' => '\Agnesoft\AgdbApi\Model\LogLevelFilter', @@ -66,12 +66,12 @@ class AdminStatus implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'dbs' => 'int64', 'log_level' => null, @@ -82,10 +82,10 @@ class AdminStatus implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'dbs' => false, 'log_level' => false, @@ -96,10 +96,10 @@ class AdminStatus implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -283,14 +283,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ChangePassword.php b/agdb_api/php/lib/Model/ChangePassword.php index 67434034..b490842a 100644 --- a/agdb_api/php/lib/Model/ChangePassword.php +++ b/agdb_api/php/lib/Model/ChangePassword.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,49 +45,49 @@ class ChangePassword implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'ChangePassword'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'new_password' => 'string', 'password' => 'string' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'new_password' => null, 'password' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'new_password' => false, 'password' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -255,14 +255,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ClusterStatus.php b/agdb_api/php/lib/Model/ClusterStatus.php index 97707147..14db6d0b 100644 --- a/agdb_api/php/lib/Model/ClusterStatus.php +++ b/agdb_api/php/lib/Model/ClusterStatus.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,17 +45,17 @@ class ClusterStatus implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'ClusterStatus'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'address' => 'string', 'leader' => 'bool', @@ -63,12 +63,12 @@ class ClusterStatus implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'address' => null, 'leader' => null, @@ -76,10 +76,10 @@ class ClusterStatus implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'address' => false, 'leader' => false, @@ -87,10 +87,10 @@ class ClusterStatus implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -262,14 +262,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/Comparison.php b/agdb_api/php/lib/Model/Comparison.php index 4b2f77a0..15a682ca 100644 --- a/agdb_api/php/lib/Model/Comparison.php +++ b/agdb_api/php/lib/Model/Comparison.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,17 +46,17 @@ class Comparison implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'Comparison'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'equal' => '\Agnesoft\AgdbApi\Model\DbValue', 'greater_than' => '\Agnesoft\AgdbApi\Model\DbValue', @@ -70,12 +70,12 @@ class Comparison implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'equal' => null, 'greater_than' => null, @@ -89,10 +89,10 @@ class Comparison implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'equal' => false, 'greater_than' => false, @@ -106,10 +106,10 @@ class Comparison implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -305,14 +305,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ComparisonOneOf.php b/agdb_api/php/lib/Model/ComparisonOneOf.php index b8583f66..280fda96 100644 --- a/agdb_api/php/lib/Model/ComparisonOneOf.php +++ b/agdb_api/php/lib/Model/ComparisonOneOf.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class ComparisonOneOf implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'Comparison_oneOf'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'equal' => '\Agnesoft\AgdbApi\Model\DbValue' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'equal' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'equal' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ComparisonOneOf1.php b/agdb_api/php/lib/Model/ComparisonOneOf1.php index 13f57b7a..fa48054b 100644 --- a/agdb_api/php/lib/Model/ComparisonOneOf1.php +++ b/agdb_api/php/lib/Model/ComparisonOneOf1.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class ComparisonOneOf1 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'Comparison_oneOf_1'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'greater_than' => '\Agnesoft\AgdbApi\Model\DbValue' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'greater_than' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'greater_than' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ComparisonOneOf2.php b/agdb_api/php/lib/Model/ComparisonOneOf2.php index 40a5d8fc..5a96daca 100644 --- a/agdb_api/php/lib/Model/ComparisonOneOf2.php +++ b/agdb_api/php/lib/Model/ComparisonOneOf2.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class ComparisonOneOf2 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'Comparison_oneOf_2'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'greater_than_or_equal' => '\Agnesoft\AgdbApi\Model\DbValue' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'greater_than_or_equal' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'greater_than_or_equal' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ComparisonOneOf3.php b/agdb_api/php/lib/Model/ComparisonOneOf3.php index 687d957a..277fdb54 100644 --- a/agdb_api/php/lib/Model/ComparisonOneOf3.php +++ b/agdb_api/php/lib/Model/ComparisonOneOf3.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class ComparisonOneOf3 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'Comparison_oneOf_3'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'less_than' => '\Agnesoft\AgdbApi\Model\DbValue' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'less_than' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'less_than' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ComparisonOneOf4.php b/agdb_api/php/lib/Model/ComparisonOneOf4.php index a6107d30..402dd94c 100644 --- a/agdb_api/php/lib/Model/ComparisonOneOf4.php +++ b/agdb_api/php/lib/Model/ComparisonOneOf4.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class ComparisonOneOf4 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'Comparison_oneOf_4'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'less_than_or_equal' => '\Agnesoft\AgdbApi\Model\DbValue' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'less_than_or_equal' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'less_than_or_equal' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ComparisonOneOf5.php b/agdb_api/php/lib/Model/ComparisonOneOf5.php index 997a2949..ec8ea917 100644 --- a/agdb_api/php/lib/Model/ComparisonOneOf5.php +++ b/agdb_api/php/lib/Model/ComparisonOneOf5.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class ComparisonOneOf5 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'Comparison_oneOf_5'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'not_equal' => '\Agnesoft\AgdbApi\Model\DbValue' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'not_equal' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'not_equal' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ComparisonOneOf6.php b/agdb_api/php/lib/Model/ComparisonOneOf6.php index 1bf3b34c..8ba2161d 100644 --- a/agdb_api/php/lib/Model/ComparisonOneOf6.php +++ b/agdb_api/php/lib/Model/ComparisonOneOf6.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class ComparisonOneOf6 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'Comparison_oneOf_6'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'contains' => '\Agnesoft\AgdbApi\Model\DbValue' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'contains' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'contains' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ComparisonOneOf7.php b/agdb_api/php/lib/Model/ComparisonOneOf7.php index a109c79d..06df8f6d 100644 --- a/agdb_api/php/lib/Model/ComparisonOneOf7.php +++ b/agdb_api/php/lib/Model/ComparisonOneOf7.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class ComparisonOneOf7 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'Comparison_oneOf_7'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'starts_with' => '\Agnesoft\AgdbApi\Model\DbValue' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'starts_with' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'starts_with' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ComparisonOneOf8.php b/agdb_api/php/lib/Model/ComparisonOneOf8.php index b2dcb748..aecae255 100644 --- a/agdb_api/php/lib/Model/ComparisonOneOf8.php +++ b/agdb_api/php/lib/Model/ComparisonOneOf8.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class ComparisonOneOf8 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'Comparison_oneOf_8'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'ends_with' => '\Agnesoft\AgdbApi\Model\DbValue' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'ends_with' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'ends_with' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/CountComparison.php b/agdb_api/php/lib/Model/CountComparison.php index d4ea3696..b85e92f4 100644 --- a/agdb_api/php/lib/Model/CountComparison.php +++ b/agdb_api/php/lib/Model/CountComparison.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,17 +46,17 @@ class CountComparison implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'CountComparison'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'equal' => 'int', 'greater_than' => 'int', @@ -67,12 +67,12 @@ class CountComparison implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'equal' => 'int64', 'greater_than' => 'int64', @@ -83,10 +83,10 @@ class CountComparison implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'equal' => false, 'greater_than' => false, @@ -97,10 +97,10 @@ class CountComparison implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -284,14 +284,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/CountComparisonOneOf.php b/agdb_api/php/lib/Model/CountComparisonOneOf.php index 19520bb0..7d932b8e 100644 --- a/agdb_api/php/lib/Model/CountComparisonOneOf.php +++ b/agdb_api/php/lib/Model/CountComparisonOneOf.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class CountComparisonOneOf implements ModelInterface, ArrayAccess, \JsonSerializ public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'CountComparison_oneOf'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'equal' => 'int' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'equal' => 'int64' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'equal' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/CountComparisonOneOf1.php b/agdb_api/php/lib/Model/CountComparisonOneOf1.php index a6d64203..7113718e 100644 --- a/agdb_api/php/lib/Model/CountComparisonOneOf1.php +++ b/agdb_api/php/lib/Model/CountComparisonOneOf1.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class CountComparisonOneOf1 implements ModelInterface, ArrayAccess, \JsonSeriali public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'CountComparison_oneOf_1'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'greater_than' => 'int' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'greater_than' => 'int64' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'greater_than' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/CountComparisonOneOf2.php b/agdb_api/php/lib/Model/CountComparisonOneOf2.php index 079851e0..3122f15e 100644 --- a/agdb_api/php/lib/Model/CountComparisonOneOf2.php +++ b/agdb_api/php/lib/Model/CountComparisonOneOf2.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class CountComparisonOneOf2 implements ModelInterface, ArrayAccess, \JsonSeriali public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'CountComparison_oneOf_2'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'greater_than_or_equal' => 'int' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'greater_than_or_equal' => 'int64' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'greater_than_or_equal' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/CountComparisonOneOf3.php b/agdb_api/php/lib/Model/CountComparisonOneOf3.php index 1ec1dfe0..4865d81d 100644 --- a/agdb_api/php/lib/Model/CountComparisonOneOf3.php +++ b/agdb_api/php/lib/Model/CountComparisonOneOf3.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class CountComparisonOneOf3 implements ModelInterface, ArrayAccess, \JsonSeriali public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'CountComparison_oneOf_3'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'less_than' => 'int' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'less_than' => 'int64' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'less_than' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/CountComparisonOneOf4.php b/agdb_api/php/lib/Model/CountComparisonOneOf4.php index 5e6d4051..35a8c464 100644 --- a/agdb_api/php/lib/Model/CountComparisonOneOf4.php +++ b/agdb_api/php/lib/Model/CountComparisonOneOf4.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class CountComparisonOneOf4 implements ModelInterface, ArrayAccess, \JsonSeriali public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'CountComparison_oneOf_4'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'less_than_or_equal' => 'int' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'less_than_or_equal' => 'int64' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'less_than_or_equal' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/CountComparisonOneOf5.php b/agdb_api/php/lib/Model/CountComparisonOneOf5.php index 66518ab9..3c0af65b 100644 --- a/agdb_api/php/lib/Model/CountComparisonOneOf5.php +++ b/agdb_api/php/lib/Model/CountComparisonOneOf5.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class CountComparisonOneOf5 implements ModelInterface, ArrayAccess, \JsonSeriali public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'CountComparison_oneOf_5'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'not_equal' => 'int' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'not_equal' => 'int64' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'not_equal' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbElement.php b/agdb_api/php/lib/Model/DbElement.php index 288c6aa1..959c28ae 100644 --- a/agdb_api/php/lib/Model/DbElement.php +++ b/agdb_api/php/lib/Model/DbElement.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,17 +46,17 @@ class DbElement implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbElement'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'from' => 'int', 'id' => 'int', @@ -65,12 +65,12 @@ class DbElement implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'from' => 'int64', 'id' => 'int64', @@ -79,10 +79,10 @@ class DbElement implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'from' => true, 'id' => false, @@ -91,10 +91,10 @@ class DbElement implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -270,14 +270,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbKeyOrder.php b/agdb_api/php/lib/Model/DbKeyOrder.php index eb185c62..9961e66a 100644 --- a/agdb_api/php/lib/Model/DbKeyOrder.php +++ b/agdb_api/php/lib/Model/DbKeyOrder.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class DbKeyOrder implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbKeyOrder'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'asc' => '\Agnesoft\AgdbApi\Model\DbValue', 'desc' => '\Agnesoft\AgdbApi\Model\DbValue' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'asc' => null, 'desc' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'asc' => false, 'desc' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbKeyOrderOneOf.php b/agdb_api/php/lib/Model/DbKeyOrderOneOf.php index b1c8f35c..385d3326 100644 --- a/agdb_api/php/lib/Model/DbKeyOrderOneOf.php +++ b/agdb_api/php/lib/Model/DbKeyOrderOneOf.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class DbKeyOrderOneOf implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbKeyOrder_oneOf'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'asc' => '\Agnesoft\AgdbApi\Model\DbValue' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'asc' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'asc' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbKeyOrderOneOf1.php b/agdb_api/php/lib/Model/DbKeyOrderOneOf1.php index ecd8452d..da0a0a03 100644 --- a/agdb_api/php/lib/Model/DbKeyOrderOneOf1.php +++ b/agdb_api/php/lib/Model/DbKeyOrderOneOf1.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class DbKeyOrderOneOf1 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbKeyOrder_oneOf_1'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'desc' => '\Agnesoft\AgdbApi\Model\DbValue' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'desc' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'desc' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbKeyValue.php b/agdb_api/php/lib/Model/DbKeyValue.php index beae6ea2..c3a9a260 100644 --- a/agdb_api/php/lib/Model/DbKeyValue.php +++ b/agdb_api/php/lib/Model/DbKeyValue.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class DbKeyValue implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbKeyValue'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'key' => '\Agnesoft\AgdbApi\Model\DbValue', 'value' => '\Agnesoft\AgdbApi\Model\DbValue' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'key' => null, 'value' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'key' => false, 'value' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbKind.php b/agdb_api/php/lib/Model/DbKind.php index 8826853a..d9fbd994 100644 --- a/agdb_api/php/lib/Model/DbKind.php +++ b/agdb_api/php/lib/Model/DbKind.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** diff --git a/agdb_api/php/lib/Model/DbResource.php b/agdb_api/php/lib/Model/DbResource.php index 57d0dfd7..1bd091e2 100644 --- a/agdb_api/php/lib/Model/DbResource.php +++ b/agdb_api/php/lib/Model/DbResource.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** diff --git a/agdb_api/php/lib/Model/DbTypeParam.php b/agdb_api/php/lib/Model/DbTypeParam.php index b2948462..918b648e 100644 --- a/agdb_api/php/lib/Model/DbTypeParam.php +++ b/agdb_api/php/lib/Model/DbTypeParam.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class DbTypeParam implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbTypeParam'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'db_type' => '\Agnesoft\AgdbApi\Model\DbKind' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'db_type' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'db_type' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbUser.php b/agdb_api/php/lib/Model/DbUser.php index b5561fed..de2a2961 100644 --- a/agdb_api/php/lib/Model/DbUser.php +++ b/agdb_api/php/lib/Model/DbUser.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,49 +45,49 @@ class DbUser implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbUser'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'role' => '\Agnesoft\AgdbApi\Model\DbUserRole', 'username' => 'string' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'role' => null, 'username' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'role' => false, 'username' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -255,14 +255,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbUserRole.php b/agdb_api/php/lib/Model/DbUserRole.php index b2d2fb01..b58ba52c 100644 --- a/agdb_api/php/lib/Model/DbUserRole.php +++ b/agdb_api/php/lib/Model/DbUserRole.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** diff --git a/agdb_api/php/lib/Model/DbUserRoleParam.php b/agdb_api/php/lib/Model/DbUserRoleParam.php index 0f28189b..46a23d7f 100644 --- a/agdb_api/php/lib/Model/DbUserRoleParam.php +++ b/agdb_api/php/lib/Model/DbUserRoleParam.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class DbUserRoleParam implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbUserRoleParam'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'db_role' => '\Agnesoft\AgdbApi\Model\DbUserRole' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'db_role' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'db_role' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbValue.php b/agdb_api/php/lib/Model/DbValue.php index 6592e4ad..a7a8e37d 100644 --- a/agdb_api/php/lib/Model/DbValue.php +++ b/agdb_api/php/lib/Model/DbValue.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,17 +46,17 @@ class DbValue implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbValue'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'bytes' => 'int[]', 'i64' => 'int', @@ -70,12 +70,12 @@ class DbValue implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'bytes' => 'int32', 'i64' => 'int64', @@ -89,10 +89,10 @@ class DbValue implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'bytes' => false, 'i64' => false, @@ -106,10 +106,10 @@ class DbValue implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -305,14 +305,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbValueOneOf.php b/agdb_api/php/lib/Model/DbValueOneOf.php index 37a02625..23b6db91 100644 --- a/agdb_api/php/lib/Model/DbValueOneOf.php +++ b/agdb_api/php/lib/Model/DbValueOneOf.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class DbValueOneOf implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbValue_oneOf'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'bytes' => 'int[]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'bytes' => 'int32' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'bytes' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbValueOneOf1.php b/agdb_api/php/lib/Model/DbValueOneOf1.php index 303b3fe2..84cd66ed 100644 --- a/agdb_api/php/lib/Model/DbValueOneOf1.php +++ b/agdb_api/php/lib/Model/DbValueOneOf1.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class DbValueOneOf1 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbValue_oneOf_1'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'i64' => 'int' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'i64' => 'int64' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'i64' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbValueOneOf2.php b/agdb_api/php/lib/Model/DbValueOneOf2.php index 005f036b..01dde12a 100644 --- a/agdb_api/php/lib/Model/DbValueOneOf2.php +++ b/agdb_api/php/lib/Model/DbValueOneOf2.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class DbValueOneOf2 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbValue_oneOf_2'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'u64' => 'int' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'u64' => 'int64' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'u64' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbValueOneOf3.php b/agdb_api/php/lib/Model/DbValueOneOf3.php index 6cd102c9..c2890131 100644 --- a/agdb_api/php/lib/Model/DbValueOneOf3.php +++ b/agdb_api/php/lib/Model/DbValueOneOf3.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class DbValueOneOf3 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbValue_oneOf_3'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'f64' => 'float' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'f64' => 'double' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'f64' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbValueOneOf4.php b/agdb_api/php/lib/Model/DbValueOneOf4.php index a828e876..11bf5a51 100644 --- a/agdb_api/php/lib/Model/DbValueOneOf4.php +++ b/agdb_api/php/lib/Model/DbValueOneOf4.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class DbValueOneOf4 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbValue_oneOf_4'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'string' => 'string' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'string' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'string' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbValueOneOf5.php b/agdb_api/php/lib/Model/DbValueOneOf5.php index 2089e407..95b3a59e 100644 --- a/agdb_api/php/lib/Model/DbValueOneOf5.php +++ b/agdb_api/php/lib/Model/DbValueOneOf5.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class DbValueOneOf5 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbValue_oneOf_5'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'vec_i64' => 'int[]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'vec_i64' => 'int64' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'vec_i64' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbValueOneOf6.php b/agdb_api/php/lib/Model/DbValueOneOf6.php index 5ec7047d..3c881a99 100644 --- a/agdb_api/php/lib/Model/DbValueOneOf6.php +++ b/agdb_api/php/lib/Model/DbValueOneOf6.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class DbValueOneOf6 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbValue_oneOf_6'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'vec_u64' => 'int[]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'vec_u64' => 'int64' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'vec_u64' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbValueOneOf7.php b/agdb_api/php/lib/Model/DbValueOneOf7.php index ac42aa71..0d76d36f 100644 --- a/agdb_api/php/lib/Model/DbValueOneOf7.php +++ b/agdb_api/php/lib/Model/DbValueOneOf7.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class DbValueOneOf7 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbValue_oneOf_7'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'vec_f64' => 'float[]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'vec_f64' => 'double' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'vec_f64' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/DbValueOneOf8.php b/agdb_api/php/lib/Model/DbValueOneOf8.php index a5ee0810..4e50febb 100644 --- a/agdb_api/php/lib/Model/DbValueOneOf8.php +++ b/agdb_api/php/lib/Model/DbValueOneOf8.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class DbValueOneOf8 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'DbValue_oneOf_8'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'vec_string' => 'string[]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'vec_string' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'vec_string' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/InsertAliasesQuery.php b/agdb_api/php/lib/Model/InsertAliasesQuery.php index 83a0b0b0..15fd84ab 100644 --- a/agdb_api/php/lib/Model/InsertAliasesQuery.php +++ b/agdb_api/php/lib/Model/InsertAliasesQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class InsertAliasesQuery implements ModelInterface, ArrayAccess, \JsonSerializab public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'InsertAliasesQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'aliases' => 'string[]', 'ids' => '\Agnesoft\AgdbApi\Model\QueryIds' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'aliases' => null, 'ids' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'aliases' => false, 'ids' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/InsertEdgesQuery.php b/agdb_api/php/lib/Model/InsertEdgesQuery.php index 537abad0..be5db7bd 100644 --- a/agdb_api/php/lib/Model/InsertEdgesQuery.php +++ b/agdb_api/php/lib/Model/InsertEdgesQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,17 +46,17 @@ class InsertEdgesQuery implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'InsertEdgesQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'each' => 'bool', 'from' => '\Agnesoft\AgdbApi\Model\QueryIds', @@ -66,12 +66,12 @@ class InsertEdgesQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'each' => null, 'from' => null, @@ -81,10 +81,10 @@ class InsertEdgesQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'each' => false, 'from' => false, @@ -94,10 +94,10 @@ class InsertEdgesQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -277,14 +277,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/InsertIndexQuery.php b/agdb_api/php/lib/Model/InsertIndexQuery.php index b99117a8..fda6c914 100644 --- a/agdb_api/php/lib/Model/InsertIndexQuery.php +++ b/agdb_api/php/lib/Model/InsertIndexQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,17 +46,17 @@ class InsertIndexQuery implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'InsertIndexQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'bytes' => 'int[]', 'i64' => 'int', @@ -70,12 +70,12 @@ class InsertIndexQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'bytes' => 'int32', 'i64' => 'int64', @@ -89,10 +89,10 @@ class InsertIndexQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'bytes' => false, 'i64' => false, @@ -106,10 +106,10 @@ class InsertIndexQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -305,14 +305,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/InsertNodesQuery.php b/agdb_api/php/lib/Model/InsertNodesQuery.php index 823e09cf..98a40407 100644 --- a/agdb_api/php/lib/Model/InsertNodesQuery.php +++ b/agdb_api/php/lib/Model/InsertNodesQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,17 +46,17 @@ class InsertNodesQuery implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'InsertNodesQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'aliases' => 'string[]', 'count' => 'int', @@ -65,12 +65,12 @@ class InsertNodesQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'aliases' => null, 'count' => 'int64', @@ -79,10 +79,10 @@ class InsertNodesQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'aliases' => false, 'count' => false, @@ -91,10 +91,10 @@ class InsertNodesQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -270,14 +270,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/InsertValuesQuery.php b/agdb_api/php/lib/Model/InsertValuesQuery.php index 1af20577..c3f59ab8 100644 --- a/agdb_api/php/lib/Model/InsertValuesQuery.php +++ b/agdb_api/php/lib/Model/InsertValuesQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class InsertValuesQuery implements ModelInterface, ArrayAccess, \JsonSerializabl public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'InsertValuesQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'ids' => '\Agnesoft\AgdbApi\Model\QueryIds', 'values' => '\Agnesoft\AgdbApi\Model\QueryValues' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'ids' => null, 'values' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'ids' => false, 'values' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/KeyValueComparison.php b/agdb_api/php/lib/Model/KeyValueComparison.php index 966d0cf7..4c7db8f1 100644 --- a/agdb_api/php/lib/Model/KeyValueComparison.php +++ b/agdb_api/php/lib/Model/KeyValueComparison.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class KeyValueComparison implements ModelInterface, ArrayAccess, \JsonSerializab public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'KeyValueComparison'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'key' => '\Agnesoft\AgdbApi\Model\DbValue', 'value' => '\Agnesoft\AgdbApi\Model\Comparison' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'key' => null, 'value' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'key' => false, 'value' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/LogLevelFilter.php b/agdb_api/php/lib/Model/LogLevelFilter.php index 72e3ab7b..18367c10 100644 --- a/agdb_api/php/lib/Model/LogLevelFilter.php +++ b/agdb_api/php/lib/Model/LogLevelFilter.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** diff --git a/agdb_api/php/lib/Model/ModelInterface.php b/agdb_api/php/lib/Model/ModelInterface.php index 24324bd0..2d8c0f34 100644 --- a/agdb_api/php/lib/Model/ModelInterface.php +++ b/agdb_api/php/lib/Model/ModelInterface.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** diff --git a/agdb_api/php/lib/Model/OptimizeParam.php b/agdb_api/php/lib/Model/OptimizeParam.php index fd9af82f..061b04f1 100644 --- a/agdb_api/php/lib/Model/OptimizeParam.php +++ b/agdb_api/php/lib/Model/OptimizeParam.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class OptimizeParam implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'OptimizeParam'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'shrink_to_fit' => 'bool' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'shrink_to_fit' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'shrink_to_fit' => true ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryAudit.php b/agdb_api/php/lib/Model/QueryAudit.php index 68584da0..1db48f4c 100644 --- a/agdb_api/php/lib/Model/QueryAudit.php +++ b/agdb_api/php/lib/Model/QueryAudit.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,17 +45,17 @@ class QueryAudit implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryAudit'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'query' => '\Agnesoft\AgdbApi\Model\QueryType', 'timestamp' => 'int', @@ -63,12 +63,12 @@ class QueryAudit implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'query' => null, 'timestamp' => 'int64', @@ -76,10 +76,10 @@ class QueryAudit implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'query' => false, 'timestamp' => false, @@ -87,10 +87,10 @@ class QueryAudit implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -262,14 +262,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryCondition.php b/agdb_api/php/lib/Model/QueryCondition.php index 6d7477f9..404a90d8 100644 --- a/agdb_api/php/lib/Model/QueryCondition.php +++ b/agdb_api/php/lib/Model/QueryCondition.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,17 +46,17 @@ class QueryCondition implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryCondition'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'data' => '\Agnesoft\AgdbApi\Model\QueryConditionData', 'logic' => '\Agnesoft\AgdbApi\Model\QueryConditionLogic', @@ -64,12 +64,12 @@ class QueryCondition implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'data' => null, 'logic' => null, @@ -77,10 +77,10 @@ class QueryCondition implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'data' => false, 'logic' => false, @@ -88,10 +88,10 @@ class QueryCondition implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -263,14 +263,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryConditionData.php b/agdb_api/php/lib/Model/QueryConditionData.php index 774fc9af..a333901e 100644 --- a/agdb_api/php/lib/Model/QueryConditionData.php +++ b/agdb_api/php/lib/Model/QueryConditionData.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,17 +46,17 @@ class QueryConditionData implements ModelInterface, ArrayAccess, \JsonSerializab public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryConditionData'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'distance' => '\Agnesoft\AgdbApi\Model\CountComparison', 'edge_count' => '\Agnesoft\AgdbApi\Model\CountComparison', @@ -69,12 +69,12 @@ class QueryConditionData implements ModelInterface, ArrayAccess, \JsonSerializab ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'distance' => null, 'edge_count' => null, @@ -87,10 +87,10 @@ class QueryConditionData implements ModelInterface, ArrayAccess, \JsonSerializab ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'distance' => false, 'edge_count' => false, @@ -103,10 +103,10 @@ class QueryConditionData implements ModelInterface, ArrayAccess, \JsonSerializab ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -298,14 +298,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryConditionDataOneOf.php b/agdb_api/php/lib/Model/QueryConditionDataOneOf.php index ab949bfe..c04f43fe 100644 --- a/agdb_api/php/lib/Model/QueryConditionDataOneOf.php +++ b/agdb_api/php/lib/Model/QueryConditionDataOneOf.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryConditionDataOneOf implements ModelInterface, ArrayAccess, \JsonSeria public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryConditionData_oneOf'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'distance' => '\Agnesoft\AgdbApi\Model\CountComparison' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'distance' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'distance' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryConditionDataOneOf1.php b/agdb_api/php/lib/Model/QueryConditionDataOneOf1.php index 744bf790..afc04b97 100644 --- a/agdb_api/php/lib/Model/QueryConditionDataOneOf1.php +++ b/agdb_api/php/lib/Model/QueryConditionDataOneOf1.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryConditionDataOneOf1 implements ModelInterface, ArrayAccess, \JsonSeri public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryConditionData_oneOf_1'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'edge_count' => '\Agnesoft\AgdbApi\Model\CountComparison' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'edge_count' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'edge_count' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryConditionDataOneOf2.php b/agdb_api/php/lib/Model/QueryConditionDataOneOf2.php index 0f9a8362..2db9e033 100644 --- a/agdb_api/php/lib/Model/QueryConditionDataOneOf2.php +++ b/agdb_api/php/lib/Model/QueryConditionDataOneOf2.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryConditionDataOneOf2 implements ModelInterface, ArrayAccess, \JsonSeri public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryConditionData_oneOf_2'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'edge_count_from' => '\Agnesoft\AgdbApi\Model\CountComparison' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'edge_count_from' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'edge_count_from' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryConditionDataOneOf3.php b/agdb_api/php/lib/Model/QueryConditionDataOneOf3.php index 9a4c5d48..7339986f 100644 --- a/agdb_api/php/lib/Model/QueryConditionDataOneOf3.php +++ b/agdb_api/php/lib/Model/QueryConditionDataOneOf3.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryConditionDataOneOf3 implements ModelInterface, ArrayAccess, \JsonSeri public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryConditionData_oneOf_3'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'edge_count_to' => '\Agnesoft\AgdbApi\Model\CountComparison' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'edge_count_to' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'edge_count_to' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryConditionDataOneOf4.php b/agdb_api/php/lib/Model/QueryConditionDataOneOf4.php index 2485dacf..8dcda357 100644 --- a/agdb_api/php/lib/Model/QueryConditionDataOneOf4.php +++ b/agdb_api/php/lib/Model/QueryConditionDataOneOf4.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryConditionDataOneOf4 implements ModelInterface, ArrayAccess, \JsonSeri public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryConditionData_oneOf_4'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'ids' => '\Agnesoft\AgdbApi\Model\QueryId[]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'ids' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'ids' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryConditionDataOneOf5.php b/agdb_api/php/lib/Model/QueryConditionDataOneOf5.php index 4d8d74c2..2b9c7bcb 100644 --- a/agdb_api/php/lib/Model/QueryConditionDataOneOf5.php +++ b/agdb_api/php/lib/Model/QueryConditionDataOneOf5.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryConditionDataOneOf5 implements ModelInterface, ArrayAccess, \JsonSeri public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryConditionData_oneOf_5'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'key_value' => '\Agnesoft\AgdbApi\Model\KeyValueComparison' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'key_value' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'key_value' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryConditionDataOneOf6.php b/agdb_api/php/lib/Model/QueryConditionDataOneOf6.php index 07765cdd..657c79f1 100644 --- a/agdb_api/php/lib/Model/QueryConditionDataOneOf6.php +++ b/agdb_api/php/lib/Model/QueryConditionDataOneOf6.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryConditionDataOneOf6 implements ModelInterface, ArrayAccess, \JsonSeri public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryConditionData_oneOf_6'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'keys' => '\Agnesoft\AgdbApi\Model\DbValue[]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'keys' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'keys' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryConditionDataOneOf7.php b/agdb_api/php/lib/Model/QueryConditionDataOneOf7.php index fda537ad..4ee11b96 100644 --- a/agdb_api/php/lib/Model/QueryConditionDataOneOf7.php +++ b/agdb_api/php/lib/Model/QueryConditionDataOneOf7.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryConditionDataOneOf7 implements ModelInterface, ArrayAccess, \JsonSeri public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryConditionData_oneOf_7'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'where' => '\Agnesoft\AgdbApi\Model\QueryCondition[]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'where' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'where' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryConditionLogic.php b/agdb_api/php/lib/Model/QueryConditionLogic.php index 46acabb4..34be3040 100644 --- a/agdb_api/php/lib/Model/QueryConditionLogic.php +++ b/agdb_api/php/lib/Model/QueryConditionLogic.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** diff --git a/agdb_api/php/lib/Model/QueryConditionModifier.php b/agdb_api/php/lib/Model/QueryConditionModifier.php index 9d2eb3c0..d8307fba 100644 --- a/agdb_api/php/lib/Model/QueryConditionModifier.php +++ b/agdb_api/php/lib/Model/QueryConditionModifier.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** diff --git a/agdb_api/php/lib/Model/QueryId.php b/agdb_api/php/lib/Model/QueryId.php index 2e5a0ceb..f21dda78 100644 --- a/agdb_api/php/lib/Model/QueryId.php +++ b/agdb_api/php/lib/Model/QueryId.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class QueryId implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryId'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'id' => 'int', 'alias' => 'string' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'id' => 'int64', 'alias' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'id' => false, 'alias' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryIdOneOf.php b/agdb_api/php/lib/Model/QueryIdOneOf.php index d35e3d84..eeaec178 100644 --- a/agdb_api/php/lib/Model/QueryIdOneOf.php +++ b/agdb_api/php/lib/Model/QueryIdOneOf.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryIdOneOf implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryId_oneOf'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'id' => 'int' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'id' => 'int64' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'id' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryIdOneOf1.php b/agdb_api/php/lib/Model/QueryIdOneOf1.php index 5de45ade..8660fea3 100644 --- a/agdb_api/php/lib/Model/QueryIdOneOf1.php +++ b/agdb_api/php/lib/Model/QueryIdOneOf1.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryIdOneOf1 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryId_oneOf_1'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'alias' => 'string' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'alias' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'alias' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryIds.php b/agdb_api/php/lib/Model/QueryIds.php index 870e130d..607191e6 100644 --- a/agdb_api/php/lib/Model/QueryIds.php +++ b/agdb_api/php/lib/Model/QueryIds.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class QueryIds implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryIds'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'ids' => '\Agnesoft\AgdbApi\Model\QueryId[]', 'search' => '\Agnesoft\AgdbApi\Model\SearchQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'ids' => null, 'search' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'ids' => false, 'search' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryIdsOneOf.php b/agdb_api/php/lib/Model/QueryIdsOneOf.php index 00150eb6..3e04bf66 100644 --- a/agdb_api/php/lib/Model/QueryIdsOneOf.php +++ b/agdb_api/php/lib/Model/QueryIdsOneOf.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryIdsOneOf implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryIds_oneOf'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'ids' => '\Agnesoft\AgdbApi\Model\QueryId[]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'ids' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'ids' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryIdsOneOf1.php b/agdb_api/php/lib/Model/QueryIdsOneOf1.php index aa9f485a..92fc7152 100644 --- a/agdb_api/php/lib/Model/QueryIdsOneOf1.php +++ b/agdb_api/php/lib/Model/QueryIdsOneOf1.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryIdsOneOf1 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryIds_oneOf_1'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'search' => '\Agnesoft\AgdbApi\Model\SearchQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'search' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'search' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryResult.php b/agdb_api/php/lib/Model/QueryResult.php index f8a02163..97197bd2 100644 --- a/agdb_api/php/lib/Model/QueryResult.php +++ b/agdb_api/php/lib/Model/QueryResult.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class QueryResult implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryResult'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'elements' => '\Agnesoft\AgdbApi\Model\DbElement[]', 'result' => 'int' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'elements' => null, 'result' => 'int64' ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'elements' => false, 'result' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryType.php b/agdb_api/php/lib/Model/QueryType.php index 996b881a..f3921ec1 100644 --- a/agdb_api/php/lib/Model/QueryType.php +++ b/agdb_api/php/lib/Model/QueryType.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,17 +46,17 @@ class QueryType implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'insert_alias' => '\Agnesoft\AgdbApi\Model\InsertAliasesQuery', 'insert_edges' => '\Agnesoft\AgdbApi\Model\InsertEdgesQuery', @@ -79,12 +79,12 @@ class QueryType implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'insert_alias' => null, 'insert_edges' => null, @@ -107,10 +107,10 @@ class QueryType implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'insert_alias' => false, 'insert_edges' => false, @@ -133,10 +133,10 @@ class QueryType implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -368,14 +368,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf.php b/agdb_api/php/lib/Model/QueryTypeOneOf.php index 746f216a..4f7f7178 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'insert_alias' => '\Agnesoft\AgdbApi\Model\InsertAliasesQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'insert_alias' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'insert_alias' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf1.php b/agdb_api/php/lib/Model/QueryTypeOneOf1.php index 65389819..625b1ea7 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf1.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf1.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf1 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_1'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'insert_edges' => '\Agnesoft\AgdbApi\Model\InsertEdgesQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'insert_edges' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'insert_edges' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf10.php b/agdb_api/php/lib/Model/QueryTypeOneOf10.php index d7f36d63..9e579f35 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf10.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf10.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf10 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_10'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'select_aliases' => '\Agnesoft\AgdbApi\Model\SelectAliasesQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'select_aliases' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'select_aliases' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf11.php b/agdb_api/php/lib/Model/QueryTypeOneOf11.php index 79739cf4..a350b005 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf11.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf11.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf11 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_11'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'select_all_aliases' => 'object' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'select_all_aliases' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'select_all_aliases' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf12.php b/agdb_api/php/lib/Model/QueryTypeOneOf12.php index 1e11e21e..c2b93dc7 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf12.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf12.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf12 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_12'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'select_edge_count' => '\Agnesoft\AgdbApi\Model\SelectEdgeCountQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'select_edge_count' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'select_edge_count' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf13.php b/agdb_api/php/lib/Model/QueryTypeOneOf13.php index 72e60ec4..414805c2 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf13.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf13.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf13 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_13'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'select_indexes' => 'object' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'select_indexes' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'select_indexes' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf14.php b/agdb_api/php/lib/Model/QueryTypeOneOf14.php index f44453a6..638b1a35 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf14.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf14.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf14 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_14'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'select_keys' => '\Agnesoft\AgdbApi\Model\SelectKeysQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'select_keys' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'select_keys' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf15.php b/agdb_api/php/lib/Model/QueryTypeOneOf15.php index 73ac3ee3..5527c109 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf15.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf15.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf15 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_15'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'select_key_count' => '\Agnesoft\AgdbApi\Model\SelectKeyCountQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'select_key_count' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'select_key_count' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf16.php b/agdb_api/php/lib/Model/QueryTypeOneOf16.php index 073f8e30..eeb9089a 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf16.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf16.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf16 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_16'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'select_node_count' => 'object' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'select_node_count' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'select_node_count' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf17.php b/agdb_api/php/lib/Model/QueryTypeOneOf17.php index aafdaa6f..2a2fc6f9 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf17.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf17.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf17 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_17'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'select_values' => '\Agnesoft\AgdbApi\Model\SelectValuesQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'select_values' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'select_values' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf2.php b/agdb_api/php/lib/Model/QueryTypeOneOf2.php index aafa026c..c11bdc9b 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf2.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf2.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf2 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_2'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'insert_index' => '\Agnesoft\AgdbApi\Model\InsertIndexQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'insert_index' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'insert_index' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf3.php b/agdb_api/php/lib/Model/QueryTypeOneOf3.php index e0a28a9b..8c563ac5 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf3.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf3.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf3 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_3'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'insert_nodes' => '\Agnesoft\AgdbApi\Model\InsertNodesQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'insert_nodes' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'insert_nodes' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf4.php b/agdb_api/php/lib/Model/QueryTypeOneOf4.php index 3ef96db4..e6551866 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf4.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf4.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf4 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_4'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'insert_values' => '\Agnesoft\AgdbApi\Model\InsertValuesQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'insert_values' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'insert_values' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf5.php b/agdb_api/php/lib/Model/QueryTypeOneOf5.php index e2a7a7f2..6fc82e7a 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf5.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf5.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf5 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_5'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'remove' => '\Agnesoft\AgdbApi\Model\RemoveQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'remove' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'remove' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf6.php b/agdb_api/php/lib/Model/QueryTypeOneOf6.php index cf5cb5aa..1b72b99a 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf6.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf6.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf6 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_6'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'remove_aliases' => 'string[]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'remove_aliases' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'remove_aliases' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf7.php b/agdb_api/php/lib/Model/QueryTypeOneOf7.php index ad18855c..65f8655a 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf7.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf7.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf7 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_7'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'remove_index' => '\Agnesoft\AgdbApi\Model\RemoveIndexQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'remove_index' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'remove_index' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf8.php b/agdb_api/php/lib/Model/QueryTypeOneOf8.php index 11bfa1ce..69e3403d 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf8.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf8.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf8 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_8'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'remove_values' => '\Agnesoft\AgdbApi\Model\RemoveValuesQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'remove_values' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'remove_values' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryTypeOneOf9.php b/agdb_api/php/lib/Model/QueryTypeOneOf9.php index 0f417669..be6113d9 100644 --- a/agdb_api/php/lib/Model/QueryTypeOneOf9.php +++ b/agdb_api/php/lib/Model/QueryTypeOneOf9.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class QueryTypeOneOf9 implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryType_oneOf_9'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'search' => '\Agnesoft\AgdbApi\Model\SearchQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'search' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'search' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryValues.php b/agdb_api/php/lib/Model/QueryValues.php index a5b5a3e1..4056b796 100644 --- a/agdb_api/php/lib/Model/QueryValues.php +++ b/agdb_api/php/lib/Model/QueryValues.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class QueryValues implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryValues'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'single' => '\Agnesoft\AgdbApi\Model\DbKeyValue[]', 'multi' => '\Agnesoft\AgdbApi\Model\DbKeyValue[][]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'single' => null, 'multi' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'single' => false, 'multi' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryValuesOneOf.php b/agdb_api/php/lib/Model/QueryValuesOneOf.php index 68c5604f..2ade18ff 100644 --- a/agdb_api/php/lib/Model/QueryValuesOneOf.php +++ b/agdb_api/php/lib/Model/QueryValuesOneOf.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryValuesOneOf implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryValues_oneOf'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'single' => '\Agnesoft\AgdbApi\Model\DbKeyValue[]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'single' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'single' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/QueryValuesOneOf1.php b/agdb_api/php/lib/Model/QueryValuesOneOf1.php index a31a6044..27dcd1fc 100644 --- a/agdb_api/php/lib/Model/QueryValuesOneOf1.php +++ b/agdb_api/php/lib/Model/QueryValuesOneOf1.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,46 +46,46 @@ class QueryValuesOneOf1 implements ModelInterface, ArrayAccess, \JsonSerializabl public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'QueryValues_oneOf_1'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'multi' => '\Agnesoft\AgdbApi\Model\DbKeyValue[][]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'multi' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'multi' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -249,14 +249,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/RemoveIndexQuery.php b/agdb_api/php/lib/Model/RemoveIndexQuery.php index 85b04796..60db7c2b 100644 --- a/agdb_api/php/lib/Model/RemoveIndexQuery.php +++ b/agdb_api/php/lib/Model/RemoveIndexQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,17 +46,17 @@ class RemoveIndexQuery implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'RemoveIndexQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'bytes' => 'int[]', 'i64' => 'int', @@ -70,12 +70,12 @@ class RemoveIndexQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'bytes' => 'int32', 'i64' => 'int64', @@ -89,10 +89,10 @@ class RemoveIndexQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'bytes' => false, 'i64' => false, @@ -106,10 +106,10 @@ class RemoveIndexQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -305,14 +305,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/RemoveQuery.php b/agdb_api/php/lib/Model/RemoveQuery.php index 8d28d737..fd992742 100644 --- a/agdb_api/php/lib/Model/RemoveQuery.php +++ b/agdb_api/php/lib/Model/RemoveQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class RemoveQuery implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'RemoveQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'ids' => '\Agnesoft\AgdbApi\Model\QueryId[]', 'search' => '\Agnesoft\AgdbApi\Model\SearchQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'ids' => null, 'search' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'ids' => false, 'search' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/RemoveValuesQuery.php b/agdb_api/php/lib/Model/RemoveValuesQuery.php index 33a02785..cdb94cee 100644 --- a/agdb_api/php/lib/Model/RemoveValuesQuery.php +++ b/agdb_api/php/lib/Model/RemoveValuesQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class RemoveValuesQuery implements ModelInterface, ArrayAccess, \JsonSerializabl public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'RemoveValuesQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'ids' => '\Agnesoft\AgdbApi\Model\QueryIds', 'keys' => '\Agnesoft\AgdbApi\Model\DbValue[]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'ids' => null, 'keys' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'ids' => false, 'keys' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/SearchQuery.php b/agdb_api/php/lib/Model/SearchQuery.php index 6b0a2bda..7fe2995c 100644 --- a/agdb_api/php/lib/Model/SearchQuery.php +++ b/agdb_api/php/lib/Model/SearchQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,17 +46,17 @@ class SearchQuery implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'SearchQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'algorithm' => '\Agnesoft\AgdbApi\Model\SearchQueryAlgorithm', 'conditions' => '\Agnesoft\AgdbApi\Model\QueryCondition[]', @@ -68,12 +68,12 @@ class SearchQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'algorithm' => null, 'conditions' => null, @@ -85,10 +85,10 @@ class SearchQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'algorithm' => false, 'conditions' => false, @@ -100,10 +100,10 @@ class SearchQuery implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -291,14 +291,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/SearchQueryAlgorithm.php b/agdb_api/php/lib/Model/SearchQueryAlgorithm.php index 032417a1..af6dd476 100644 --- a/agdb_api/php/lib/Model/SearchQueryAlgorithm.php +++ b/agdb_api/php/lib/Model/SearchQueryAlgorithm.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** diff --git a/agdb_api/php/lib/Model/SelectAliasesQuery.php b/agdb_api/php/lib/Model/SelectAliasesQuery.php index 3960998d..a4aea67c 100644 --- a/agdb_api/php/lib/Model/SelectAliasesQuery.php +++ b/agdb_api/php/lib/Model/SelectAliasesQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class SelectAliasesQuery implements ModelInterface, ArrayAccess, \JsonSerializab public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'SelectAliasesQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'ids' => '\Agnesoft\AgdbApi\Model\QueryId[]', 'search' => '\Agnesoft\AgdbApi\Model\SearchQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'ids' => null, 'search' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'ids' => false, 'search' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/SelectEdgeCountQuery.php b/agdb_api/php/lib/Model/SelectEdgeCountQuery.php index 8991ac34..4108e3df 100644 --- a/agdb_api/php/lib/Model/SelectEdgeCountQuery.php +++ b/agdb_api/php/lib/Model/SelectEdgeCountQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,17 +46,17 @@ class SelectEdgeCountQuery implements ModelInterface, ArrayAccess, \JsonSerializ public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'SelectEdgeCountQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'from' => 'bool', 'ids' => '\Agnesoft\AgdbApi\Model\QueryIds', @@ -64,12 +64,12 @@ class SelectEdgeCountQuery implements ModelInterface, ArrayAccess, \JsonSerializ ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'from' => null, 'ids' => null, @@ -77,10 +77,10 @@ class SelectEdgeCountQuery implements ModelInterface, ArrayAccess, \JsonSerializ ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'from' => false, 'ids' => false, @@ -88,10 +88,10 @@ class SelectEdgeCountQuery implements ModelInterface, ArrayAccess, \JsonSerializ ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -263,14 +263,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/SelectKeyCountQuery.php b/agdb_api/php/lib/Model/SelectKeyCountQuery.php index 6cd6f0cf..f3a679ab 100644 --- a/agdb_api/php/lib/Model/SelectKeyCountQuery.php +++ b/agdb_api/php/lib/Model/SelectKeyCountQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class SelectKeyCountQuery implements ModelInterface, ArrayAccess, \JsonSerializa public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'SelectKeyCountQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'ids' => '\Agnesoft\AgdbApi\Model\QueryId[]', 'search' => '\Agnesoft\AgdbApi\Model\SearchQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'ids' => null, 'search' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'ids' => false, 'search' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/SelectKeysQuery.php b/agdb_api/php/lib/Model/SelectKeysQuery.php index 0f351847..ea77567e 100644 --- a/agdb_api/php/lib/Model/SelectKeysQuery.php +++ b/agdb_api/php/lib/Model/SelectKeysQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class SelectKeysQuery implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'SelectKeysQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'ids' => '\Agnesoft\AgdbApi\Model\QueryId[]', 'search' => '\Agnesoft\AgdbApi\Model\SearchQuery' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'ids' => null, 'search' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'ids' => false, 'search' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/SelectValuesQuery.php b/agdb_api/php/lib/Model/SelectValuesQuery.php index b96cebbc..fad14d3e 100644 --- a/agdb_api/php/lib/Model/SelectValuesQuery.php +++ b/agdb_api/php/lib/Model/SelectValuesQuery.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -46,49 +46,49 @@ class SelectValuesQuery implements ModelInterface, ArrayAccess, \JsonSerializabl public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'SelectValuesQuery'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'ids' => '\Agnesoft\AgdbApi\Model\QueryIds', 'keys' => '\Agnesoft\AgdbApi\Model\DbValue[]' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'ids' => null, 'keys' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'ids' => false, 'keys' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -256,14 +256,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ServerDatabase.php b/agdb_api/php/lib/Model/ServerDatabase.php index 672ecd3c..d07cb291 100644 --- a/agdb_api/php/lib/Model/ServerDatabase.php +++ b/agdb_api/php/lib/Model/ServerDatabase.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,17 +45,17 @@ class ServerDatabase implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'ServerDatabase'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'backup' => 'int', 'db' => 'string', @@ -66,12 +66,12 @@ class ServerDatabase implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'backup' => 'int64', 'db' => null, @@ -82,10 +82,10 @@ class ServerDatabase implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'backup' => false, 'db' => false, @@ -96,10 +96,10 @@ class ServerDatabase implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -283,14 +283,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ServerDatabaseAdminRename.php b/agdb_api/php/lib/Model/ServerDatabaseAdminRename.php index 239a84ef..c24aed8a 100644 --- a/agdb_api/php/lib/Model/ServerDatabaseAdminRename.php +++ b/agdb_api/php/lib/Model/ServerDatabaseAdminRename.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,49 +45,49 @@ class ServerDatabaseAdminRename implements ModelInterface, ArrayAccess, \JsonSer public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'ServerDatabaseAdminRename'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'new_db' => 'string', 'new_owner' => 'string' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'new_db' => null, 'new_owner' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'new_db' => false, 'new_owner' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -255,14 +255,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ServerDatabaseRename.php b/agdb_api/php/lib/Model/ServerDatabaseRename.php index 5d8699cd..6e565eaa 100644 --- a/agdb_api/php/lib/Model/ServerDatabaseRename.php +++ b/agdb_api/php/lib/Model/ServerDatabaseRename.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class ServerDatabaseRename implements ModelInterface, ArrayAccess, \JsonSerializ public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'ServerDatabaseRename'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'new_db' => 'string' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'new_db' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'new_db' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/ServerDatabaseResource.php b/agdb_api/php/lib/Model/ServerDatabaseResource.php index 2f689104..ab8f164f 100644 --- a/agdb_api/php/lib/Model/ServerDatabaseResource.php +++ b/agdb_api/php/lib/Model/ServerDatabaseResource.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class ServerDatabaseResource implements ModelInterface, ArrayAccess, \JsonSerial public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'ServerDatabaseResource'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'resource' => '\Agnesoft\AgdbApi\Model\DbResource' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'resource' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'resource' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/SetLogLevelRequest.php b/agdb_api/php/lib/Model/SetLogLevelRequest.php index a7da158d..2e9a708c 100644 --- a/agdb_api/php/lib/Model/SetLogLevelRequest.php +++ b/agdb_api/php/lib/Model/SetLogLevelRequest.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class SetLogLevelRequest implements ModelInterface, ArrayAccess, \JsonSerializab public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'SetLogLevelRequest'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'new_level' => '\Agnesoft\AgdbApi\Model\LogLevelFilter' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'new_level' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'new_level' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/UserCredentials.php b/agdb_api/php/lib/Model/UserCredentials.php index 09db7525..cf2f8f8b 100644 --- a/agdb_api/php/lib/Model/UserCredentials.php +++ b/agdb_api/php/lib/Model/UserCredentials.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,46 +45,46 @@ class UserCredentials implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'UserCredentials'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'password' => 'string' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'password' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'password' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -248,14 +248,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/UserLogin.php b/agdb_api/php/lib/Model/UserLogin.php index 49fdd432..0de54aab 100644 --- a/agdb_api/php/lib/Model/UserLogin.php +++ b/agdb_api/php/lib/Model/UserLogin.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,49 +45,49 @@ class UserLogin implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'UserLogin'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'password' => 'string', 'username' => 'string' ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'password' => null, 'username' => null ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'password' => false, 'username' => false ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -255,14 +255,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/Model/UserStatus.php b/agdb_api/php/lib/Model/UserStatus.php index 49d49cae..da16af5c 100644 --- a/agdb_api/php/lib/Model/UserStatus.php +++ b/agdb_api/php/lib/Model/UserStatus.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -45,17 +45,17 @@ class UserStatus implements ModelInterface, ArrayAccess, \JsonSerializable public const DISCRIMINATOR = null; /** - * The original name of the model. - * - * @var string - */ + * The original name of the model. + * + * @var string + */ protected static $openAPIModelName = 'UserStatus'; /** - * Array of property to type mappings. Used for (de)serialization - * - * @var string[] - */ + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ protected static $openAPITypes = [ 'admin' => 'bool', 'login' => 'bool', @@ -63,12 +63,12 @@ class UserStatus implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - * @phpstan-var array - * @psalm-var array - */ + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ protected static $openAPIFormats = [ 'admin' => null, 'login' => null, @@ -76,10 +76,10 @@ class UserStatus implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * Array of nullable properties. Used for (de)serialization - * - * @var boolean[] - */ + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ protected static array $openAPINullables = [ 'admin' => false, 'login' => false, @@ -87,10 +87,10 @@ class UserStatus implements ModelInterface, ArrayAccess, \JsonSerializable ]; /** - * If a nullable field gets set to null, insert it here - * - * @var boolean[] - */ + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ protected array $openAPINullablesSetToNull = []; /** @@ -262,14 +262,14 @@ public function __construct(?array $data = null) } /** - * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName - * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the - * $this->openAPINullablesSetToNull array - * - * @param string $variableName - * @param array $fields - * @param mixed $defaultValue - */ + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { diff --git a/agdb_api/php/lib/ObjectSerializer.php b/agdb_api/php/lib/ObjectSerializer.php index 265d4c2c..a8c28b77 100644 --- a/agdb_api/php/lib/ObjectSerializer.php +++ b/agdb_api/php/lib/ObjectSerializer.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: 0.12.10 * Generated by: https://openapi-generator.tech - * Generator version: 7.20.0 + * Generator version: 7.21.0 */ /** @@ -103,11 +103,11 @@ public static function sanitizeForSerialization($data, $type = null, $format = n } } } else { - foreach($data as $property => $value) { + foreach ($data as $property => $value) { $values[$property] = self::sanitizeForSerialization($value); } } - return (object)$values; + return (object) $values; } else { return (string)$data; } @@ -139,7 +139,9 @@ public static function sanitizeFilename($filename) */ public static function sanitizeTimestamp($timestamp) { - if (!is_string($timestamp)) return $timestamp; + if (!is_string($timestamp)) { + return $timestamp; + } return preg_replace('/(:\d{2}.\d{6})\d*/', '$1', $timestamp); } @@ -167,20 +169,20 @@ public static function toPathValue($value) */ private static function isEmptyValue($value, string $openApiType): bool { - # If empty() returns false, it is not empty regardless of its type. + // If empty() returns false, it is not empty regardless of its type. if (!empty($value)) { return false; } - # Null is always empty, as we cannot send a real "null" value in a query parameter. + // Null is always empty, as we cannot send a real "null" value in a query parameter. if ($value === null) { return true; } switch ($openApiType) { - # For numeric values, false and '' are considered empty. - # This comparison is safe for floating point values, since the previous call to empty() will - # filter out values that don't match 0. + // For numeric values, false and '' are considered empty. + // This comparison is safe for floating point values, since the previous call to empty() will + // filter out values that don't match 0. case 'int': case 'integer': return $value !== 0; @@ -189,16 +191,16 @@ private static function isEmptyValue($value, string $openApiType): bool case 'float': return $value !== 0 && $value !== 0.0; - # For boolean values, '' is considered empty + // For boolean values, '' is considered empty case 'bool': case 'boolean': return !in_array($value, [false, 0], true); - # For string values, '' is considered empty. + // For string values, '' is considered empty. case 'string': return $value === ''; - # For all the other types, any value at this point can be considered empty. + // For all the other types, any value at this point can be considered empty. default: return true; } @@ -226,10 +228,10 @@ public static function toQueryValue( bool $required = true ): array { - # Check if we should omit this parameter from the query. This should only happen when: - # - Parameter is NOT required; AND - # - its value is set to a value that is equivalent to "empty", depending on its OpenAPI type. For - # example, 0 as "int" or "boolean" is NOT an empty value. + // Check if we should omit this parameter from the query. This should only happen when: + // - Parameter is NOT required; AND + // - its value is set to a value that is equivalent to "empty", depending on its OpenAPI type. For + // example, 0 as "int" or "boolean" is NOT an empty value. if (self::isEmptyValue($value, $openApiType)) { if ($required) { return ["{$paramName}" => '']; @@ -238,8 +240,8 @@ public static function toQueryValue( } } - # Handle DateTime objects in query - if($openApiType === "\\DateTime" && $value instanceof \DateTime) { + // Handle DateTime objects in query + if ($openApiType === "\\DateTime" && $value instanceof \DateTime) { return ["{$paramName}" => $value->format(self::$dateTimeFormat)]; } @@ -249,10 +251,12 @@ public static function toQueryValue( // since \GuzzleHttp\Psr7\Query::build fails with nested arrays // need to flatten array first $flattenArray = function ($arr, $name, &$result = []) use (&$flattenArray, $style, $explode) { - if (!is_array($arr)) return $arr; + if (!is_array($arr)) { + return $arr; + } foreach ($arr as $k => $v) { - $prop = ($style === 'deepObject') ? $prop = "{$name}[{$k}]" : $k; + $prop = ($style === 'deepObject') ? "{$name}[{$k}]" : $k; if (is_array($v)) { $flattenArray($v, $prop, $result); @@ -497,7 +501,7 @@ public static function deserialize($data, $class, $httpHeaders = null) $data = is_string($data) ? json_decode($data) : $data; if (is_array($data)) { - $data = (object)$data; + $data = (object) $data; } // If a discriminator is defined and points to a valid subclass, use it. @@ -536,20 +540,20 @@ public static function deserialize($data, $class, $httpHeaders = null) } /** - * Build a query string from an array of key value pairs. - * - * This function can use the return value of `parse()` to build a query - * string. This function does not modify the provided keys when an array is - * encountered (like `http_build_query()` would). - * - * The function is copied from https://github.com/guzzle/psr7/blob/a243f80a1ca7fe8ceed4deee17f12c1930efe662/src/Query.php#L59-L112 - * with a modification which is described in https://github.com/guzzle/psr7/pull/603 - * - * @param array $params Query string parameters. - * @param int|false $encoding Set to false to not encode, PHP_QUERY_RFC3986 - * to encode using RFC3986, or PHP_QUERY_RFC1738 - * to encode using RFC1738. - */ + * Build a query string from an array of key value pairs. + * + * This function can use the return value of `parse()` to build a query + * string. This function does not modify the provided keys when an array is + * encountered (like `http_build_query()` would). + * + * The function is copied from https://github.com/guzzle/psr7/blob/a243f80a1ca7fe8ceed4deee17f12c1930efe662/src/Query.php#L59-L112 + * with a modification which is described in https://github.com/guzzle/psr7/pull/603 + * + * @param array $params Query string parameters. + * @param int|false $encoding Set to false to not encode, PHP_QUERY_RFC3986 + * to encode using RFC3986, or PHP_QUERY_RFC1738 + * to encode using RFC1738. + */ public static function buildQuery(array $params, $encoding = PHP_QUERY_RFC3986): string { if (!$params) {