diff --git a/.github/workflows/draft-release-from-pr.yml b/.github/workflows/draft-release-from-pr.yml deleted file mode 100644 index 794d1750..00000000 --- a/.github/workflows/draft-release-from-pr.yml +++ /dev/null @@ -1,92 +0,0 @@ -name: Draft Release from PR - -on: - push: - branches: - - master - -permissions: - contents: write - pull-requests: read - -jobs: - draft-release: - runs-on: ubuntu-latest - if: "!startsWith(github.event.head_commit.message, 'release ')" - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Get last merged PR - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - gh pr list \ - --state merged \ - --base master \ - --limit 1 \ - --json number,title,body,labels \ - > pr.json - - PR_NUM=$(jq -r '.[0].number // "none"' pr.json) - PR_TITLE=$(jq -r '.[0].title // "none"' pr.json) - echo "Found merged PR: #$PR_NUM - $PR_TITLE" - - - name: Get latest release version - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - LAST_TAG=$(gh release list --limit 1 --json tagName -q '.[0].tagName') - - if [[ -z "$LAST_TAG" || "$LAST_TAG" == "null" ]]; then - echo "No existing release found. A release tag is required to calculate the next version." - exit 1 - fi - - echo "Found latest release: $LAST_TAG" - echo "LAST_TAG=$LAST_TAG" >> $GITHUB_ENV - - - name: Calculate next version from labels - run: | - V="${LAST_TAG#v}" - - MAJOR=$(echo $V | cut -d. -f1) - MINOR=$(echo $V | cut -d. -f2) - PATCH=$(echo $V | cut -d. -f3) - - LABELS=$(jq -r '.[0].labels[].name' pr.json) - echo "Found labels: $LABELS" - - if echo "$LABELS" | grep -q "major"; then - echo "Bumping MAJOR version" - MAJOR=$((MAJOR+1)) - MINOR=0 - PATCH=0 - elif echo "$LABELS" | grep -q "minor"; then - echo "Bumping MINOR version" - MINOR=$((MINOR+1)) - PATCH=0 - else - echo "Bumping PATCH version" - PATCH=$((PATCH+1)) - fi - - echo "Calculated next version: v$MAJOR.$MINOR.$PATCH" - echo "VERSION=v$MAJOR.$MINOR.$PATCH" >> $GITHUB_ENV - - - name: Create DRAFT release using PR BODY - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - PR_BODY=$(jq -r '.[0].body // ""' pr.json) - - echo "Creating draft release..." - echo "Version: $VERSION" - - gh release create "$VERSION" \ - --draft \ - --title "$VERSION" \ - --notes "$PR_BODY" - - echo "Draft release created successfully!" \ No newline at end of file diff --git a/.github/workflows/publish-release-on-pr-merge.yml b/.github/workflows/publish-release-on-pr-merge.yml new file mode 100644 index 00000000..337ca9bd --- /dev/null +++ b/.github/workflows/publish-release-on-pr-merge.yml @@ -0,0 +1,96 @@ +name: Publish Release on PR Merge + +on: + pull_request: + types: [closed] + branches: [master] + +permissions: + contents: write + pull-requests: read + +jobs: + publish-release: + runs-on: ubuntu-latest + if: >- + github.event.pull_request.merged == true && + startsWith(github.event.pull_request.head.ref, 'fireblocks-api-spec/generated/') + steps: + - name: Check for existing release + id: existing + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PR_NUMBER: ${{ github.event.pull_request.number }} + run: | + marker="" + existing_url=$(gh release list --limit 20 --json tagName,url \ + --jq '.[].tagName' | while read -r tag; do + body=$(gh release view "$tag" --json body --jq '.body') + if [[ "$body" == *"$marker"* ]]; then + gh release view "$tag" --json url --jq '.url' + break + fi + done) + + if [[ -n "$existing_url" ]]; then + echo "Release for PR #${PR_NUMBER} was already published (found idempotency marker) - skipping." + echo "Existing release: $existing_url" + echo "skip=true" >> "$GITHUB_OUTPUT" + else + echo "skip=false" >> "$GITHUB_OUTPUT" + fi + + - name: Calculate next version + id: version + if: steps.existing.outputs.skip == 'false' + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PR_TITLE: ${{ github.event.pull_request.title }} + run: | + LAST_TAG=$(gh release list --limit 1 --json tagName -q '.[0].tagName') + if [[ -z "$LAST_TAG" || "$LAST_TAG" == "null" ]]; then + echo "ERROR: No existing release found. A release tag is required to calculate the next version." + exit 1 + fi + echo "Found latest release: $LAST_TAG" + + V="${LAST_TAG#v}" + MAJOR=$(echo "$V" | cut -d. -f1) + MINOR=$(echo "$V" | cut -d. -f2) + PATCH=$(echo "$V" | cut -d. -f3) + + if [[ "$PR_TITLE" =~ \(major\) ]]; then + echo "Bumping MAJOR version" + MAJOR=$((MAJOR + 1)) + MINOR=0 + PATCH=0 + elif [[ "$PR_TITLE" =~ \(minor\) ]]; then + echo "Bumping MINOR version" + MINOR=$((MINOR + 1)) + PATCH=0 + else + echo "Bumping PATCH version" + PATCH=$((PATCH + 1)) + fi + + echo "version=v${MAJOR}.${MINOR}.${PATCH}" >> "$GITHUB_OUTPUT" + + - name: Create published release + if: steps.existing.outputs.skip == 'false' + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PR_NUMBER: ${{ github.event.pull_request.number }} + PR_BODY: ${{ github.event.pull_request.body }} + MERGE_SHA: ${{ github.event.pull_request.merge_commit_sha }} + VERSION: ${{ steps.version.outputs.version }} + run: | + marker="" + notes=$(printf '%s\n\n%s' "$PR_BODY" "$marker") + + echo "Creating published release: $VERSION (target: $MERGE_SHA)" + gh release create "$VERSION" \ + --target "$MERGE_SHA" \ + --title "$VERSION" \ + --notes "$notes" + + echo "Published release created successfully!" diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 5222d78c..bed17982 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -3,6 +3,12 @@ name: Upload Python Package on: release: types: [ published ] + workflow_dispatch: + inputs: + version: + description: 'Version to use for this test run (no commit/push/tag/publish will actually happen)' + required: false + default: '0.0.0-test' jobs: bump-version: @@ -32,10 +38,15 @@ jobs: npm i -g auto-changelog - name: Bump version + env: + INITIAL_TAG: ${{ github.event.release.tag_name || inputs.version }} + # TEMPORARY DRY-RUN OVERRIDE - forces test mode even for real releases. + # Original: ${{ github.event_name == 'workflow_dispatch' }} + # Revert this commit before running a real release. + IS_TEST_RUN: 'true' run: | - initialTag=${{ github.event.release.tag_name }} - tag="${initialTag//[v]/}" - echo $tag + tag="${INITIAL_TAG//[v]/}" + echo "$tag" git remote update git fetch echo "finished fetching" @@ -44,19 +55,26 @@ jobs: git config --global user.email "github-actions@github.com" git config --global user.name "Github Actions" echo "finished configuration" - bump-my-version bump --config-file .bump_version.toml --current-version 0.0.0 --new-version $tag + bump-my-version bump --config-file .bump_version.toml --current-version 0.0.0 --new-version "$tag" echo "bumpversion finished" auto-changelog git add . git commit -m "release $tag" - git push + if [ "$IS_TEST_RUN" = "true" ]; then + echo "Test run: skipping git push" + else + git push + fi - name: Move tag + # TEMPORARY DRY-RUN OVERRIDE - original: github.event_name == 'release' + if: false + env: + TAG_NAME: ${{ github.event.release.tag_name }} run: | - TAG_NAME=${{ github.event.release.tag_name }} - echo $TAG_NAME - git tag --force $TAG_NAME - git push --force origin $TAG_NAME + echo "$TAG_NAME" + git tag --force "$TAG_NAME" + git push --force origin "$TAG_NAME" publish: needs: bump-version @@ -85,5 +103,14 @@ jobs: run: python -m build - name: Publish package to PyPI + # TEMPORARY DRY-RUN OVERRIDE - original: github.event_name == 'release' + if: false uses: pypa/gh-action-pypi-publish@release/v1 - # No user/password needed - OIDC handles authentication \ No newline at end of file + # No user/password needed - OIDC handles authentication + + - name: Validate package (dry run) + # TEMPORARY DRY-RUN OVERRIDE - original: github.event_name == 'workflow_dispatch' + if: true + run: | + pip install twine + twine check dist/* \ No newline at end of file diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index e39607ee..0941ec07 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -181,6 +181,8 @@ docs/ChannelDvnConfigWithConfirmationsSendConfig.md docs/ChapsAddress.md docs/ChapsDestination.md docs/ChapsPaymentInfo.md +docs/CipsAddress.md +docs/CipsDestination.md docs/ClaimRewardsRequest.md docs/CollectionBurnRequestDto.md docs/CollectionBurnResponseDto.md @@ -456,6 +458,10 @@ docs/FiatTransfer.md docs/FixedAmountTypeEnum.md docs/FixedFee.md docs/FlowDirection.md +docs/FpsHkAddress.md +docs/FpsHkDestination.md +docs/FpsUkAddress.md +docs/FpsUkDestination.md docs/FreezeTransactionResponse.md docs/FunctionDoc.md docs/Funds.md @@ -515,6 +521,8 @@ docs/IdentificationPolicyOverride.md docs/IdlType.md docs/InitiatorConfig.md docs/InitiatorConfigPattern.md +docs/InstaPayAddress.md +docs/InstaPayDestination.md docs/InstructionAmount.md docs/InteracAddress.md docs/InteracDestination.md @@ -599,6 +607,8 @@ docs/MomoPaymentInfo.md docs/MpcKey.md docs/MultichainDeploymentMetadata.md docs/NFTsApi.md +docs/NequiAddress.md +docs/NequiDestination.md docs/NetworkChannel.md docs/NetworkConnection.md docs/NetworkConnectionResponse.md @@ -683,6 +693,8 @@ docs/PersonalIdentification.md docs/PersonalIdentificationDocument.md docs/PersonalIdentificationFullName.md docs/PersonalIdentificationType.md +docs/PesonetAddress.md +docs/PesonetDestination.md docs/PixAddress.md docs/PixDestination.md docs/PixPaymentInfo.md @@ -1206,6 +1218,8 @@ docs/WebhookEvent.md docs/WebhookMetric.md docs/WebhookMtls.md docs/WebhookMtlsCsrResponse.md +docs/WebhookOAuth.md +docs/WebhookOAuthResponse.md docs/WebhookPaginatedResponse.md docs/WebhooksApi.md docs/WebhooksV2Api.md @@ -1460,6 +1474,8 @@ fireblocks/models/channel_dvn_config_with_confirmations_send_config.py fireblocks/models/chaps_address.py fireblocks/models/chaps_destination.py fireblocks/models/chaps_payment_info.py +fireblocks/models/cips_address.py +fireblocks/models/cips_destination.py fireblocks/models/claim_rewards_request.py fireblocks/models/collection_burn_request_dto.py fireblocks/models/collection_burn_response_dto.py @@ -1721,6 +1737,10 @@ fireblocks/models/fiat_transfer.py fireblocks/models/fixed_amount_type_enum.py fireblocks/models/fixed_fee.py fireblocks/models/flow_direction.py +fireblocks/models/fps_hk_address.py +fireblocks/models/fps_hk_destination.py +fireblocks/models/fps_uk_address.py +fireblocks/models/fps_uk_destination.py fireblocks/models/freeze_transaction_response.py fireblocks/models/function_doc.py fireblocks/models/funds.py @@ -1778,6 +1798,8 @@ fireblocks/models/identification_policy_override.py fireblocks/models/idl_type.py fireblocks/models/initiator_config.py fireblocks/models/initiator_config_pattern.py +fireblocks/models/insta_pay_address.py +fireblocks/models/insta_pay_destination.py fireblocks/models/instruction_amount.py fireblocks/models/interac_address.py fireblocks/models/interac_destination.py @@ -1858,6 +1880,8 @@ fireblocks/models/modify_validation_key_dto.py fireblocks/models/momo_payment_info.py fireblocks/models/mpc_key.py fireblocks/models/multichain_deployment_metadata.py +fireblocks/models/nequi_address.py +fireblocks/models/nequi_destination.py fireblocks/models/network_channel.py fireblocks/models/network_connection.py fireblocks/models/network_connection_response.py @@ -1937,6 +1961,8 @@ fireblocks/models/personal_identification.py fireblocks/models/personal_identification_document.py fireblocks/models/personal_identification_full_name.py fireblocks/models/personal_identification_type.py +fireblocks/models/pesonet_address.py +fireblocks/models/pesonet_destination.py fireblocks/models/pix_address.py fireblocks/models/pix_destination.py fireblocks/models/pix_payment_info.py @@ -2442,6 +2468,8 @@ fireblocks/models/webhook_event.py fireblocks/models/webhook_metric.py fireblocks/models/webhook_mtls.py fireblocks/models/webhook_mtls_csr_response.py +fireblocks/models/webhook_o_auth.py +fireblocks/models/webhook_o_auth_response.py fireblocks/models/webhook_paginated_response.py fireblocks/models/withdraw_request.py fireblocks/models/workflow_config_status.py @@ -2654,6 +2682,8 @@ test/test_channel_dvn_config_with_confirmations_send_config.py test/test_chaps_address.py test/test_chaps_destination.py test/test_chaps_payment_info.py +test/test_cips_address.py +test/test_cips_destination.py test/test_claim_rewards_request.py test/test_collection_burn_request_dto.py test/test_collection_burn_response_dto.py @@ -2929,6 +2959,10 @@ test/test_fiat_transfer.py test/test_fixed_amount_type_enum.py test/test_fixed_fee.py test/test_flow_direction.py +test/test_fps_hk_address.py +test/test_fps_hk_destination.py +test/test_fps_uk_address.py +test/test_fps_uk_destination.py test/test_freeze_transaction_response.py test/test_function_doc.py test/test_funds.py @@ -2988,6 +3022,8 @@ test/test_identification_policy_override.py test/test_idl_type.py test/test_initiator_config.py test/test_initiator_config_pattern.py +test/test_insta_pay_address.py +test/test_insta_pay_destination.py test/test_instruction_amount.py test/test_interac_address.py test/test_interac_destination.py @@ -3071,6 +3107,8 @@ test/test_modify_validation_key_dto.py test/test_momo_payment_info.py test/test_mpc_key.py test/test_multichain_deployment_metadata.py +test/test_nequi_address.py +test/test_nequi_destination.py test/test_network_channel.py test/test_network_connection.py test/test_network_connection_response.py @@ -3156,6 +3194,8 @@ test/test_personal_identification.py test/test_personal_identification_document.py test/test_personal_identification_full_name.py test/test_personal_identification_type.py +test/test_pesonet_address.py +test/test_pesonet_destination.py test/test_pix_address.py test/test_pix_destination.py test/test_pix_payment_info.py @@ -3679,6 +3719,8 @@ test/test_webhook_event.py test/test_webhook_metric.py test/test_webhook_mtls.py test/test_webhook_mtls_csr_response.py +test/test_webhook_o_auth.py +test/test_webhook_o_auth_response.py test/test_webhook_paginated_response.py test/test_webhooks_api.py test/test_webhooks_v2_api.py diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 499d360b..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,278 +0,0 @@ -# Changelog - -All notable changes to this project will be documented in this file. - -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - -## [v24.0.0](https://github.com/fireblocks/py-sdk/compare/v22.0.0...v24.0.0) - 2026-07-23 - -### Merged - -- Generated SDK #2700459745 (major) [`#146`](https://github.com/fireblocks/py-sdk/pull/146) - -## [v22.0.0](https://github.com/fireblocks/py-sdk/compare/v21.0.0...v22.0.0) - 2026-06-28 - -### Merged - -- Generated SDK #5347 [`#144`](https://github.com/fireblocks/py-sdk/pull/144) - -## [v21.0.0](https://github.com/fireblocks/py-sdk/compare/v20.0.0...v21.0.0) - 2026-06-11 - -### Merged - -- Generated SDK #5364 [`#142`](https://github.com/fireblocks/py-sdk/pull/142) - -## [v20.0.0](https://github.com/fireblocks/py-sdk/compare/v19.1.0...v20.0.0) - 2026-06-02 - -### Merged - -- Generated SDK #2839 (major) [`#141`](https://github.com/fireblocks/py-sdk/pull/141) - -## [v19.1.0](https://github.com/fireblocks/py-sdk/compare/v19.0.0...v19.1.0) - 2026-05-27 - -### Merged - -- Generated SDK #2710 (minor) [`#140`](https://github.com/fireblocks/py-sdk/pull/140) - -## [v19.0.0](https://github.com/fireblocks/py-sdk/compare/v18.0.0...v19.0.0) - 2026-05-17 - -### Merged - -- Generated SDK #7742 (major) [`#139`](https://github.com/fireblocks/py-sdk/pull/139) - -## [v18.0.0](https://github.com/fireblocks/py-sdk/compare/v17.0.0...v18.0.0) - 2026-05-07 - -### Merged - -- Generated SDK #3222 (major) [`#138`](https://github.com/fireblocks/py-sdk/pull/138) - -## [v17.0.0](https://github.com/fireblocks/py-sdk/compare/v16.0.0...v17.0.0) - 2026-04-20 - -### Merged - -- Generated SDK #9605 (major) [`#137`](https://github.com/fireblocks/py-sdk/pull/137) - -## [v16.0.0](https://github.com/fireblocks/py-sdk/compare/v15.0.0...v16.0.0) - 2026-04-06 - -### Merged - -- Generated SDK #3331 [`#135`](https://github.com/fireblocks/py-sdk/pull/135) - -## [v15.0.0](https://github.com/fireblocks/py-sdk/compare/v14.1.0...v15.0.0) - 2026-03-15 - -### Merged - -- Generated SDK #3733 (major) [`#129`](https://github.com/fireblocks/py-sdk/pull/129) - -## [v14.1.0](https://github.com/fireblocks/py-sdk/compare/v14.0.0...v14.1.0) - 2026-02-26 - -### Merged - -- Generated SDK #2167 [`#127`](https://github.com/fireblocks/py-sdk/pull/127) - -## [v14.0.0](https://github.com/fireblocks/py-sdk/compare/v13.0.0...v14.0.0) - 2026-02-03 - -### Merged - -- Generated SDK #4746 [`#123`](https://github.com/fireblocks/py-sdk/pull/123) - -## [v13.0.0](https://github.com/fireblocks/py-sdk/compare/v12.1.2...v13.0.0) - 2025-11-13 - -### Merged - -- Generated SDK #5834 [`#121`](https://github.com/fireblocks/py-sdk/pull/121) - -## [v12.1.2](https://github.com/fireblocks/py-sdk/compare/v12.1.1...v12.1.2) - 2025-10-22 - -### Merged - -- Generated SDK #8293 [`#120`](https://github.com/fireblocks/py-sdk/pull/120) - -## [v12.1.1](https://github.com/fireblocks/py-sdk/compare/v12.1.0...v12.1.1) - 2025-09-29 - -### Merged - -- Generated SDK #6061 [`#119`](https://github.com/fireblocks/py-sdk/pull/119) - -## [v12.1.0](https://github.com/fireblocks/py-sdk/compare/v12.0.0...v12.1.0) - 2025-09-09 - -### Merged - -- Generated SDK #4521 [`#118`](https://github.com/fireblocks/py-sdk/pull/118) - -## [v12.0.0](https://github.com/fireblocks/py-sdk/compare/v11.2.0...v12.0.0) - 2025-09-01 - -### Merged - -- Generated SDK #7741 [`#117`](https://github.com/fireblocks/py-sdk/pull/117) - -## [v11.2.0](https://github.com/fireblocks/py-sdk/compare/v11.1.0...v11.2.0) - 2025-08-18 - -### Merged - -- Generated SDK #3302 [`#116`](https://github.com/fireblocks/py-sdk/pull/116) - -## [v11.1.0](https://github.com/fireblocks/py-sdk/compare/v11.0.0...v11.1.0) - 2025-08-11 - -### Merged - -- Generated SDK #1782 [`#115`](https://github.com/fireblocks/py-sdk/pull/115) - -## [v11.0.0](https://github.com/fireblocks/py-sdk/compare/v10.4.0...v11.0.0) - 2025-07-15 - -### Merged - -- Generated SDK #5610 [`#114`](https://github.com/fireblocks/py-sdk/pull/114) - -## [v10.4.0](https://github.com/fireblocks/py-sdk/compare/v10.3.0...v10.4.0) - 2025-06-29 - -### Merged - -- Generated SDK #1492 [`#113`](https://github.com/fireblocks/py-sdk/pull/113) - -## [v10.3.0](https://github.com/fireblocks/py-sdk/compare/v10.2.0...v10.3.0) - 2025-06-18 - -### Merged - -- Generated SDK #4009 [`#112`](https://github.com/fireblocks/py-sdk/pull/112) - -## [v10.2.0](https://github.com/fireblocks/py-sdk/compare/v10.1.1...v10.2.0) - 2025-06-04 - -### Merged - -- Generated SDK #8912 [`#111`](https://github.com/fireblocks/py-sdk/pull/111) - -## [v10.1.1](https://github.com/fireblocks/py-sdk/compare/v10.1.0...v10.1.1) - 2025-05-18 - -### Merged - -- Generated SDK #5019 [`#110`](https://github.com/fireblocks/py-sdk/pull/110) - -## [v10.1.0](https://github.com/fireblocks/py-sdk/compare/v10.0.0...v10.1.0) - 2025-05-07 - -### Merged - -- Generated SDK #7076 [`#107`](https://github.com/fireblocks/py-sdk/pull/107) - -## [v10.0.0](https://github.com/fireblocks/py-sdk/compare/v9.0.1...v10.0.0) - 2025-04-20 - -### Merged - -- Generated SDK #4794 [`#105`](https://github.com/fireblocks/py-sdk/pull/105) - -## [v9.0.1](https://github.com/fireblocks/py-sdk/compare/v9.0.0...v9.0.1) - 2025-04-07 - -### Merged - -- Generated SDK #3065 [`#104`](https://github.com/fireblocks/py-sdk/pull/104) - -## [v9.0.0](https://github.com/fireblocks/py-sdk/compare/v8.0.0...v9.0.0) - 2025-03-27 - -### Merged - -- Generated SDK #619 [`#102`](https://github.com/fireblocks/py-sdk/pull/102) - -## [v8.0.0](https://github.com/fireblocks/py-sdk/compare/v7.1.0...v8.0.0) - 2025-03-17 - -### Merged - -- Generated SDK #645 [`#101`](https://github.com/fireblocks/py-sdk/pull/101) -- Generated SDK #726 [`#99`](https://github.com/fireblocks/py-sdk/pull/99) - -## [v7.1.0](https://github.com/fireblocks/py-sdk/compare/v7.0.1...v7.1.0) - 2025-02-25 - -### Merged - -- Generated SDK #9833 [`#96`](https://github.com/fireblocks/py-sdk/pull/96) - -## [v7.0.1](https://github.com/fireblocks/py-sdk/compare/v7.0.0...v7.0.1) - 2025-02-12 - -### Merged - -- Generated SDK #4262 [`#95`](https://github.com/fireblocks/py-sdk/pull/95) - -## [v7.0.0](https://github.com/fireblocks/py-sdk/compare/v6.0.0...v7.0.0) - 2025-02-02 - -### Merged - -- Generated SDK #538 [`#92`](https://github.com/fireblocks/py-sdk/pull/92) - -## [v6.0.0](https://github.com/fireblocks/py-sdk/compare/v5.0.0...v6.0.0) - 2025-01-08 - -### Merged - -- Generated SDK #8699 [`#89`](https://github.com/fireblocks/py-sdk/pull/89) - -## [v5.0.0](https://github.com/fireblocks/py-sdk/compare/v4.0.0...v5.0.0) - 2024-12-05 - -### Merged - -- Generated SDK #1430 [`#85`](https://github.com/fireblocks/py-sdk/pull/85) -- Update python-package.yml, deprecate macos-12 [`#86`](https://github.com/fireblocks/py-sdk/pull/86) - -## [v4.0.0](https://github.com/fireblocks/py-sdk/compare/v3.0.0...v4.0.0) - 2024-10-31 - -### Merged - -- Generated SDK #5184 [`#82`](https://github.com/fireblocks/py-sdk/pull/82) - -## [v3.0.0](https://github.com/fireblocks/py-sdk/compare/v2.1.0...v3.0.0) - 2024-09-17 - -### Merged - -- Generated SDK #237 [`#81`](https://github.com/fireblocks/py-sdk/pull/81) - -## [v2.1.0](https://github.com/fireblocks/py-sdk/compare/v2.0.0...v2.1.0) - 2024-07-25 - -### Merged - -- Generated SDK #6749 [`#78`](https://github.com/fireblocks/py-sdk/pull/78) - -## [v2.0.0](https://github.com/fireblocks/py-sdk/compare/v1.0.4...v2.0.0) - 2024-07-17 - -### Merged - -- Generated SDK #6152 [`#76`](https://github.com/fireblocks/py-sdk/pull/76) -- Generated SDK #7647 [`#73`](https://github.com/fireblocks/py-sdk/pull/73) -- Generated SDK #7984 [`#70`](https://github.com/fireblocks/py-sdk/pull/70) - -## [v1.0.4](https://github.com/fireblocks/py-sdk/compare/v1.0.3...v1.0.4) - 2024-06-26 - -### Merged - -- Generated SDK #5779 [`#69`](https://github.com/fireblocks/py-sdk/pull/69) -- Generated SDK #913 [`#68`](https://github.com/fireblocks/py-sdk/pull/68) -- Generated SDK #1353 [`#67`](https://github.com/fireblocks/py-sdk/pull/67) -- Generated SDK #9982 [`#66`](https://github.com/fireblocks/py-sdk/pull/66) -- Generated SDK #1362 [`#65`](https://github.com/fireblocks/py-sdk/pull/65) -- Generated SDK #3652 [`#64`](https://github.com/fireblocks/py-sdk/pull/64) - -## [v1.0.3](https://github.com/fireblocks/py-sdk/compare/v1.0.2...v1.0.3) - 2024-06-06 - -### Merged - -- Generated SDK #2648 [`#30`](https://github.com/fireblocks/py-sdk/pull/30) - -## [v1.0.2](https://github.com/fireblocks/py-sdk/compare/v0.0.2-beta...v1.0.2) - 2024-06-04 - -### Merged - -- version 1.0.2 [`#25`](https://github.com/fireblocks/py-sdk/pull/25) -- version 1.0.0 [`#24`](https://github.com/fireblocks/py-sdk/pull/24) - -## v0.0.2-beta - 2024-05-30 - -### Merged - -- version 0.0.2-beta [`#23`](https://github.com/fireblocks/py-sdk/pull/23) -- Update .bumpversion.cfg [`#14`](https://github.com/fireblocks/py-sdk/pull/14) -- Update setup.py [`#13`](https://github.com/fireblocks/py-sdk/pull/13) -- Bug Fixes [`#12`](https://github.com/fireblocks/py-sdk/pull/12) -- update support for beta in bumpversion [`#11`](https://github.com/fireblocks/py-sdk/pull/11) -- Update setup.py [`#10`](https://github.com/fireblocks/py-sdk/pull/10) -- Update setup.py [`#9`](https://github.com/fireblocks/py-sdk/pull/9) -- Added Idempotency & NCW headers support [`#7`](https://github.com/fireblocks/py-sdk/pull/7) -- Added Idempotency & NCW headers support [`#8`](https://github.com/fireblocks/py-sdk/pull/8) -- Update setup.py [`#5`](https://github.com/fireblocks/py-sdk/pull/5) -- API Support Updates [`#4`](https://github.com/fireblocks/py-sdk/pull/4) diff --git a/README.md b/README.md index c2a7576c..2ad4ef04 100644 --- a/README.md +++ b/README.md @@ -863,6 +863,8 @@ Class | Method | HTTP request | Description - [ChapsAddress](docs/ChapsAddress.md) - [ChapsDestination](docs/ChapsDestination.md) - [ChapsPaymentInfo](docs/ChapsPaymentInfo.md) + - [CipsAddress](docs/CipsAddress.md) + - [CipsDestination](docs/CipsDestination.md) - [ClaimRewardsRequest](docs/ClaimRewardsRequest.md) - [CollectionBurnRequestDto](docs/CollectionBurnRequestDto.md) - [CollectionBurnResponseDto](docs/CollectionBurnResponseDto.md) @@ -1124,6 +1126,10 @@ Class | Method | HTTP request | Description - [FixedAmountTypeEnum](docs/FixedAmountTypeEnum.md) - [FixedFee](docs/FixedFee.md) - [FlowDirection](docs/FlowDirection.md) + - [FpsHkAddress](docs/FpsHkAddress.md) + - [FpsHkDestination](docs/FpsHkDestination.md) + - [FpsUkAddress](docs/FpsUkAddress.md) + - [FpsUkDestination](docs/FpsUkDestination.md) - [FreezeTransactionResponse](docs/FreezeTransactionResponse.md) - [FunctionDoc](docs/FunctionDoc.md) - [Funds](docs/Funds.md) @@ -1181,6 +1187,8 @@ Class | Method | HTTP request | Description - [IdlType](docs/IdlType.md) - [InitiatorConfig](docs/InitiatorConfig.md) - [InitiatorConfigPattern](docs/InitiatorConfigPattern.md) + - [InstaPayAddress](docs/InstaPayAddress.md) + - [InstaPayDestination](docs/InstaPayDestination.md) - [InstructionAmount](docs/InstructionAmount.md) - [InteracAddress](docs/InteracAddress.md) - [InteracDestination](docs/InteracDestination.md) @@ -1261,6 +1269,8 @@ Class | Method | HTTP request | Description - [MomoPaymentInfo](docs/MomoPaymentInfo.md) - [MpcKey](docs/MpcKey.md) - [MultichainDeploymentMetadata](docs/MultichainDeploymentMetadata.md) + - [NequiAddress](docs/NequiAddress.md) + - [NequiDestination](docs/NequiDestination.md) - [NetworkChannel](docs/NetworkChannel.md) - [NetworkConnection](docs/NetworkConnection.md) - [NetworkConnectionResponse](docs/NetworkConnectionResponse.md) @@ -1340,6 +1350,8 @@ Class | Method | HTTP request | Description - [PersonalIdentificationDocument](docs/PersonalIdentificationDocument.md) - [PersonalIdentificationFullName](docs/PersonalIdentificationFullName.md) - [PersonalIdentificationType](docs/PersonalIdentificationType.md) + - [PesonetAddress](docs/PesonetAddress.md) + - [PesonetDestination](docs/PesonetDestination.md) - [PixAddress](docs/PixAddress.md) - [PixDestination](docs/PixDestination.md) - [PixPaymentInfo](docs/PixPaymentInfo.md) @@ -1845,6 +1857,8 @@ Class | Method | HTTP request | Description - [WebhookMetric](docs/WebhookMetric.md) - [WebhookMtls](docs/WebhookMtls.md) - [WebhookMtlsCsrResponse](docs/WebhookMtlsCsrResponse.md) + - [WebhookOAuth](docs/WebhookOAuth.md) + - [WebhookOAuthResponse](docs/WebhookOAuthResponse.md) - [WebhookPaginatedResponse](docs/WebhookPaginatedResponse.md) - [WithdrawRequest](docs/WithdrawRequest.md) - [WorkflowConfigStatus](docs/WorkflowConfigStatus.md) diff --git a/docs/CipsAddress.md b/docs/CipsAddress.md new file mode 100644 index 00000000..ac893567 --- /dev/null +++ b/docs/CipsAddress.md @@ -0,0 +1,33 @@ +# CipsAddress + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**account_holder** | [**AccountHolderDetails**](AccountHolderDetails.md) | | +**bank_name** | **str** | Name of the recipient's bank | +**bank_country** | **str** | ISO 3166-1 alpha-2 country code of the bank | +**swift_code** | **str** | SWIFT/BIC code of the recipient bank | +**account_number** | **str** | Recipient bank account number | + +## Example + +```python +from fireblocks.models.cips_address import CipsAddress + +# TODO update the JSON string below +json = "{}" +# create an instance of CipsAddress from a JSON string +cips_address_instance = CipsAddress.from_json(json) +# print the JSON string representation of the object +print(CipsAddress.to_json()) + +# convert the object into a dict +cips_address_dict = cips_address_instance.to_dict() +# create an instance of CipsAddress from a dict +cips_address_from_dict = CipsAddress.from_dict(cips_address_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/CipsDestination.md b/docs/CipsDestination.md new file mode 100644 index 00000000..f87dcb0d --- /dev/null +++ b/docs/CipsDestination.md @@ -0,0 +1,31 @@ +# CipsDestination + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **str** | The transfer rail type for the destination | +**address** | [**CipsAddress**](CipsAddress.md) | | +**reference_id** | **str** | Optional payment reference | [optional] + +## Example + +```python +from fireblocks.models.cips_destination import CipsDestination + +# TODO update the JSON string below +json = "{}" +# create an instance of CipsDestination from a JSON string +cips_destination_instance = CipsDestination.from_json(json) +# print the JSON string representation of the object +print(CipsDestination.to_json()) + +# convert the object into a dict +cips_destination_dict = cips_destination_instance.to_dict() +# create an instance of CipsDestination from a dict +cips_destination_from_dict = CipsDestination.from_dict(cips_destination_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/CreateWebhookRequest.md b/docs/CreateWebhookRequest.md index 95d16ae0..58f99239 100644 --- a/docs/CreateWebhookRequest.md +++ b/docs/CreateWebhookRequest.md @@ -10,6 +10,8 @@ Name | Type | Description | Notes **events** | [**List[WebhookEvent]**](WebhookEvent.md) | event types the webhook will subscribe to | **enabled** | **bool** | The status of the webhook. If false, the webhook will not receive notifications. | [optional] [default to True] **mtls** | [**WebhookMtls**](WebhookMtls.md) | | [optional] +**oauth** | [**WebhookOAuth**](WebhookOAuth.md) | | [optional] +**custom_headers** | **Dict[str, str]** | Custom HTTP headers attached to every notification delivered by this webhook (max 10). Header names must be valid RFC 7230 tokens (printable ASCII, no separators), are treated case-insensitively (duplicate names differing only in case are rejected), and may not exceed 128 characters. The following names are reserved and cannot be used: Host, Content-Type, Content-Length, Transfer-Encoding, Connection, User-Agent, Accept, Accept-Encoding, Fireblocks-Signature, Fireblocks-Webhook-Signature. Header values are write-only — never returned in responses. | [optional] ## Example diff --git a/docs/Delegation.md b/docs/Delegation.md index 255ceeaf..d5c244bb 100644 --- a/docs/Delegation.md +++ b/docs/Delegation.md @@ -11,7 +11,7 @@ Name | Type | Description | Notes **provider_name** | **str** | The destination validator provider name | **chain_descriptor** | **str** | The protocol identifier (e.g. \"ETH\"/ \"SOL\") to use | **amount** | **str** | Total value of the staking position. For Solana, Lido and Ethereum (compounding validator): includes the original stake plus accumulated rewards. For MATIC, Cosmos and Ethereum (legacy validator): refers to the amount currently staked. | -**rewards_amount** | **str** | The amount staked in the position, measured in the staked asset unit. | +**rewards_amount** | **str** | The amount staked in the position, measured in the staked asset unit. Returned as null for chains where reward tracking is not supported (Cosmos-family chains), instead of a numeric value. | **date_created** | **datetime** | When was the request made (ISO Date). | **date_updated** | **datetime** | When has the position last changed (ISO Date). | **status** | **str** | The current status. | diff --git a/docs/FailureReason.md b/docs/FailureReason.md index a512f841..9cf5f6f3 100644 --- a/docs/FailureReason.md +++ b/docs/FailureReason.md @@ -55,6 +55,10 @@ * `DESTINATION_NOT_WHITELISTED` (value: `'DESTINATION_NOT_WHITELISTED'`) +* `MISSING_DESTINATION_DETAILS` (value: `'MISSING_DESTINATION_DETAILS'`) + +* `MISSING_WORKSPACE_DETAILS` (value: `'MISSING_WORKSPACE_DETAILS'`) + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/FiatDestination.md b/docs/FiatDestination.md index adbd15da..329a7759 100644 --- a/docs/FiatDestination.md +++ b/docs/FiatDestination.md @@ -6,7 +6,8 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **type** | **str** | | -**address** | [**InternalTransferAddress**](InternalTransferAddress.md) | | +**address** | [**PesonetAddress**](PesonetAddress.md) | | +**reference_id** | **str** | Optional payment reference | [optional] ## Example diff --git a/docs/FpsHkAddress.md b/docs/FpsHkAddress.md new file mode 100644 index 00000000..40537135 --- /dev/null +++ b/docs/FpsHkAddress.md @@ -0,0 +1,34 @@ +# FpsHkAddress + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**recipient_legal_name** | **str** | Full legal name of the recipient | [optional] +**account_number** | **str** | Recipient bank account number | [optional] +**bank_code** | **str** | Hong Kong bank code | [optional] +**phone** | **str** | Recipient phone number in E.164 format | [optional] +**email** | **str** | Recipient email address | [optional] +**fps_id** | **str** | Hong Kong FPS identifier | [optional] + +## Example + +```python +from fireblocks.models.fps_hk_address import FpsHkAddress + +# TODO update the JSON string below +json = "{}" +# create an instance of FpsHkAddress from a JSON string +fps_hk_address_instance = FpsHkAddress.from_json(json) +# print the JSON string representation of the object +print(FpsHkAddress.to_json()) + +# convert the object into a dict +fps_hk_address_dict = fps_hk_address_instance.to_dict() +# create an instance of FpsHkAddress from a dict +fps_hk_address_from_dict = FpsHkAddress.from_dict(fps_hk_address_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/FpsHkDestination.md b/docs/FpsHkDestination.md new file mode 100644 index 00000000..668c5d3a --- /dev/null +++ b/docs/FpsHkDestination.md @@ -0,0 +1,30 @@ +# FpsHkDestination + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **str** | The transfer rail type for the destination | +**address** | [**FpsHkAddress**](FpsHkAddress.md) | | + +## Example + +```python +from fireblocks.models.fps_hk_destination import FpsHkDestination + +# TODO update the JSON string below +json = "{}" +# create an instance of FpsHkDestination from a JSON string +fps_hk_destination_instance = FpsHkDestination.from_json(json) +# print the JSON string representation of the object +print(FpsHkDestination.to_json()) + +# convert the object into a dict +fps_hk_destination_dict = fps_hk_destination_instance.to_dict() +# create an instance of FpsHkDestination from a dict +fps_hk_destination_from_dict = FpsHkDestination.from_dict(fps_hk_destination_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/FpsUkAddress.md b/docs/FpsUkAddress.md new file mode 100644 index 00000000..9a021520 --- /dev/null +++ b/docs/FpsUkAddress.md @@ -0,0 +1,31 @@ +# FpsUkAddress + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**account_holder** | [**AccountHolderDetails**](AccountHolderDetails.md) | | +**account_number** | **str** | UK bank account number | +**sort_code** | **str** | UK sort code (format XX-XX-XX) | + +## Example + +```python +from fireblocks.models.fps_uk_address import FpsUkAddress + +# TODO update the JSON string below +json = "{}" +# create an instance of FpsUkAddress from a JSON string +fps_uk_address_instance = FpsUkAddress.from_json(json) +# print the JSON string representation of the object +print(FpsUkAddress.to_json()) + +# convert the object into a dict +fps_uk_address_dict = fps_uk_address_instance.to_dict() +# create an instance of FpsUkAddress from a dict +fps_uk_address_from_dict = FpsUkAddress.from_dict(fps_uk_address_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/FpsUkDestination.md b/docs/FpsUkDestination.md new file mode 100644 index 00000000..fba573a2 --- /dev/null +++ b/docs/FpsUkDestination.md @@ -0,0 +1,30 @@ +# FpsUkDestination + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **str** | The transfer rail type for the destination | +**address** | [**FpsUkAddress**](FpsUkAddress.md) | | + +## Example + +```python +from fireblocks.models.fps_uk_destination import FpsUkDestination + +# TODO update the JSON string below +json = "{}" +# create an instance of FpsUkDestination from a JSON string +fps_uk_destination_instance = FpsUkDestination.from_json(json) +# print the JSON string representation of the object +print(FpsUkDestination.to_json()) + +# convert the object into a dict +fps_uk_destination_dict = fps_uk_destination_instance.to_dict() +# create an instance of FpsUkDestination from a dict +fps_uk_destination_from_dict = FpsUkDestination.from_dict(fps_uk_destination_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/InstaPayAddress.md b/docs/InstaPayAddress.md new file mode 100644 index 00000000..b259574c --- /dev/null +++ b/docs/InstaPayAddress.md @@ -0,0 +1,31 @@ +# InstaPayAddress + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**account_holder** | [**AccountHolderDetails**](AccountHolderDetails.md) | | +**bank_name** | **str** | Name of the recipient's bank or wallet (e.g. BDO, BPI, GCash, Maya) | +**account_number** | **str** | Recipient bank account or wallet number | + +## Example + +```python +from fireblocks.models.insta_pay_address import InstaPayAddress + +# TODO update the JSON string below +json = "{}" +# create an instance of InstaPayAddress from a JSON string +insta_pay_address_instance = InstaPayAddress.from_json(json) +# print the JSON string representation of the object +print(InstaPayAddress.to_json()) + +# convert the object into a dict +insta_pay_address_dict = insta_pay_address_instance.to_dict() +# create an instance of InstaPayAddress from a dict +insta_pay_address_from_dict = InstaPayAddress.from_dict(insta_pay_address_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/InstaPayDestination.md b/docs/InstaPayDestination.md new file mode 100644 index 00000000..dc1e991c --- /dev/null +++ b/docs/InstaPayDestination.md @@ -0,0 +1,30 @@ +# InstaPayDestination + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **str** | The transfer rail type for the destination | +**address** | [**InstaPayAddress**](InstaPayAddress.md) | | + +## Example + +```python +from fireblocks.models.insta_pay_destination import InstaPayDestination + +# TODO update the JSON string below +json = "{}" +# create an instance of InstaPayDestination from a JSON string +insta_pay_destination_instance = InstaPayDestination.from_json(json) +# print the JSON string representation of the object +print(InstaPayDestination.to_json()) + +# convert the object into a dict +insta_pay_destination_dict = insta_pay_destination_instance.to_dict() +# create an instance of InstaPayDestination from a dict +insta_pay_destination_from_dict = InstaPayDestination.from_dict(insta_pay_destination_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/NequiAddress.md b/docs/NequiAddress.md new file mode 100644 index 00000000..af37d716 --- /dev/null +++ b/docs/NequiAddress.md @@ -0,0 +1,29 @@ +# NequiAddress + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**phone** | **str** | Recipient phone number in E.164 format | + +## Example + +```python +from fireblocks.models.nequi_address import NequiAddress + +# TODO update the JSON string below +json = "{}" +# create an instance of NequiAddress from a JSON string +nequi_address_instance = NequiAddress.from_json(json) +# print the JSON string representation of the object +print(NequiAddress.to_json()) + +# convert the object into a dict +nequi_address_dict = nequi_address_instance.to_dict() +# create an instance of NequiAddress from a dict +nequi_address_from_dict = NequiAddress.from_dict(nequi_address_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/NequiDestination.md b/docs/NequiDestination.md new file mode 100644 index 00000000..0c0ff8b0 --- /dev/null +++ b/docs/NequiDestination.md @@ -0,0 +1,30 @@ +# NequiDestination + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **str** | The transfer rail type for the destination | +**address** | [**NequiAddress**](NequiAddress.md) | | + +## Example + +```python +from fireblocks.models.nequi_destination import NequiDestination + +# TODO update the JSON string below +json = "{}" +# create an instance of NequiDestination from a JSON string +nequi_destination_instance = NequiDestination.from_json(json) +# print the JSON string representation of the object +print(NequiDestination.to_json()) + +# convert the object into a dict +nequi_destination_dict = nequi_destination_instance.to_dict() +# create an instance of NequiDestination from a dict +nequi_destination_from_dict = NequiDestination.from_dict(nequi_destination_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/PaymentInstructions.md b/docs/PaymentInstructions.md index d25655d4..f9cacf6f 100644 --- a/docs/PaymentInstructions.md +++ b/docs/PaymentInstructions.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **type** | **str** | The type of destination. Use \"BLOCKCHAIN\" for blockchain address destinations. | -**address** | [**InternalTransferAddress**](InternalTransferAddress.md) | | +**address** | [**PesonetAddress**](PesonetAddress.md) | | **reference_id** | **str** | | [optional] ## Example diff --git a/docs/PaymentInstructionsOneOf.md b/docs/PaymentInstructionsOneOf.md index 40ccef8e..b2ae9281 100644 --- a/docs/PaymentInstructionsOneOf.md +++ b/docs/PaymentInstructionsOneOf.md @@ -5,8 +5,8 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**type** | **str** | | -**address** | [**InternalTransferAddress**](InternalTransferAddress.md) | | +**type** | **str** | The transfer rail type for the destination | +**address** | [**PesonetAddress**](PesonetAddress.md) | | **reference_id** | **str** | | [optional] ## Example diff --git a/docs/PesonetAddress.md b/docs/PesonetAddress.md new file mode 100644 index 00000000..7021eb7f --- /dev/null +++ b/docs/PesonetAddress.md @@ -0,0 +1,31 @@ +# PesonetAddress + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**account_holder** | [**AccountHolderDetails**](AccountHolderDetails.md) | | +**bank_name** | **str** | Name of the recipient's bank | +**account_number** | **str** | Recipient bank account number | + +## Example + +```python +from fireblocks.models.pesonet_address import PesonetAddress + +# TODO update the JSON string below +json = "{}" +# create an instance of PesonetAddress from a JSON string +pesonet_address_instance = PesonetAddress.from_json(json) +# print the JSON string representation of the object +print(PesonetAddress.to_json()) + +# convert the object into a dict +pesonet_address_dict = pesonet_address_instance.to_dict() +# create an instance of PesonetAddress from a dict +pesonet_address_from_dict = PesonetAddress.from_dict(pesonet_address_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/PesonetDestination.md b/docs/PesonetDestination.md new file mode 100644 index 00000000..b67e864f --- /dev/null +++ b/docs/PesonetDestination.md @@ -0,0 +1,30 @@ +# PesonetDestination + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **str** | The transfer rail type for the destination | +**address** | [**PesonetAddress**](PesonetAddress.md) | | + +## Example + +```python +from fireblocks.models.pesonet_destination import PesonetDestination + +# TODO update the JSON string below +json = "{}" +# create an instance of PesonetDestination from a JSON string +pesonet_destination_instance = PesonetDestination.from_json(json) +# print the JSON string representation of the object +print(PesonetDestination.to_json()) + +# convert the object into a dict +pesonet_destination_dict = pesonet_destination_instance.to_dict() +# create an instance of PesonetDestination from a dict +pesonet_destination_from_dict = PesonetDestination.from_dict(pesonet_destination_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/Position.md b/docs/Position.md index d476300d..5789bda9 100644 --- a/docs/Position.md +++ b/docs/Position.md @@ -11,7 +11,7 @@ Name | Type | Description | Notes **provider_name** | **str** | The destination validator provider name | **chain_descriptor** | **str** | The protocol identifier (e.g. \"ETH\"/ \"SOL\") to use | **amount** | **str** | Total value of the staking position. For Solana, Lido and Ethereum (compounding validator): includes the original stake plus accumulated rewards. For MATIC, Cosmos and Ethereum (legacy validator): refers to the amount currently staked. | -**rewards_amount** | **str** | The amount staked in the position, measured in the staked asset unit. | +**rewards_amount** | **str** | The amount staked in the position, measured in the staked asset unit. Returned as null for chains where reward tracking is not supported (Cosmos-family chains), instead of a numeric value. | **date_created** | **datetime** | When was the request made (ISO Date). | **date_updated** | **datetime** | When has the position last changed (ISO Date). | **status** | **str** | The current status. | diff --git a/docs/SolanaRewardsBreakdown.md b/docs/SolanaRewardsBreakdown.md index 3dd2dfaa..1c3907f5 100644 --- a/docs/SolanaRewardsBreakdown.md +++ b/docs/SolanaRewardsBreakdown.md @@ -6,7 +6,7 @@ A breakdown of the staking rewards earned by the position. Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**issuance** | **str** | The issuance reward amount earned by the position, measured in the staked asset unit. | +**inflation** | **str** | The inflation reward amount earned by the position, measured in the staked asset unit. | **mev** | **str** | The MEV reward amount earned by the position, measured in the staked asset unit. | **last_reward_synced_at** | **datetime** | The last time the rewards were synced (ISO Date). | diff --git a/docs/TransferRail.md b/docs/TransferRail.md index d62da8b9..9dacc437 100644 --- a/docs/TransferRail.md +++ b/docs/TransferRail.md @@ -1,6 +1,6 @@ # TransferRail -Transfer rail: * **BLOCKCHAIN** - Transfer over the public blockchain * **INTERNAL** - Internal transfer within the same account (e.g. sub-accounts or same api key) * **SWIFT** - International wire transfer * **IBAN** - International Bank Account Number transfer * **US_WIRE** - Domestic wire transfer within the United States (e.g. FedWire) * **ACH** - Automated Clearing House transfer, typically takes longer but not as expensive as wire transfers * **SEPA** - Euro transfers within the SEPA zone * **SPEI** - Mexican interbank electronic payment system * **PIX** - Brazilian instant payment system * **LBT** - Local bank transfers within Africa * **MOMO** - Mobile money transfers (e.g. M-Pesa) * **CHAPS** - The Clearing House Automated Payment System (CHAPS) is a real-time gross settlement payment system used for transactions in the United Kingdom * **PAYID** - PayID payment identifier system (Australia) * **INTERAC** - Interac electronic funds transfer (Canada) * **INTERNAL_TRANSFER** - Internal transfer between accounts +Transfer rail: * **BLOCKCHAIN** - Transfer over the public blockchain * **INTERNAL** - Internal transfer within the same account (e.g. sub-accounts or same api key) * **SWIFT** - International wire transfer * **IBAN** - International Bank Account Number transfer * **US_WIRE** - Domestic wire transfer within the United States (e.g. FedWire) * **ACH** - Automated Clearing House transfer, typically takes longer but not as expensive as wire transfers * **SEPA** - Euro transfers within the SEPA zone * **SPEI** - Mexican interbank electronic payment system * **PIX** - Brazilian instant payment system * **LBT** - Local bank transfers * **MOMO** - Mobile money transfers (e.g. M-Pesa) * **CHAPS** - The Clearing House Automated Payment System (CHAPS) is a real-time gross settlement payment system used for transactions in the United Kingdom * **PAYID** - PayID payment identifier system (Australia) * **INTERAC** - Interac electronic funds transfer (Canada) * **INTERNAL_TRANSFER** - Internal transfer between accounts * **CIPS** - Cross-Border Interbank Payment System (China) * **NEQUI** - Nequi mobile payment (Colombia) * **FPS_UK** - UK Faster Payments (GBP) * **FPS_HK** - Hong Kong Faster Payment System (HKD) * **INSTA_PAY** - InstaPay instant payment (Philippines) * **PESONET** - PesoNet batch payment (Philippines) ## Enum @@ -34,6 +34,18 @@ Transfer rail: * **BLOCKCHAIN** - Transfer over the public blockchain * **INTER * `INTERNAL_TRANSFER` (value: `'INTERNAL_TRANSFER'`) +* `CIPS` (value: `'CIPS'`) + +* `NEQUI` (value: `'NEQUI'`) + +* `FPS_UK` (value: `'FPS_UK'`) + +* `FPS_HK` (value: `'FPS_HK'`) + +* `INSTA_PAY` (value: `'INSTA_PAY'`) + +* `PESONET` (value: `'PESONET'`) + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/UpdateWebhookRequest.md b/docs/UpdateWebhookRequest.md index 0c5887fc..7ac4e33a 100644 --- a/docs/UpdateWebhookRequest.md +++ b/docs/UpdateWebhookRequest.md @@ -10,6 +10,8 @@ Name | Type | Description | Notes **events** | [**List[WebhookEvent]**](WebhookEvent.md) | The events that the webhook will be subscribed to | [optional] **enabled** | **bool** | The status of the webhook | [optional] **mtls** | [**WebhookMtls**](WebhookMtls.md) | | [optional] +**oauth** | [**WebhookOAuth**](WebhookOAuth.md) | | [optional] +**custom_headers** | **Dict[str, Optional[str]]** | Custom headers delta: entries with a string value are added or updated, entries with a `null` value delete that header (no-op if absent), and header names omitted from the payload are left untouched. The resulting set is limited to 10 headers. Header names are case-insensitive, up to 128 characters, and limited to valid HTTP header name characters. Some system header names are reserved and cannot be used. Values are write-only — never returned in responses. | [optional] ## Example diff --git a/docs/Webhook.md b/docs/Webhook.md index 494628b3..d501b55d 100644 --- a/docs/Webhook.md +++ b/docs/Webhook.md @@ -13,6 +13,8 @@ Name | Type | Description | Notes **created_at** | **int** | The date and time the webhook was created in milliseconds | **updated_at** | **int** | The date and time the webhook was last updated in milliseconds | **mtls** | [**WebhookMtls**](WebhookMtls.md) | | [optional] +**oauth** | [**WebhookOAuthResponse**](WebhookOAuthResponse.md) | | [optional] +**custom_headers** | **List[str]** | Names of the custom headers configured for this webhook. Header values are never returned. | [optional] ## Example diff --git a/docs/WebhookOAuth.md b/docs/WebhookOAuth.md new file mode 100644 index 00000000..58302338 --- /dev/null +++ b/docs/WebhookOAuth.md @@ -0,0 +1,33 @@ +# WebhookOAuth + +OAuth 2.0 client credentials configuration for the webhook. When set, the webhook dispatcher fetches a bearer token from the configured token endpoint before each delivery and attaches it as `Authorization: Bearer {token}`. Send `null` to remove OAuth configuration entirely. + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**client_id** | **str** | OAuth client ID used to authenticate with the token endpoint. | +**client_secret** | **str** | OAuth client secret. Write-only — never returned in responses. | +**url** | **str** | Token endpoint URL. Must be HTTPS. | +**mtls_client_signed_cert** | **str** | Signed client certificate PEM used for mTLS when connecting to the token endpoint. Same format as the webhook mTLS certificate. Send `null` to remove. | [optional] + +## Example + +```python +from fireblocks.models.webhook_o_auth import WebhookOAuth + +# TODO update the JSON string below +json = "{}" +# create an instance of WebhookOAuth from a JSON string +webhook_o_auth_instance = WebhookOAuth.from_json(json) +# print the JSON string representation of the object +print(WebhookOAuth.to_json()) + +# convert the object into a dict +webhook_o_auth_dict = webhook_o_auth_instance.to_dict() +# create an instance of WebhookOAuth from a dict +webhook_o_auth_from_dict = WebhookOAuth.from_dict(webhook_o_auth_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/WebhookOAuthResponse.md b/docs/WebhookOAuthResponse.md new file mode 100644 index 00000000..6548a9ec --- /dev/null +++ b/docs/WebhookOAuthResponse.md @@ -0,0 +1,32 @@ +# WebhookOAuthResponse + +OAuth 2.0 client credentials configuration for the webhook. Present only when OAuth is configured. The `clientSecret` is write-only and is never returned. + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**client_id** | **str** | OAuth client ID used to authenticate with the token endpoint. | +**url** | **str** | Token endpoint URL. | +**mtls_client_signed_cert** | **str** | Signed client certificate PEM used for mTLS when connecting to the token endpoint. | [optional] + +## Example + +```python +from fireblocks.models.webhook_o_auth_response import WebhookOAuthResponse + +# TODO update the JSON string below +json = "{}" +# create an instance of WebhookOAuthResponse from a JSON string +webhook_o_auth_response_instance = WebhookOAuthResponse.from_json(json) +# print the JSON string representation of the object +print(WebhookOAuthResponse.to_json()) + +# convert the object into a dict +webhook_o_auth_response_dict = webhook_o_auth_response_instance.to_dict() +# create an instance of WebhookOAuthResponse from a dict +webhook_o_auth_response_from_dict = WebhookOAuthResponse.from_dict(webhook_o_auth_response_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/fireblocks/__init__.py b/fireblocks/__init__.py index efc988df..221ae0f1 100644 --- a/fireblocks/__init__.py +++ b/fireblocks/__init__.py @@ -14,8 +14,7 @@ Do not edit the class manually. """ # noqa: E501 - -__version__ = "24.0.0" +__version__ = "0.0.0" # import apis into sdk package from fireblocks.api.api_user_api import ApiUserApi @@ -334,6 +333,8 @@ from fireblocks.models.chaps_address import ChapsAddress from fireblocks.models.chaps_destination import ChapsDestination from fireblocks.models.chaps_payment_info import ChapsPaymentInfo +from fireblocks.models.cips_address import CipsAddress +from fireblocks.models.cips_destination import CipsDestination from fireblocks.models.claim_rewards_request import ClaimRewardsRequest from fireblocks.models.collection_burn_request_dto import CollectionBurnRequestDto from fireblocks.models.collection_burn_response_dto import CollectionBurnResponseDto @@ -765,6 +766,10 @@ from fireblocks.models.fixed_amount_type_enum import FixedAmountTypeEnum from fireblocks.models.fixed_fee import FixedFee from fireblocks.models.flow_direction import FlowDirection +from fireblocks.models.fps_hk_address import FpsHkAddress +from fireblocks.models.fps_hk_destination import FpsHkDestination +from fireblocks.models.fps_uk_address import FpsUkAddress +from fireblocks.models.fps_uk_destination import FpsUkDestination from fireblocks.models.freeze_transaction_response import FreezeTransactionResponse from fireblocks.models.function_doc import FunctionDoc from fireblocks.models.funds import Funds @@ -856,6 +861,8 @@ from fireblocks.models.idl_type import IdlType from fireblocks.models.initiator_config import InitiatorConfig from fireblocks.models.initiator_config_pattern import InitiatorConfigPattern +from fireblocks.models.insta_pay_address import InstaPayAddress +from fireblocks.models.insta_pay_destination import InstaPayDestination from fireblocks.models.instruction_amount import InstructionAmount from fireblocks.models.interac_address import InteracAddress from fireblocks.models.interac_destination import InteracDestination @@ -980,6 +987,8 @@ from fireblocks.models.multichain_deployment_metadata import ( MultichainDeploymentMetadata, ) +from fireblocks.models.nequi_address import NequiAddress +from fireblocks.models.nequi_destination import NequiDestination from fireblocks.models.network_channel import NetworkChannel from fireblocks.models.network_connection import NetworkConnection from fireblocks.models.network_connection_response import NetworkConnectionResponse @@ -1087,6 +1096,8 @@ PersonalIdentificationFullName, ) from fireblocks.models.personal_identification_type import PersonalIdentificationType +from fireblocks.models.pesonet_address import PesonetAddress +from fireblocks.models.pesonet_destination import PesonetDestination from fireblocks.models.pix_address import PixAddress from fireblocks.models.pix_destination import PixDestination from fireblocks.models.pix_payment_info import PixPaymentInfo @@ -1886,6 +1897,8 @@ from fireblocks.models.webhook_metric import WebhookMetric from fireblocks.models.webhook_mtls import WebhookMtls from fireblocks.models.webhook_mtls_csr_response import WebhookMtlsCsrResponse +from fireblocks.models.webhook_o_auth import WebhookOAuth +from fireblocks.models.webhook_o_auth_response import WebhookOAuthResponse from fireblocks.models.webhook_paginated_response import WebhookPaginatedResponse from fireblocks.models.withdraw_request import WithdrawRequest from fireblocks.models.workflow_config_status import WorkflowConfigStatus diff --git a/fireblocks/api_client.py b/fireblocks/api_client.py index be546119..a646b2e8 100644 --- a/fireblocks/api_client.py +++ b/fireblocks/api_client.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import datetime from dateutil.parser import parse from enum import Enum diff --git a/fireblocks/configuration.py b/fireblocks/configuration.py index afcef30b..c1a025c0 100644 --- a/fireblocks/configuration.py +++ b/fireblocks/configuration.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import copy import http.client as httplib import logging @@ -24,7 +23,6 @@ import urllib3 - JSON_SCHEMA_VALIDATION_KEYWORDS = { "multipleOf", "maximum", @@ -552,7 +550,7 @@ def to_debug_report(self) -> str: "OS: {env}\n" "Python Version: {pyversion}\n" "Version of the API: 1.6.2\n" - "SDK Package Version: 24.0.0".format(env=sys.platform, pyversion=sys.version) + "SDK Package Version: 0.0.0".format(env=sys.platform, pyversion=sys.version) ) def get_host_settings(self) -> List[HostSetting]: diff --git a/fireblocks/models/__init__.py b/fireblocks/models/__init__.py index 035912ee..71e7fca7 100644 --- a/fireblocks/models/__init__.py +++ b/fireblocks/models/__init__.py @@ -190,6 +190,8 @@ from fireblocks.models.chaps_address import ChapsAddress from fireblocks.models.chaps_destination import ChapsDestination from fireblocks.models.chaps_payment_info import ChapsPaymentInfo +from fireblocks.models.cips_address import CipsAddress +from fireblocks.models.cips_destination import CipsDestination from fireblocks.models.claim_rewards_request import ClaimRewardsRequest from fireblocks.models.collection_burn_request_dto import CollectionBurnRequestDto from fireblocks.models.collection_burn_response_dto import CollectionBurnResponseDto @@ -451,6 +453,10 @@ from fireblocks.models.fixed_amount_type_enum import FixedAmountTypeEnum from fireblocks.models.fixed_fee import FixedFee from fireblocks.models.flow_direction import FlowDirection +from fireblocks.models.fps_hk_address import FpsHkAddress +from fireblocks.models.fps_hk_destination import FpsHkDestination +from fireblocks.models.fps_uk_address import FpsUkAddress +from fireblocks.models.fps_uk_destination import FpsUkDestination from fireblocks.models.freeze_transaction_response import FreezeTransactionResponse from fireblocks.models.function_doc import FunctionDoc from fireblocks.models.funds import Funds @@ -508,6 +514,8 @@ from fireblocks.models.idl_type import IdlType from fireblocks.models.initiator_config import InitiatorConfig from fireblocks.models.initiator_config_pattern import InitiatorConfigPattern +from fireblocks.models.insta_pay_address import InstaPayAddress +from fireblocks.models.insta_pay_destination import InstaPayDestination from fireblocks.models.instruction_amount import InstructionAmount from fireblocks.models.interac_address import InteracAddress from fireblocks.models.interac_destination import InteracDestination @@ -588,6 +596,8 @@ from fireblocks.models.momo_payment_info import MomoPaymentInfo from fireblocks.models.mpc_key import MpcKey from fireblocks.models.multichain_deployment_metadata import MultichainDeploymentMetadata +from fireblocks.models.nequi_address import NequiAddress +from fireblocks.models.nequi_destination import NequiDestination from fireblocks.models.network_channel import NetworkChannel from fireblocks.models.network_connection import NetworkConnection from fireblocks.models.network_connection_response import NetworkConnectionResponse @@ -667,6 +677,8 @@ from fireblocks.models.personal_identification_document import PersonalIdentificationDocument from fireblocks.models.personal_identification_full_name import PersonalIdentificationFullName from fireblocks.models.personal_identification_type import PersonalIdentificationType +from fireblocks.models.pesonet_address import PesonetAddress +from fireblocks.models.pesonet_destination import PesonetDestination from fireblocks.models.pix_address import PixAddress from fireblocks.models.pix_destination import PixDestination from fireblocks.models.pix_payment_info import PixPaymentInfo @@ -1172,6 +1184,8 @@ from fireblocks.models.webhook_metric import WebhookMetric from fireblocks.models.webhook_mtls import WebhookMtls from fireblocks.models.webhook_mtls_csr_response import WebhookMtlsCsrResponse +from fireblocks.models.webhook_o_auth import WebhookOAuth +from fireblocks.models.webhook_o_auth_response import WebhookOAuthResponse from fireblocks.models.webhook_paginated_response import WebhookPaginatedResponse from fireblocks.models.withdraw_request import WithdrawRequest from fireblocks.models.workflow_config_status import WorkflowConfigStatus diff --git a/fireblocks/models/cips_address.py b/fireblocks/models/cips_address.py new file mode 100644 index 00000000..990771d7 --- /dev/null +++ b/fireblocks/models/cips_address.py @@ -0,0 +1,100 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List +from fireblocks.models.account_holder_details import AccountHolderDetails +from typing import Optional, Set +from typing_extensions import Self + +class CipsAddress(BaseModel): + """ + CipsAddress + """ # noqa: E501 + account_holder: AccountHolderDetails = Field(alias="accountHolder") + bank_name: StrictStr = Field(description="Name of the recipient's bank", alias="bankName") + bank_country: StrictStr = Field(description="ISO 3166-1 alpha-2 country code of the bank", alias="bankCountry") + swift_code: StrictStr = Field(description="SWIFT/BIC code of the recipient bank", alias="swiftCode") + account_number: StrictStr = Field(description="Recipient bank account number", alias="accountNumber") + __properties: ClassVar[List[str]] = ["accountHolder", "bankName", "bankCountry", "swiftCode", "accountNumber"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of CipsAddress from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of account_holder + if self.account_holder: + _dict['accountHolder'] = self.account_holder.to_dict() + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of CipsAddress from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "accountHolder": AccountHolderDetails.from_dict(obj["accountHolder"]) if obj.get("accountHolder") is not None else None, + "bankName": obj.get("bankName"), + "bankCountry": obj.get("bankCountry"), + "swiftCode": obj.get("swiftCode"), + "accountNumber": obj.get("accountNumber") + }) + return _obj + + diff --git a/fireblocks/models/cips_destination.py b/fireblocks/models/cips_destination.py new file mode 100644 index 00000000..a5126994 --- /dev/null +++ b/fireblocks/models/cips_destination.py @@ -0,0 +1,103 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator +from typing import Any, ClassVar, Dict, List, Optional +from fireblocks.models.cips_address import CipsAddress +from typing import Optional, Set +from typing_extensions import Self + +class CipsDestination(BaseModel): + """ + CipsDestination + """ # noqa: E501 + type: StrictStr = Field(description="The transfer rail type for the destination") + address: CipsAddress + reference_id: Optional[StrictStr] = Field(default=None, description="Optional payment reference", alias="referenceId") + __properties: ClassVar[List[str]] = ["type", "address", "referenceId"] + + @field_validator('type') + def type_validate_enum(cls, value): + """Validates the enum""" + if value not in set(['CIPS']): + raise ValueError("must be one of enum values ('CIPS')") + return value + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of CipsDestination from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of address + if self.address: + _dict['address'] = self.address.to_dict() + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of CipsDestination from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "type": obj.get("type"), + "address": CipsAddress.from_dict(obj["address"]) if obj.get("address") is not None else None, + "referenceId": obj.get("referenceId") + }) + return _obj + + diff --git a/fireblocks/models/create_webhook_request.py b/fireblocks/models/create_webhook_request.py index 97f09c93..6552bc99 100644 --- a/fireblocks/models/create_webhook_request.py +++ b/fireblocks/models/create_webhook_request.py @@ -18,11 +18,12 @@ import re # noqa: F401 import json -from pydantic import BaseModel, ConfigDict, Field, StrictBool +from pydantic import BaseModel, ConfigDict, Field, StrictBool, field_validator from typing import Any, ClassVar, Dict, List, Optional from typing_extensions import Annotated from fireblocks.models.webhook_event import WebhookEvent from fireblocks.models.webhook_mtls import WebhookMtls +from fireblocks.models.webhook_o_auth import WebhookOAuth from typing import Optional, Set from typing_extensions import Self @@ -35,7 +36,9 @@ class CreateWebhookRequest(BaseModel): events: List[WebhookEvent] = Field(description="event types the webhook will subscribe to") enabled: Optional[StrictBool] = Field(default=True, description="The status of the webhook. If false, the webhook will not receive notifications.") mtls: Optional[WebhookMtls] = None - __properties: ClassVar[List[str]] = ["url", "description", "events", "enabled", "mtls"] + oauth: Optional[WebhookOAuth] = None + custom_headers: Optional[Dict[str, Annotated[str, Field(min_length=1, strict=True, max_length=1024)]]] = Field(default=None, description="Custom HTTP headers attached to every notification delivered by this webhook (max 10). Header names must be valid RFC 7230 tokens (printable ASCII, no separators), are treated case-insensitively (duplicate names differing only in case are rejected), and may not exceed 128 characters. The following names are reserved and cannot be used: Host, Content-Type, Content-Length, Transfer-Encoding, Connection, User-Agent, Accept, Accept-Encoding, Fireblocks-Signature, Fireblocks-Webhook-Signature. Header values are write-only — never returned in responses.", alias="customHeaders") + __properties: ClassVar[List[str]] = ["url", "description", "events", "enabled", "mtls", "oauth", "customHeaders"] model_config = ConfigDict( populate_by_name=True, @@ -79,11 +82,19 @@ def to_dict(self) -> Dict[str, Any]: # override the default output from pydantic by calling `to_dict()` of mtls if self.mtls: _dict['mtls'] = self.mtls.to_dict() + # override the default output from pydantic by calling `to_dict()` of oauth + if self.oauth: + _dict['oauth'] = self.oauth.to_dict() # set to None if mtls (nullable) is None # and model_fields_set contains the field if self.mtls is None and "mtls" in self.model_fields_set: _dict['mtls'] = None + # set to None if oauth (nullable) is None + # and model_fields_set contains the field + if self.oauth is None and "oauth" in self.model_fields_set: + _dict['oauth'] = None + return _dict @classmethod @@ -100,7 +111,9 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "description": obj.get("description"), "events": obj.get("events"), "enabled": obj.get("enabled") if obj.get("enabled") is not None else True, - "mtls": WebhookMtls.from_dict(obj["mtls"]) if obj.get("mtls") is not None else None + "mtls": WebhookMtls.from_dict(obj["mtls"]) if obj.get("mtls") is not None else None, + "oauth": WebhookOAuth.from_dict(obj["oauth"]) if obj.get("oauth") is not None else None, + "customHeaders": obj.get("customHeaders") }) return _obj diff --git a/fireblocks/models/delegation.py b/fireblocks/models/delegation.py index 93ee0e9d..b85cdca1 100644 --- a/fireblocks/models/delegation.py +++ b/fireblocks/models/delegation.py @@ -38,7 +38,7 @@ class Delegation(BaseModel): provider_name: StrictStr = Field(description="The destination validator provider name", alias="providerName") chain_descriptor: StrictStr = Field(description="The protocol identifier (e.g. \"ETH\"/ \"SOL\") to use", alias="chainDescriptor") amount: StrictStr = Field(description="Total value of the staking position. For Solana, Lido and Ethereum (compounding validator): includes the original stake plus accumulated rewards. For MATIC, Cosmos and Ethereum (legacy validator): refers to the amount currently staked.") - rewards_amount: StrictStr = Field(description="The amount staked in the position, measured in the staked asset unit.", alias="rewardsAmount") + rewards_amount: Optional[StrictStr] = Field(description="The amount staked in the position, measured in the staked asset unit. Returned as null for chains where reward tracking is not supported (Cosmos-family chains), instead of a numeric value.", alias="rewardsAmount") date_created: datetime = Field(description="When was the request made (ISO Date).", alias="dateCreated") date_updated: datetime = Field(description="When has the position last changed (ISO Date).", alias="dateUpdated") status: StrictStr = Field(description="The current status.") @@ -108,6 +108,11 @@ def to_dict(self) -> Dict[str, Any]: if _item_related_requests: _items.append(_item_related_requests.to_dict()) _dict['relatedRequests'] = _items + # set to None if rewards_amount (nullable) is None + # and model_fields_set contains the field + if self.rewards_amount is None and "rewards_amount" in self.model_fields_set: + _dict['rewardsAmount'] = None + return _dict @classmethod diff --git a/fireblocks/models/failure_reason.py b/fireblocks/models/failure_reason.py index 71338149..6bc27ad0 100644 --- a/fireblocks/models/failure_reason.py +++ b/fireblocks/models/failure_reason.py @@ -53,6 +53,8 @@ class FailureReason(str, Enum): EXTERNAL_SOURCE_NOT_SUPPORTED = 'EXTERNAL_SOURCE_NOT_SUPPORTED' UNSUPPORTED_REGION = 'UNSUPPORTED_REGION' DESTINATION_NOT_WHITELISTED = 'DESTINATION_NOT_WHITELISTED' + MISSING_DESTINATION_DETAILS = 'MISSING_DESTINATION_DETAILS' + MISSING_WORKSPACE_DETAILS = 'MISSING_WORKSPACE_DETAILS' @classmethod def from_json(cls, json_str: str) -> Self: diff --git a/fireblocks/models/fiat_destination.py b/fireblocks/models/fiat_destination.py index 549b24cb..4bac4b4e 100644 --- a/fireblocks/models/fiat_destination.py +++ b/fireblocks/models/fiat_destination.py @@ -20,13 +20,19 @@ from typing import Any, List, Optional from fireblocks.models.ach_destination import AchDestination from fireblocks.models.chaps_destination import ChapsDestination +from fireblocks.models.cips_destination import CipsDestination from fireblocks.models.european_sepa_destination import EuropeanSEPADestination +from fireblocks.models.fps_hk_destination import FpsHkDestination +from fireblocks.models.fps_uk_destination import FpsUkDestination from fireblocks.models.iban_destination import IbanDestination +from fireblocks.models.insta_pay_destination import InstaPayDestination from fireblocks.models.interac_destination import InteracDestination from fireblocks.models.internal_transfer_destination import InternalTransferDestination from fireblocks.models.local_bank_transfer_africa_destination import LocalBankTransferAfricaDestination from fireblocks.models.mobile_money_destination import MobileMoneyDestination +from fireblocks.models.nequi_destination import NequiDestination from fireblocks.models.payid_destination import PayidDestination +from fireblocks.models.pesonet_destination import PesonetDestination from fireblocks.models.pix_destination import PixDestination from fireblocks.models.sepa_destination import SEPADestination from fireblocks.models.spei_destination import SpeiDestination @@ -36,7 +42,7 @@ from typing import Union, List, Set, Optional, Dict from typing_extensions import Literal, Self -FIATDESTINATION_ONE_OF_SCHEMAS = ["AchDestination", "ChapsDestination", "EuropeanSEPADestination", "IbanDestination", "InteracDestination", "InternalTransferDestination", "LocalBankTransferAfricaDestination", "MobileMoneyDestination", "PayidDestination", "PixDestination", "SEPADestination", "SpeiDestination", "SwiftDestination", "USWireDestination"] +FIATDESTINATION_ONE_OF_SCHEMAS = ["AchDestination", "ChapsDestination", "CipsDestination", "EuropeanSEPADestination", "FpsHkDestination", "FpsUkDestination", "IbanDestination", "InstaPayDestination", "InteracDestination", "InternalTransferDestination", "LocalBankTransferAfricaDestination", "MobileMoneyDestination", "NequiDestination", "PayidDestination", "PesonetDestination", "PixDestination", "SEPADestination", "SpeiDestination", "SwiftDestination", "USWireDestination"] class FiatDestination(BaseModel): """ @@ -70,8 +76,20 @@ class FiatDestination(BaseModel): oneof_schema_13_validator: Optional[PayidDestination] = None # data type: InternalTransferDestination oneof_schema_14_validator: Optional[InternalTransferDestination] = None - actual_instance: Optional[Union[AchDestination, ChapsDestination, EuropeanSEPADestination, IbanDestination, InteracDestination, InternalTransferDestination, LocalBankTransferAfricaDestination, MobileMoneyDestination, PayidDestination, PixDestination, SEPADestination, SpeiDestination, SwiftDestination, USWireDestination]] = None - one_of_schemas: Set[str] = { "AchDestination", "ChapsDestination", "EuropeanSEPADestination", "IbanDestination", "InteracDestination", "InternalTransferDestination", "LocalBankTransferAfricaDestination", "MobileMoneyDestination", "PayidDestination", "PixDestination", "SEPADestination", "SpeiDestination", "SwiftDestination", "USWireDestination" } + # data type: CipsDestination + oneof_schema_15_validator: Optional[CipsDestination] = None + # data type: NequiDestination + oneof_schema_16_validator: Optional[NequiDestination] = None + # data type: FpsUkDestination + oneof_schema_17_validator: Optional[FpsUkDestination] = None + # data type: FpsHkDestination + oneof_schema_18_validator: Optional[FpsHkDestination] = None + # data type: InstaPayDestination + oneof_schema_19_validator: Optional[InstaPayDestination] = None + # data type: PesonetDestination + oneof_schema_20_validator: Optional[PesonetDestination] = None + actual_instance: Optional[Union[AchDestination, ChapsDestination, CipsDestination, EuropeanSEPADestination, FpsHkDestination, FpsUkDestination, IbanDestination, InstaPayDestination, InteracDestination, InternalTransferDestination, LocalBankTransferAfricaDestination, MobileMoneyDestination, NequiDestination, PayidDestination, PesonetDestination, PixDestination, SEPADestination, SpeiDestination, SwiftDestination, USWireDestination]] = None + one_of_schemas: Set[str] = { "AchDestination", "ChapsDestination", "CipsDestination", "EuropeanSEPADestination", "FpsHkDestination", "FpsUkDestination", "IbanDestination", "InstaPayDestination", "InteracDestination", "InternalTransferDestination", "LocalBankTransferAfricaDestination", "MobileMoneyDestination", "NequiDestination", "PayidDestination", "PesonetDestination", "PixDestination", "SEPADestination", "SpeiDestination", "SwiftDestination", "USWireDestination" } model_config = ConfigDict( validate_assignment=True, @@ -164,12 +182,42 @@ def actual_instance_must_validate_oneof(cls, v): error_messages.append(f"Error! Input type `{type(v)}` is not `InternalTransferDestination`") else: match += 1 + # validate data type: CipsDestination + if not isinstance(v, CipsDestination): + error_messages.append(f"Error! Input type `{type(v)}` is not `CipsDestination`") + else: + match += 1 + # validate data type: NequiDestination + if not isinstance(v, NequiDestination): + error_messages.append(f"Error! Input type `{type(v)}` is not `NequiDestination`") + else: + match += 1 + # validate data type: FpsUkDestination + if not isinstance(v, FpsUkDestination): + error_messages.append(f"Error! Input type `{type(v)}` is not `FpsUkDestination`") + else: + match += 1 + # validate data type: FpsHkDestination + if not isinstance(v, FpsHkDestination): + error_messages.append(f"Error! Input type `{type(v)}` is not `FpsHkDestination`") + else: + match += 1 + # validate data type: InstaPayDestination + if not isinstance(v, InstaPayDestination): + error_messages.append(f"Error! Input type `{type(v)}` is not `InstaPayDestination`") + else: + match += 1 + # validate data type: PesonetDestination + if not isinstance(v, PesonetDestination): + error_messages.append(f"Error! Input type `{type(v)}` is not `PesonetDestination`") + else: + match += 1 if match > 1: # more than 1 match - raise ValueError("Multiple matches found when setting `actual_instance` in FiatDestination with oneOf schemas: AchDestination, ChapsDestination, EuropeanSEPADestination, IbanDestination, InteracDestination, InternalTransferDestination, LocalBankTransferAfricaDestination, MobileMoneyDestination, PayidDestination, PixDestination, SEPADestination, SpeiDestination, SwiftDestination, USWireDestination. Details: " + ", ".join(error_messages)) + raise ValueError("Multiple matches found when setting `actual_instance` in FiatDestination with oneOf schemas: AchDestination, ChapsDestination, CipsDestination, EuropeanSEPADestination, FpsHkDestination, FpsUkDestination, IbanDestination, InstaPayDestination, InteracDestination, InternalTransferDestination, LocalBankTransferAfricaDestination, MobileMoneyDestination, NequiDestination, PayidDestination, PesonetDestination, PixDestination, SEPADestination, SpeiDestination, SwiftDestination, USWireDestination. Details: " + ", ".join(error_messages)) elif match == 0: # no match - raise ValueError("No match found when setting `actual_instance` in FiatDestination with oneOf schemas: AchDestination, ChapsDestination, EuropeanSEPADestination, IbanDestination, InteracDestination, InternalTransferDestination, LocalBankTransferAfricaDestination, MobileMoneyDestination, PayidDestination, PixDestination, SEPADestination, SpeiDestination, SwiftDestination, USWireDestination. Details: " + ", ".join(error_messages)) + raise ValueError("No match found when setting `actual_instance` in FiatDestination with oneOf schemas: AchDestination, ChapsDestination, CipsDestination, EuropeanSEPADestination, FpsHkDestination, FpsUkDestination, IbanDestination, InstaPayDestination, InteracDestination, InternalTransferDestination, LocalBankTransferAfricaDestination, MobileMoneyDestination, NequiDestination, PayidDestination, PesonetDestination, PixDestination, SEPADestination, SpeiDestination, SwiftDestination, USWireDestination. Details: " + ", ".join(error_messages)) else: return v @@ -268,13 +316,49 @@ def from_json(cls, json_str: str) -> Self: match += 1 except (ValidationError, ValueError) as e: error_messages.append(str(e)) + # deserialize data into CipsDestination + try: + instance.actual_instance = CipsDestination.from_json(json_str) + match += 1 + except (ValidationError, ValueError) as e: + error_messages.append(str(e)) + # deserialize data into NequiDestination + try: + instance.actual_instance = NequiDestination.from_json(json_str) + match += 1 + except (ValidationError, ValueError) as e: + error_messages.append(str(e)) + # deserialize data into FpsUkDestination + try: + instance.actual_instance = FpsUkDestination.from_json(json_str) + match += 1 + except (ValidationError, ValueError) as e: + error_messages.append(str(e)) + # deserialize data into FpsHkDestination + try: + instance.actual_instance = FpsHkDestination.from_json(json_str) + match += 1 + except (ValidationError, ValueError) as e: + error_messages.append(str(e)) + # deserialize data into InstaPayDestination + try: + instance.actual_instance = InstaPayDestination.from_json(json_str) + match += 1 + except (ValidationError, ValueError) as e: + error_messages.append(str(e)) + # deserialize data into PesonetDestination + try: + instance.actual_instance = PesonetDestination.from_json(json_str) + match += 1 + except (ValidationError, ValueError) as e: + error_messages.append(str(e)) if match > 1: # more than 1 match - raise ValueError("Multiple matches found when deserializing the JSON string into FiatDestination with oneOf schemas: AchDestination, ChapsDestination, EuropeanSEPADestination, IbanDestination, InteracDestination, InternalTransferDestination, LocalBankTransferAfricaDestination, MobileMoneyDestination, PayidDestination, PixDestination, SEPADestination, SpeiDestination, SwiftDestination, USWireDestination. Details: " + ", ".join(error_messages)) + raise ValueError("Multiple matches found when deserializing the JSON string into FiatDestination with oneOf schemas: AchDestination, ChapsDestination, CipsDestination, EuropeanSEPADestination, FpsHkDestination, FpsUkDestination, IbanDestination, InstaPayDestination, InteracDestination, InternalTransferDestination, LocalBankTransferAfricaDestination, MobileMoneyDestination, NequiDestination, PayidDestination, PesonetDestination, PixDestination, SEPADestination, SpeiDestination, SwiftDestination, USWireDestination. Details: " + ", ".join(error_messages)) elif match == 0: # no match - raise ValueError("No match found when deserializing the JSON string into FiatDestination with oneOf schemas: AchDestination, ChapsDestination, EuropeanSEPADestination, IbanDestination, InteracDestination, InternalTransferDestination, LocalBankTransferAfricaDestination, MobileMoneyDestination, PayidDestination, PixDestination, SEPADestination, SpeiDestination, SwiftDestination, USWireDestination. Details: " + ", ".join(error_messages)) + raise ValueError("No match found when deserializing the JSON string into FiatDestination with oneOf schemas: AchDestination, ChapsDestination, CipsDestination, EuropeanSEPADestination, FpsHkDestination, FpsUkDestination, IbanDestination, InstaPayDestination, InteracDestination, InternalTransferDestination, LocalBankTransferAfricaDestination, MobileMoneyDestination, NequiDestination, PayidDestination, PesonetDestination, PixDestination, SEPADestination, SpeiDestination, SwiftDestination, USWireDestination. Details: " + ", ".join(error_messages)) else: return instance @@ -288,7 +372,7 @@ def to_json(self) -> str: else: return json.dumps(self.actual_instance) - def to_dict(self) -> Optional[Union[Dict[str, Any], AchDestination, ChapsDestination, EuropeanSEPADestination, IbanDestination, InteracDestination, InternalTransferDestination, LocalBankTransferAfricaDestination, MobileMoneyDestination, PayidDestination, PixDestination, SEPADestination, SpeiDestination, SwiftDestination, USWireDestination]]: + def to_dict(self) -> Optional[Union[Dict[str, Any], AchDestination, ChapsDestination, CipsDestination, EuropeanSEPADestination, FpsHkDestination, FpsUkDestination, IbanDestination, InstaPayDestination, InteracDestination, InternalTransferDestination, LocalBankTransferAfricaDestination, MobileMoneyDestination, NequiDestination, PayidDestination, PesonetDestination, PixDestination, SEPADestination, SpeiDestination, SwiftDestination, USWireDestination]]: """Returns the dict representation of the actual instance""" if self.actual_instance is None: return None diff --git a/fireblocks/models/fps_hk_address.py b/fireblocks/models/fps_hk_address.py new file mode 100644 index 00000000..f44c1b12 --- /dev/null +++ b/fireblocks/models/fps_hk_address.py @@ -0,0 +1,98 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class FpsHkAddress(BaseModel): + """ + FpsHkAddress + """ # noqa: E501 + recipient_legal_name: Optional[StrictStr] = Field(default=None, description="Full legal name of the recipient", alias="recipientLegalName") + account_number: Optional[StrictStr] = Field(default=None, description="Recipient bank account number", alias="accountNumber") + bank_code: Optional[StrictStr] = Field(default=None, description="Hong Kong bank code", alias="bankCode") + phone: Optional[StrictStr] = Field(default=None, description="Recipient phone number in E.164 format") + email: Optional[StrictStr] = Field(default=None, description="Recipient email address") + fps_id: Optional[StrictStr] = Field(default=None, description="Hong Kong FPS identifier", alias="fpsId") + __properties: ClassVar[List[str]] = ["recipientLegalName", "accountNumber", "bankCode", "phone", "email", "fpsId"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of FpsHkAddress from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of FpsHkAddress from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "recipientLegalName": obj.get("recipientLegalName"), + "accountNumber": obj.get("accountNumber"), + "bankCode": obj.get("bankCode"), + "phone": obj.get("phone"), + "email": obj.get("email"), + "fpsId": obj.get("fpsId") + }) + return _obj + + diff --git a/fireblocks/models/fps_hk_destination.py b/fireblocks/models/fps_hk_destination.py new file mode 100644 index 00000000..b5718bda --- /dev/null +++ b/fireblocks/models/fps_hk_destination.py @@ -0,0 +1,101 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator +from typing import Any, ClassVar, Dict, List +from fireblocks.models.fps_hk_address import FpsHkAddress +from typing import Optional, Set +from typing_extensions import Self + +class FpsHkDestination(BaseModel): + """ + FpsHkDestination + """ # noqa: E501 + type: StrictStr = Field(description="The transfer rail type for the destination") + address: FpsHkAddress + __properties: ClassVar[List[str]] = ["type", "address"] + + @field_validator('type') + def type_validate_enum(cls, value): + """Validates the enum""" + if value not in set(['FPS_HK']): + raise ValueError("must be one of enum values ('FPS_HK')") + return value + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of FpsHkDestination from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of address + if self.address: + _dict['address'] = self.address.to_dict() + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of FpsHkDestination from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "type": obj.get("type"), + "address": FpsHkAddress.from_dict(obj["address"]) if obj.get("address") is not None else None + }) + return _obj + + diff --git a/fireblocks/models/fps_uk_address.py b/fireblocks/models/fps_uk_address.py new file mode 100644 index 00000000..bdc7d3cd --- /dev/null +++ b/fireblocks/models/fps_uk_address.py @@ -0,0 +1,96 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List +from fireblocks.models.account_holder_details import AccountHolderDetails +from typing import Optional, Set +from typing_extensions import Self + +class FpsUkAddress(BaseModel): + """ + FpsUkAddress + """ # noqa: E501 + account_holder: AccountHolderDetails = Field(alias="accountHolder") + account_number: StrictStr = Field(description="UK bank account number", alias="accountNumber") + sort_code: StrictStr = Field(description="UK sort code (format XX-XX-XX)", alias="sortCode") + __properties: ClassVar[List[str]] = ["accountHolder", "accountNumber", "sortCode"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of FpsUkAddress from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of account_holder + if self.account_holder: + _dict['accountHolder'] = self.account_holder.to_dict() + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of FpsUkAddress from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "accountHolder": AccountHolderDetails.from_dict(obj["accountHolder"]) if obj.get("accountHolder") is not None else None, + "accountNumber": obj.get("accountNumber"), + "sortCode": obj.get("sortCode") + }) + return _obj + + diff --git a/fireblocks/models/fps_uk_destination.py b/fireblocks/models/fps_uk_destination.py new file mode 100644 index 00000000..2d805f4d --- /dev/null +++ b/fireblocks/models/fps_uk_destination.py @@ -0,0 +1,101 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator +from typing import Any, ClassVar, Dict, List +from fireblocks.models.fps_uk_address import FpsUkAddress +from typing import Optional, Set +from typing_extensions import Self + +class FpsUkDestination(BaseModel): + """ + FpsUkDestination + """ # noqa: E501 + type: StrictStr = Field(description="The transfer rail type for the destination") + address: FpsUkAddress + __properties: ClassVar[List[str]] = ["type", "address"] + + @field_validator('type') + def type_validate_enum(cls, value): + """Validates the enum""" + if value not in set(['FPS_UK']): + raise ValueError("must be one of enum values ('FPS_UK')") + return value + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of FpsUkDestination from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of address + if self.address: + _dict['address'] = self.address.to_dict() + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of FpsUkDestination from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "type": obj.get("type"), + "address": FpsUkAddress.from_dict(obj["address"]) if obj.get("address") is not None else None + }) + return _obj + + diff --git a/fireblocks/models/insta_pay_address.py b/fireblocks/models/insta_pay_address.py new file mode 100644 index 00000000..809b0071 --- /dev/null +++ b/fireblocks/models/insta_pay_address.py @@ -0,0 +1,96 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List +from fireblocks.models.account_holder_details import AccountHolderDetails +from typing import Optional, Set +from typing_extensions import Self + +class InstaPayAddress(BaseModel): + """ + InstaPayAddress + """ # noqa: E501 + account_holder: AccountHolderDetails = Field(alias="accountHolder") + bank_name: StrictStr = Field(description="Name of the recipient's bank or wallet (e.g. BDO, BPI, GCash, Maya)", alias="bankName") + account_number: StrictStr = Field(description="Recipient bank account or wallet number", alias="accountNumber") + __properties: ClassVar[List[str]] = ["accountHolder", "bankName", "accountNumber"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of InstaPayAddress from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of account_holder + if self.account_holder: + _dict['accountHolder'] = self.account_holder.to_dict() + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of InstaPayAddress from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "accountHolder": AccountHolderDetails.from_dict(obj["accountHolder"]) if obj.get("accountHolder") is not None else None, + "bankName": obj.get("bankName"), + "accountNumber": obj.get("accountNumber") + }) + return _obj + + diff --git a/fireblocks/models/insta_pay_destination.py b/fireblocks/models/insta_pay_destination.py new file mode 100644 index 00000000..095f0b30 --- /dev/null +++ b/fireblocks/models/insta_pay_destination.py @@ -0,0 +1,101 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator +from typing import Any, ClassVar, Dict, List +from fireblocks.models.insta_pay_address import InstaPayAddress +from typing import Optional, Set +from typing_extensions import Self + +class InstaPayDestination(BaseModel): + """ + InstaPayDestination + """ # noqa: E501 + type: StrictStr = Field(description="The transfer rail type for the destination") + address: InstaPayAddress + __properties: ClassVar[List[str]] = ["type", "address"] + + @field_validator('type') + def type_validate_enum(cls, value): + """Validates the enum""" + if value not in set(['INSTA_PAY']): + raise ValueError("must be one of enum values ('INSTA_PAY')") + return value + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of InstaPayDestination from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of address + if self.address: + _dict['address'] = self.address.to_dict() + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of InstaPayDestination from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "type": obj.get("type"), + "address": InstaPayAddress.from_dict(obj["address"]) if obj.get("address") is not None else None + }) + return _obj + + diff --git a/fireblocks/models/nequi_address.py b/fireblocks/models/nequi_address.py new file mode 100644 index 00000000..c94de130 --- /dev/null +++ b/fireblocks/models/nequi_address.py @@ -0,0 +1,88 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List +from typing import Optional, Set +from typing_extensions import Self + +class NequiAddress(BaseModel): + """ + NequiAddress + """ # noqa: E501 + phone: StrictStr = Field(description="Recipient phone number in E.164 format") + __properties: ClassVar[List[str]] = ["phone"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of NequiAddress from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of NequiAddress from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "phone": obj.get("phone") + }) + return _obj + + diff --git a/fireblocks/models/nequi_destination.py b/fireblocks/models/nequi_destination.py new file mode 100644 index 00000000..e2017eb6 --- /dev/null +++ b/fireblocks/models/nequi_destination.py @@ -0,0 +1,101 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator +from typing import Any, ClassVar, Dict, List +from fireblocks.models.nequi_address import NequiAddress +from typing import Optional, Set +from typing_extensions import Self + +class NequiDestination(BaseModel): + """ + NequiDestination + """ # noqa: E501 + type: StrictStr = Field(description="The transfer rail type for the destination") + address: NequiAddress + __properties: ClassVar[List[str]] = ["type", "address"] + + @field_validator('type') + def type_validate_enum(cls, value): + """Validates the enum""" + if value not in set(['NEQUI']): + raise ValueError("must be one of enum values ('NEQUI')") + return value + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of NequiDestination from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of address + if self.address: + _dict['address'] = self.address.to_dict() + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of NequiDestination from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "type": obj.get("type"), + "address": NequiAddress.from_dict(obj["address"]) if obj.get("address") is not None else None + }) + return _obj + + diff --git a/fireblocks/models/payment_instructions_one_of.py b/fireblocks/models/payment_instructions_one_of.py index 9a210e1b..b6a81776 100644 --- a/fireblocks/models/payment_instructions_one_of.py +++ b/fireblocks/models/payment_instructions_one_of.py @@ -20,7 +20,7 @@ from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator from typing import Any, ClassVar, Dict, List, Optional -from fireblocks.models.internal_transfer_address import InternalTransferAddress +from fireblocks.models.pesonet_address import PesonetAddress from typing import Optional, Set from typing_extensions import Self @@ -28,16 +28,16 @@ class PaymentInstructionsOneOf(BaseModel): """ PaymentInstructionsOneOf """ # noqa: E501 - type: StrictStr - address: InternalTransferAddress + type: StrictStr = Field(description="The transfer rail type for the destination") + address: PesonetAddress reference_id: Optional[StrictStr] = Field(default=None, alias="referenceId") __properties: ClassVar[List[str]] = ["type", "address", "referenceId"] @field_validator('type') def type_validate_enum(cls, value): """Validates the enum""" - if value not in set(['INTERNAL_TRANSFER']): - raise ValueError("must be one of enum values ('INTERNAL_TRANSFER')") + if value not in set(['PESONET']): + raise ValueError("must be one of enum values ('PESONET')") return value model_config = ConfigDict( @@ -95,7 +95,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: _obj = cls.model_validate({ "type": obj.get("type"), - "address": InternalTransferAddress.from_dict(obj["address"]) if obj.get("address") is not None else None, + "address": PesonetAddress.from_dict(obj["address"]) if obj.get("address") is not None else None, "referenceId": obj.get("referenceId") }) return _obj diff --git a/fireblocks/models/pesonet_address.py b/fireblocks/models/pesonet_address.py new file mode 100644 index 00000000..346bd156 --- /dev/null +++ b/fireblocks/models/pesonet_address.py @@ -0,0 +1,96 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List +from fireblocks.models.account_holder_details import AccountHolderDetails +from typing import Optional, Set +from typing_extensions import Self + +class PesonetAddress(BaseModel): + """ + PesonetAddress + """ # noqa: E501 + account_holder: AccountHolderDetails = Field(alias="accountHolder") + bank_name: StrictStr = Field(description="Name of the recipient's bank", alias="bankName") + account_number: StrictStr = Field(description="Recipient bank account number", alias="accountNumber") + __properties: ClassVar[List[str]] = ["accountHolder", "bankName", "accountNumber"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of PesonetAddress from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of account_holder + if self.account_holder: + _dict['accountHolder'] = self.account_holder.to_dict() + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of PesonetAddress from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "accountHolder": AccountHolderDetails.from_dict(obj["accountHolder"]) if obj.get("accountHolder") is not None else None, + "bankName": obj.get("bankName"), + "accountNumber": obj.get("accountNumber") + }) + return _obj + + diff --git a/fireblocks/models/pesonet_destination.py b/fireblocks/models/pesonet_destination.py new file mode 100644 index 00000000..df8274ef --- /dev/null +++ b/fireblocks/models/pesonet_destination.py @@ -0,0 +1,101 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator +from typing import Any, ClassVar, Dict, List +from fireblocks.models.pesonet_address import PesonetAddress +from typing import Optional, Set +from typing_extensions import Self + +class PesonetDestination(BaseModel): + """ + PesonetDestination + """ # noqa: E501 + type: StrictStr = Field(description="The transfer rail type for the destination") + address: PesonetAddress + __properties: ClassVar[List[str]] = ["type", "address"] + + @field_validator('type') + def type_validate_enum(cls, value): + """Validates the enum""" + if value not in set(['PESONET']): + raise ValueError("must be one of enum values ('PESONET')") + return value + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of PesonetDestination from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of address + if self.address: + _dict['address'] = self.address.to_dict() + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of PesonetDestination from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "type": obj.get("type"), + "address": PesonetAddress.from_dict(obj["address"]) if obj.get("address") is not None else None + }) + return _obj + + diff --git a/fireblocks/models/position.py b/fireblocks/models/position.py index f4808c30..8fd31750 100644 --- a/fireblocks/models/position.py +++ b/fireblocks/models/position.py @@ -36,7 +36,7 @@ class Position(BaseModel): provider_name: StrictStr = Field(description="The destination validator provider name", alias="providerName") chain_descriptor: StrictStr = Field(description="The protocol identifier (e.g. \"ETH\"/ \"SOL\") to use", alias="chainDescriptor") amount: StrictStr = Field(description="Total value of the staking position. For Solana, Lido and Ethereum (compounding validator): includes the original stake plus accumulated rewards. For MATIC, Cosmos and Ethereum (legacy validator): refers to the amount currently staked.") - rewards_amount: StrictStr = Field(description="The amount staked in the position, measured in the staked asset unit.", alias="rewardsAmount") + rewards_amount: Optional[StrictStr] = Field(description="The amount staked in the position, measured in the staked asset unit. Returned as null for chains where reward tracking is not supported (Cosmos-family chains), instead of a numeric value.", alias="rewardsAmount") date_created: datetime = Field(description="When was the request made (ISO Date).", alias="dateCreated") date_updated: datetime = Field(description="When has the position last changed (ISO Date).", alias="dateUpdated") status: StrictStr = Field(description="The current status.") @@ -105,6 +105,11 @@ def to_dict(self) -> Dict[str, Any]: # override the default output from pydantic by calling `to_dict()` of blockchain_position_info if self.blockchain_position_info: _dict['blockchainPositionInfo'] = self.blockchain_position_info.to_dict() + # set to None if rewards_amount (nullable) is None + # and model_fields_set contains the field + if self.rewards_amount is None and "rewards_amount" in self.model_fields_set: + _dict['rewardsAmount'] = None + return _dict @classmethod diff --git a/fireblocks/models/solana_rewards_breakdown.py b/fireblocks/models/solana_rewards_breakdown.py index 8e53e514..2cc1c06f 100644 --- a/fireblocks/models/solana_rewards_breakdown.py +++ b/fireblocks/models/solana_rewards_breakdown.py @@ -28,10 +28,10 @@ class SolanaRewardsBreakdown(BaseModel): """ A breakdown of the staking rewards earned by the position. """ # noqa: E501 - issuance: StrictStr = Field(description="The issuance reward amount earned by the position, measured in the staked asset unit.") + inflation: StrictStr = Field(description="The inflation reward amount earned by the position, measured in the staked asset unit.") mev: StrictStr = Field(description="The MEV reward amount earned by the position, measured in the staked asset unit.") last_reward_synced_at: datetime = Field(description="The last time the rewards were synced (ISO Date).", alias="lastRewardSyncedAt") - __properties: ClassVar[List[str]] = ["issuance", "mev", "lastRewardSyncedAt"] + __properties: ClassVar[List[str]] = ["inflation", "mev", "lastRewardSyncedAt"] model_config = ConfigDict( populate_by_name=True, @@ -84,7 +84,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: return cls.model_validate(obj) _obj = cls.model_validate({ - "issuance": obj.get("issuance"), + "inflation": obj.get("inflation"), "mev": obj.get("mev"), "lastRewardSyncedAt": obj.get("lastRewardSyncedAt") }) diff --git a/fireblocks/models/transfer_rail.py b/fireblocks/models/transfer_rail.py index ad54fc5a..415dd35f 100644 --- a/fireblocks/models/transfer_rail.py +++ b/fireblocks/models/transfer_rail.py @@ -21,7 +21,7 @@ class TransferRail(str, Enum): """ - Transfer rail: * **BLOCKCHAIN** - Transfer over the public blockchain * **INTERNAL** - Internal transfer within the same account (e.g. sub-accounts or same api key) * **SWIFT** - International wire transfer * **IBAN** - International Bank Account Number transfer * **US_WIRE** - Domestic wire transfer within the United States (e.g. FedWire) * **ACH** - Automated Clearing House transfer, typically takes longer but not as expensive as wire transfers * **SEPA** - Euro transfers within the SEPA zone * **SPEI** - Mexican interbank electronic payment system * **PIX** - Brazilian instant payment system * **LBT** - Local bank transfers within Africa * **MOMO** - Mobile money transfers (e.g. M-Pesa) * **CHAPS** - The Clearing House Automated Payment System (CHAPS) is a real-time gross settlement payment system used for transactions in the United Kingdom * **PAYID** - PayID payment identifier system (Australia) * **INTERAC** - Interac electronic funds transfer (Canada) * **INTERNAL_TRANSFER** - Internal transfer between accounts + Transfer rail: * **BLOCKCHAIN** - Transfer over the public blockchain * **INTERNAL** - Internal transfer within the same account (e.g. sub-accounts or same api key) * **SWIFT** - International wire transfer * **IBAN** - International Bank Account Number transfer * **US_WIRE** - Domestic wire transfer within the United States (e.g. FedWire) * **ACH** - Automated Clearing House transfer, typically takes longer but not as expensive as wire transfers * **SEPA** - Euro transfers within the SEPA zone * **SPEI** - Mexican interbank electronic payment system * **PIX** - Brazilian instant payment system * **LBT** - Local bank transfers * **MOMO** - Mobile money transfers (e.g. M-Pesa) * **CHAPS** - The Clearing House Automated Payment System (CHAPS) is a real-time gross settlement payment system used for transactions in the United Kingdom * **PAYID** - PayID payment identifier system (Australia) * **INTERAC** - Interac electronic funds transfer (Canada) * **INTERNAL_TRANSFER** - Internal transfer between accounts * **CIPS** - Cross-Border Interbank Payment System (China) * **NEQUI** - Nequi mobile payment (Colombia) * **FPS_UK** - UK Faster Payments (GBP) * **FPS_HK** - Hong Kong Faster Payment System (HKD) * **INSTA_PAY** - InstaPay instant payment (Philippines) * **PESONET** - PesoNet batch payment (Philippines) """ """ @@ -42,6 +42,12 @@ class TransferRail(str, Enum): PAYID = 'PAYID' INTERAC = 'INTERAC' INTERNAL_TRANSFER = 'INTERNAL_TRANSFER' + CIPS = 'CIPS' + NEQUI = 'NEQUI' + FPS_UK = 'FPS_UK' + FPS_HK = 'FPS_HK' + INSTA_PAY = 'INSTA_PAY' + PESONET = 'PESONET' @classmethod def from_json(cls, json_str: str) -> Self: diff --git a/fireblocks/models/update_webhook_request.py b/fireblocks/models/update_webhook_request.py index 59c02cf3..9ff348e2 100644 --- a/fireblocks/models/update_webhook_request.py +++ b/fireblocks/models/update_webhook_request.py @@ -23,6 +23,7 @@ from typing_extensions import Annotated from fireblocks.models.webhook_event import WebhookEvent from fireblocks.models.webhook_mtls import WebhookMtls +from fireblocks.models.webhook_o_auth import WebhookOAuth from typing import Optional, Set from typing_extensions import Self @@ -35,7 +36,9 @@ class UpdateWebhookRequest(BaseModel): events: Optional[List[WebhookEvent]] = Field(default=None, description="The events that the webhook will be subscribed to") enabled: Optional[StrictBool] = Field(default=None, description="The status of the webhook") mtls: Optional[WebhookMtls] = None - __properties: ClassVar[List[str]] = ["url", "description", "events", "enabled", "mtls"] + oauth: Optional[WebhookOAuth] = None + custom_headers: Optional[Dict[str, Optional[Annotated[str, Field(min_length=1, strict=True, max_length=1024)]]]] = Field(default=None, description="Custom headers delta: entries with a string value are added or updated, entries with a `null` value delete that header (no-op if absent), and header names omitted from the payload are left untouched. The resulting set is limited to 10 headers. Header names are case-insensitive, up to 128 characters, and limited to valid HTTP header name characters. Some system header names are reserved and cannot be used. Values are write-only — never returned in responses.", alias="customHeaders") + __properties: ClassVar[List[str]] = ["url", "description", "events", "enabled", "mtls", "oauth", "customHeaders"] model_config = ConfigDict( populate_by_name=True, @@ -79,11 +82,19 @@ def to_dict(self) -> Dict[str, Any]: # override the default output from pydantic by calling `to_dict()` of mtls if self.mtls: _dict['mtls'] = self.mtls.to_dict() + # override the default output from pydantic by calling `to_dict()` of oauth + if self.oauth: + _dict['oauth'] = self.oauth.to_dict() # set to None if mtls (nullable) is None # and model_fields_set contains the field if self.mtls is None and "mtls" in self.model_fields_set: _dict['mtls'] = None + # set to None if oauth (nullable) is None + # and model_fields_set contains the field + if self.oauth is None and "oauth" in self.model_fields_set: + _dict['oauth'] = None + return _dict @classmethod @@ -100,7 +111,9 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "description": obj.get("description"), "events": obj.get("events"), "enabled": obj.get("enabled"), - "mtls": WebhookMtls.from_dict(obj["mtls"]) if obj.get("mtls") is not None else None + "mtls": WebhookMtls.from_dict(obj["mtls"]) if obj.get("mtls") is not None else None, + "oauth": WebhookOAuth.from_dict(obj["oauth"]) if obj.get("oauth") is not None else None, + "customHeaders": obj.get("customHeaders") }) return _obj diff --git a/fireblocks/models/webhook.py b/fireblocks/models/webhook.py index 8918b6b1..643a82af 100644 --- a/fireblocks/models/webhook.py +++ b/fireblocks/models/webhook.py @@ -23,6 +23,7 @@ from typing_extensions import Annotated from fireblocks.models.webhook_event import WebhookEvent from fireblocks.models.webhook_mtls import WebhookMtls +from fireblocks.models.webhook_o_auth_response import WebhookOAuthResponse from typing import Optional, Set from typing_extensions import Self @@ -38,7 +39,9 @@ class Webhook(BaseModel): created_at: StrictInt = Field(description="The date and time the webhook was created in milliseconds", alias="createdAt") updated_at: StrictInt = Field(description="The date and time the webhook was last updated in milliseconds", alias="updatedAt") mtls: Optional[WebhookMtls] = None - __properties: ClassVar[List[str]] = ["id", "url", "description", "events", "status", "createdAt", "updatedAt", "mtls"] + oauth: Optional[WebhookOAuthResponse] = None + custom_headers: Optional[List[StrictStr]] = Field(default=None, description="Names of the custom headers configured for this webhook. Header values are never returned.", alias="customHeaders") + __properties: ClassVar[List[str]] = ["id", "url", "description", "events", "status", "createdAt", "updatedAt", "mtls", "oauth", "customHeaders"] @field_validator('status') def status_validate_enum(cls, value): @@ -89,6 +92,9 @@ def to_dict(self) -> Dict[str, Any]: # override the default output from pydantic by calling `to_dict()` of mtls if self.mtls: _dict['mtls'] = self.mtls.to_dict() + # override the default output from pydantic by calling `to_dict()` of oauth + if self.oauth: + _dict['oauth'] = self.oauth.to_dict() # set to None if mtls (nullable) is None # and model_fields_set contains the field if self.mtls is None and "mtls" in self.model_fields_set: @@ -113,7 +119,9 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "status": obj.get("status"), "createdAt": obj.get("createdAt"), "updatedAt": obj.get("updatedAt"), - "mtls": WebhookMtls.from_dict(obj["mtls"]) if obj.get("mtls") is not None else None + "mtls": WebhookMtls.from_dict(obj["mtls"]) if obj.get("mtls") is not None else None, + "oauth": WebhookOAuthResponse.from_dict(obj["oauth"]) if obj.get("oauth") is not None else None, + "customHeaders": obj.get("customHeaders") }) return _obj diff --git a/fireblocks/models/webhook_o_auth.py b/fireblocks/models/webhook_o_auth.py new file mode 100644 index 00000000..b3b84c42 --- /dev/null +++ b/fireblocks/models/webhook_o_auth.py @@ -0,0 +1,107 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator +from typing import Any, ClassVar, Dict, List, Optional +from typing_extensions import Annotated +from typing import Optional, Set +from typing_extensions import Self + +class WebhookOAuth(BaseModel): + """ + OAuth 2.0 client credentials configuration for the webhook. When set, the webhook dispatcher fetches a bearer token from the configured token endpoint before each delivery and attaches it as `Authorization: Bearer {token}`. Send `null` to remove OAuth configuration entirely. + """ # noqa: E501 + client_id: Annotated[str, Field(strict=True, max_length=255)] = Field(description="OAuth client ID used to authenticate with the token endpoint.", alias="clientId") + client_secret: Annotated[str, Field(strict=True, max_length=480)] = Field(description="OAuth client secret. Write-only — never returned in responses.", alias="clientSecret") + url: Annotated[str, Field(strict=True, max_length=2048)] = Field(description="Token endpoint URL. Must be HTTPS.") + mtls_client_signed_cert: Optional[StrictStr] = Field(default=None, description="Signed client certificate PEM used for mTLS when connecting to the token endpoint. Same format as the webhook mTLS certificate. Send `null` to remove.", alias="mtlsClientSignedCert") + __properties: ClassVar[List[str]] = ["clientId", "clientSecret", "url", "mtlsClientSignedCert"] + + @field_validator('url') + def url_validate_regular_expression(cls, value): + """Validates the regular expression""" + if not re.match(r"^https:\/\/", value): + raise ValueError(r"must validate the regular expression /^https:\/\//") + return value + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of WebhookOAuth from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # set to None if mtls_client_signed_cert (nullable) is None + # and model_fields_set contains the field + if self.mtls_client_signed_cert is None and "mtls_client_signed_cert" in self.model_fields_set: + _dict['mtlsClientSignedCert'] = None + + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of WebhookOAuth from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "clientId": obj.get("clientId"), + "clientSecret": obj.get("clientSecret"), + "url": obj.get("url"), + "mtlsClientSignedCert": obj.get("mtlsClientSignedCert") + }) + return _obj + + diff --git a/fireblocks/models/webhook_o_auth_response.py b/fireblocks/models/webhook_o_auth_response.py new file mode 100644 index 00000000..421c3d30 --- /dev/null +++ b/fireblocks/models/webhook_o_auth_response.py @@ -0,0 +1,97 @@ +# coding: utf-8 + +""" + Fireblocks API + + Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + + The version of the OpenAPI document: 1.6.2 + Contact: developers@fireblocks.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class WebhookOAuthResponse(BaseModel): + """ + OAuth 2.0 client credentials configuration for the webhook. Present only when OAuth is configured. The `clientSecret` is write-only and is never returned. + """ # noqa: E501 + client_id: StrictStr = Field(description="OAuth client ID used to authenticate with the token endpoint.", alias="clientId") + url: StrictStr = Field(description="Token endpoint URL.") + mtls_client_signed_cert: Optional[StrictStr] = Field(default=None, description="Signed client certificate PEM used for mTLS when connecting to the token endpoint.", alias="mtlsClientSignedCert") + __properties: ClassVar[List[str]] = ["clientId", "url", "mtlsClientSignedCert"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of WebhookOAuthResponse from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # set to None if mtls_client_signed_cert (nullable) is None + # and model_fields_set contains the field + if self.mtls_client_signed_cert is None and "mtls_client_signed_cert" in self.model_fields_set: + _dict['mtlsClientSignedCert'] = None + + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of WebhookOAuthResponse from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "clientId": obj.get("clientId"), + "url": obj.get("url"), + "mtlsClientSignedCert": obj.get("mtlsClientSignedCert") + }) + return _obj + + diff --git a/fireblocks/rest.py b/fireblocks/rest.py index 87ec741f..0f84fe64 100644 --- a/fireblocks/rest.py +++ b/fireblocks/rest.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import io import json import re diff --git a/pyproject.toml b/pyproject.toml index a1385e18..08a27f53 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fireblocks" -version = "24.0.0" +version = "0.0.0" description = "Fireblocks API" authors = ["Fireblocks "] license = "MIT License" diff --git a/setup.py b/setup.py index cfa1febf..8e55f57b 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "fireblocks" -VERSION = "24.0.0" +VERSION = "0.0.0" PYTHON_REQUIRES = ">= 3.8" REQUIRES = [ "urllib3 >= 2.1.0, < 3.0.0", diff --git a/test/test_aba_payment_info.py b/test/test_aba_payment_info.py index 7eae40e4..4228b6e4 100644 --- a/test/test_aba_payment_info.py +++ b/test/test_aba_payment_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.aba_payment_info import AbaPaymentInfo diff --git a/test/test_abi_function.py b/test/test_abi_function.py index 2a460207..d4dc11ac 100644 --- a/test/test_abi_function.py +++ b/test/test_abi_function.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.abi_function import AbiFunction diff --git a/test/test_access_registry_address_item.py b/test/test_access_registry_address_item.py index e6f5032c..ef831088 100644 --- a/test/test_access_registry_address_item.py +++ b/test/test_access_registry_address_item.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.access_registry_address_item import AccessRegistryAddressItem diff --git a/test/test_access_registry_current_state_response.py b/test/test_access_registry_current_state_response.py index e92e35b3..bf628371 100644 --- a/test/test_access_registry_current_state_response.py +++ b/test/test_access_registry_current_state_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.access_registry_current_state_response import ( diff --git a/test/test_access_registry_current_state_response2.py b/test/test_access_registry_current_state_response2.py index bde8f034..713ad8c7 100644 --- a/test/test_access_registry_current_state_response2.py +++ b/test/test_access_registry_current_state_response2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.access_registry_current_state_response2 import ( diff --git a/test/test_access_registry_summary_response.py b/test/test_access_registry_summary_response.py index 49840f32..b5342cee 100644 --- a/test/test_access_registry_summary_response.py +++ b/test/test_access_registry_summary_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.access_registry_summary_response import ( diff --git a/test/test_access_type.py b/test/test_access_type.py index e2c1f96a..e05545da 100644 --- a/test/test_access_type.py +++ b/test/test_access_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.access_type import AccessType diff --git a/test/test_account.py b/test/test_account.py index 3dd1f456..7ab327ea 100644 --- a/test/test_account.py +++ b/test/test_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.account import Account diff --git a/test/test_account_access.py b/test/test_account_access.py index 035abde0..d85bc231 100644 --- a/test/test_account_access.py +++ b/test/test_account_access.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.account_access import AccountAccess diff --git a/test/test_account_base.py b/test/test_account_base.py index 2b9abba4..0bfe9499 100644 --- a/test/test_account_base.py +++ b/test/test_account_base.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.account_base import AccountBase diff --git a/test/test_account_based_access_provider.py b/test/test_account_based_access_provider.py index 811c8875..2ba749af 100644 --- a/test/test_account_based_access_provider.py +++ b/test/test_account_based_access_provider.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.account_based_access_provider import AccountBasedAccessProvider diff --git a/test/test_account_based_access_provider_info.py b/test/test_account_based_access_provider_info.py index 0e1d6854..e883a9a1 100644 --- a/test/test_account_based_access_provider_info.py +++ b/test/test_account_based_access_provider_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.account_based_access_provider_info import ( diff --git a/test/test_account_config.py b/test/test_account_config.py index 77d5a00b..1a8f3ff5 100644 --- a/test/test_account_config.py +++ b/test/test_account_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.account_config import AccountConfig diff --git a/test/test_account_holder_details.py b/test/test_account_holder_details.py index 78f66ac2..fe93b6c2 100644 --- a/test/test_account_holder_details.py +++ b/test/test_account_holder_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.account_holder_details import AccountHolderDetails diff --git a/test/test_account_identifier.py b/test/test_account_identifier.py index fe59ebf3..726999ce 100644 --- a/test/test_account_identifier.py +++ b/test/test_account_identifier.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.account_identifier import AccountIdentifier diff --git a/test/test_account_reference.py b/test/test_account_reference.py index cfd97850..c1703a89 100644 --- a/test/test_account_reference.py +++ b/test/test_account_reference.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.account_reference import AccountReference diff --git a/test/test_account_type.py b/test/test_account_type.py index 88db936d..cb7a1ac4 100644 --- a/test/test_account_type.py +++ b/test/test_account_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.account_type import AccountType diff --git a/test/test_account_type2.py b/test/test_account_type2.py index a846d95c..b64b88fd 100644 --- a/test/test_account_type2.py +++ b/test/test_account_type2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.account_type2 import AccountType2 diff --git a/test/test_ach_account_type.py b/test/test_ach_account_type.py index bd270014..8e9a95e6 100644 --- a/test/test_ach_account_type.py +++ b/test/test_ach_account_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.ach_account_type import AchAccountType diff --git a/test/test_ach_address.py b/test/test_ach_address.py index 471a62d5..6bb46f52 100644 --- a/test/test_ach_address.py +++ b/test/test_ach_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.ach_address import AchAddress diff --git a/test/test_ach_destination.py b/test/test_ach_destination.py index 81d18306..ff149fee 100644 --- a/test/test_ach_destination.py +++ b/test/test_ach_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.ach_destination import AchDestination diff --git a/test/test_ach_payment_info.py b/test/test_ach_payment_info.py index 41376529..a0bda981 100644 --- a/test/test_ach_payment_info.py +++ b/test/test_ach_payment_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.ach_payment_info import AchPaymentInfo diff --git a/test/test_action_record.py b/test/test_action_record.py index 179030b0..992344b3 100644 --- a/test/test_action_record.py +++ b/test/test_action_record.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.action_record import ActionRecord diff --git a/test/test_activate_blockchain_response.py b/test/test_activate_blockchain_response.py index b86786ac..fe66be02 100644 --- a/test/test_activate_blockchain_response.py +++ b/test/test_activate_blockchain_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.activate_blockchain_response import ActivateBlockchainResponse diff --git a/test/test_active_roles_response.py b/test/test_active_roles_response.py index 1662b539..a82a05d7 100644 --- a/test/test_active_roles_response.py +++ b/test/test_active_roles_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.active_roles_response import ActiveRolesResponse diff --git a/test/test_adapter_processing_result.py b/test/test_adapter_processing_result.py index 1380723d..dabdbbad 100644 --- a/test/test_adapter_processing_result.py +++ b/test/test_adapter_processing_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.adapter_processing_result import AdapterProcessingResult diff --git a/test/test_add_abi_request_dto.py b/test/test_add_abi_request_dto.py index d1403eaf..951e9505 100644 --- a/test/test_add_abi_request_dto.py +++ b/test/test_add_abi_request_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.add_abi_request_dto import AddAbiRequestDto diff --git a/test/test_add_asset_to_external_wallet_request.py b/test/test_add_asset_to_external_wallet_request.py index 89be0da9..37ade321 100644 --- a/test/test_add_asset_to_external_wallet_request.py +++ b/test/test_add_asset_to_external_wallet_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.add_asset_to_external_wallet_request import ( diff --git a/test/test_add_collateral_request_body.py b/test/test_add_collateral_request_body.py index d8d101ab..09b06bee 100644 --- a/test/test_add_collateral_request_body.py +++ b/test/test_add_collateral_request_body.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.add_collateral_request_body import AddCollateralRequestBody diff --git a/test/test_add_connected_account_request.py b/test/test_add_connected_account_request.py index e8705d4d..7ccf57b7 100644 --- a/test/test_add_connected_account_request.py +++ b/test/test_add_connected_account_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.add_connected_account_request import AddConnectedAccountRequest @@ -39,7 +38,7 @@ def make_instance(self, include_optional) -> AddConnectedAccountRequest: return AddConnectedAccountRequest( provider_id = 'BINANCE', display_name = 'My Binance Account', - creds = '[B@6ce03f94', + creds = '[B@7e8e70d5', api_key = 'api_key_abc123', main_account_id = 'acc-parent-001', account_id = 'provider-acc-001', @@ -48,7 +47,7 @@ def make_instance(self, include_optional) -> AddConnectedAccountRequest: else: return AddConnectedAccountRequest( provider_id = 'BINANCE', - creds = '[B@6ce03f94', + creds = '[B@7e8e70d5', api_key = 'api_key_abc123', ) """ diff --git a/test/test_add_connected_account_response.py b/test/test_add_connected_account_response.py index 998e3fec..db71fd37 100644 --- a/test/test_add_connected_account_response.py +++ b/test/test_add_connected_account_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.add_connected_account_response import AddConnectedAccountResponse diff --git a/test/test_add_contract_asset_request.py b/test/test_add_contract_asset_request.py index 2601f9ac..f6167667 100644 --- a/test/test_add_contract_asset_request.py +++ b/test/test_add_contract_asset_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.add_contract_asset_request import AddContractAssetRequest diff --git a/test/test_add_cosigner_request.py b/test/test_add_cosigner_request.py index 75510626..4b18cdb8 100644 --- a/test/test_add_cosigner_request.py +++ b/test/test_add_cosigner_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.add_cosigner_request import AddCosignerRequest diff --git a/test/test_add_cosigner_response.py b/test/test_add_cosigner_response.py index c7b2d3c4..d1fc880c 100644 --- a/test/test_add_cosigner_response.py +++ b/test/test_add_cosigner_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.add_cosigner_response import AddCosignerResponse diff --git a/test/test_add_exchange_account_request.py b/test/test_add_exchange_account_request.py index 6107bd28..990190c6 100644 --- a/test/test_add_exchange_account_request.py +++ b/test/test_add_exchange_account_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.add_exchange_account_request import AddExchangeAccountRequest diff --git a/test/test_add_exchange_account_response.py b/test/test_add_exchange_account_response.py index 7fc062c4..164458a5 100644 --- a/test/test_add_exchange_account_response.py +++ b/test/test_add_exchange_account_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.add_exchange_account_response import AddExchangeAccountResponse diff --git a/test/test_added_connected_account_item.py b/test/test_added_connected_account_item.py index e32348cf..ceddc654 100644 --- a/test/test_added_connected_account_item.py +++ b/test/test_added_connected_account_item.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.added_connected_account_item import AddedConnectedAccountItem diff --git a/test/test_additional_info.py b/test/test_additional_info.py index ba2ae694..e8456ddd 100644 --- a/test/test_additional_info.py +++ b/test/test_additional_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.additional_info import AdditionalInfo diff --git a/test/test_additional_info_request.py b/test/test_additional_info_request.py index 72f53be6..aad789c8 100644 --- a/test/test_additional_info_request.py +++ b/test/test_additional_info_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.additional_info_request import AdditionalInfoRequest diff --git a/test/test_additional_info_request_additional_info.py b/test/test_additional_info_request_additional_info.py index b2e02947..36db5f2f 100644 --- a/test/test_additional_info_request_additional_info.py +++ b/test/test_additional_info_request_additional_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.additional_info_request_additional_info import ( diff --git a/test/test_address_balance_item_dto.py b/test/test_address_balance_item_dto.py index dfa11fa3..80d5306a 100644 --- a/test/test_address_balance_item_dto.py +++ b/test/test_address_balance_item_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_balance_item_dto import AddressBalanceItemDto diff --git a/test/test_address_balance_paged_response.py b/test/test_address_balance_paged_response.py index d9a762ad..9ac683d6 100644 --- a/test/test_address_balance_paged_response.py +++ b/test/test_address_balance_paged_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_balance_paged_response import AddressBalancePagedResponse diff --git a/test/test_address_balance_paged_response2.py b/test/test_address_balance_paged_response2.py index c274aef0..517d42cf 100644 --- a/test/test_address_balance_paged_response2.py +++ b/test/test_address_balance_paged_response2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_balance_paged_response2 import ( diff --git a/test/test_address_not_available_error.py b/test/test_address_not_available_error.py index 330f7e6e..981abc7c 100644 --- a/test/test_address_not_available_error.py +++ b/test/test_address_not_available_error.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_not_available_error import AddressNotAvailableError diff --git a/test/test_address_registry_add_vault_opt_outs_request.py b/test/test_address_registry_add_vault_opt_outs_request.py index 3f62486e..1aaa0ff1 100644 --- a/test/test_address_registry_add_vault_opt_outs_request.py +++ b/test/test_address_registry_add_vault_opt_outs_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_registry_add_vault_opt_outs_request import ( diff --git a/test/test_address_registry_add_vault_opt_outs_request_vault_account_ids_inner.py b/test/test_address_registry_add_vault_opt_outs_request_vault_account_ids_inner.py index 87c366f3..cec3eb36 100644 --- a/test/test_address_registry_add_vault_opt_outs_request_vault_account_ids_inner.py +++ b/test/test_address_registry_add_vault_opt_outs_request_vault_account_ids_inner.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_registry_add_vault_opt_outs_request_vault_account_ids_inner import ( diff --git a/test/test_address_registry_add_vault_opt_outs_response.py b/test/test_address_registry_add_vault_opt_outs_response.py index ec9614a3..1d6f72c0 100644 --- a/test/test_address_registry_add_vault_opt_outs_response.py +++ b/test/test_address_registry_add_vault_opt_outs_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_registry_add_vault_opt_outs_response import ( diff --git a/test/test_address_registry_error.py b/test/test_address_registry_error.py index a0077701..dcc99622 100644 --- a/test/test_address_registry_error.py +++ b/test/test_address_registry_error.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_registry_error import AddressRegistryError diff --git a/test/test_address_registry_get_vault_opt_out_response.py b/test/test_address_registry_get_vault_opt_out_response.py index d4a62122..babdff92 100644 --- a/test/test_address_registry_get_vault_opt_out_response.py +++ b/test/test_address_registry_get_vault_opt_out_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_registry_get_vault_opt_out_response import ( diff --git a/test/test_address_registry_legal_entity.py b/test/test_address_registry_legal_entity.py index 2b1962b1..e9c02488 100644 --- a/test/test_address_registry_legal_entity.py +++ b/test/test_address_registry_legal_entity.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_registry_legal_entity import AddressRegistryLegalEntity diff --git a/test/test_address_registry_list_vault_opt_outs_response.py b/test/test_address_registry_list_vault_opt_outs_response.py index 531ddb8c..cf106c11 100644 --- a/test/test_address_registry_list_vault_opt_outs_response.py +++ b/test/test_address_registry_list_vault_opt_outs_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_registry_list_vault_opt_outs_response import ( diff --git a/test/test_address_registry_remove_all_vault_opt_outs_response.py b/test/test_address_registry_remove_all_vault_opt_outs_response.py index 5e1cfb98..fd12ab15 100644 --- a/test/test_address_registry_remove_all_vault_opt_outs_response.py +++ b/test/test_address_registry_remove_all_vault_opt_outs_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_registry_remove_all_vault_opt_outs_response import ( diff --git a/test/test_address_registry_remove_vault_opt_out_response.py b/test/test_address_registry_remove_vault_opt_out_response.py index db97c1a7..4e06361c 100644 --- a/test/test_address_registry_remove_vault_opt_out_response.py +++ b/test/test_address_registry_remove_vault_opt_out_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_registry_remove_vault_opt_out_response import ( diff --git a/test/test_address_registry_tenant_registry_response.py b/test/test_address_registry_tenant_registry_response.py index bf1c06fa..00374697 100644 --- a/test/test_address_registry_tenant_registry_response.py +++ b/test/test_address_registry_tenant_registry_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_registry_tenant_registry_response import ( diff --git a/test/test_address_registry_travel_rule_provider.py b/test/test_address_registry_travel_rule_provider.py index 75aceab3..27402e45 100644 --- a/test/test_address_registry_travel_rule_provider.py +++ b/test/test_address_registry_travel_rule_provider.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_registry_travel_rule_provider import ( diff --git a/test/test_address_registry_vault_list_order.py b/test/test_address_registry_vault_list_order.py index 5e63f776..e56b0368 100644 --- a/test/test_address_registry_vault_list_order.py +++ b/test/test_address_registry_vault_list_order.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_registry_vault_list_order import ( diff --git a/test/test_address_registry_vault_opt_out_item.py b/test/test_address_registry_vault_opt_out_item.py index e4a930c0..f9714782 100644 --- a/test/test_address_registry_vault_opt_out_item.py +++ b/test/test_address_registry_vault_opt_out_item.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_registry_vault_opt_out_item import ( diff --git a/test/test_address_reverse_lookup_response.py b/test/test_address_reverse_lookup_response.py index 470e18f9..99a07b9d 100644 --- a/test/test_address_reverse_lookup_response.py +++ b/test/test_address_reverse_lookup_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.address_reverse_lookup_response import ( diff --git a/test/test_addresses_filters.py b/test/test_addresses_filters.py index 096e729c..13595743 100644 --- a/test/test_addresses_filters.py +++ b/test/test_addresses_filters.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.addresses_filters import AddressesFilters diff --git a/test/test_alert_exposure_type_enum.py b/test/test_alert_exposure_type_enum.py index 1f6a16d0..2c0ee3f0 100644 --- a/test/test_alert_exposure_type_enum.py +++ b/test/test_alert_exposure_type_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.alert_exposure_type_enum import AlertExposureTypeEnum diff --git a/test/test_alert_level_enum.py b/test/test_alert_level_enum.py index 6d3be3ea..3d5f2826 100644 --- a/test/test_alert_level_enum.py +++ b/test/test_alert_level_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.alert_level_enum import AlertLevelEnum diff --git a/test/test_allowlist_entry.py b/test/test_allowlist_entry.py index 3286f378..c8666c16 100644 --- a/test/test_allowlist_entry.py +++ b/test/test_allowlist_entry.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.allowlist_entry import AllowlistEntry diff --git a/test/test_allowlist_entry_response.py b/test/test_allowlist_entry_response.py index 1be8e55a..ac57a685 100644 --- a/test/test_allowlist_entry_response.py +++ b/test/test_allowlist_entry_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.allowlist_entry_response import AllowlistEntryResponse diff --git a/test/test_allowlist_entry_status.py b/test/test_allowlist_entry_status.py index 5eb39242..05c50a00 100644 --- a/test/test_allowlist_entry_status.py +++ b/test/test_allowlist_entry_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.allowlist_entry_status import AllowlistEntryStatus diff --git a/test/test_allowlist_metadata.py b/test/test_allowlist_metadata.py index f206b267..6b4ce161 100644 --- a/test/test_allowlist_metadata.py +++ b/test/test_allowlist_metadata.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.allowlist_metadata import AllowlistMetadata diff --git a/test/test_allowlist_response.py b/test/test_allowlist_response.py index 0f202d0e..e7e7f835 100644 --- a/test/test_allowlist_response.py +++ b/test/test_allowlist_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.allowlist_response import AllowlistResponse diff --git a/test/test_aml_alert.py b/test/test_aml_alert.py index a89e8cb9..68b18615 100644 --- a/test/test_aml_alert.py +++ b/test/test_aml_alert.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.aml_alert import AmlAlert diff --git a/test/test_aml_bypass_reason_enum.py b/test/test_aml_bypass_reason_enum.py index ef4146f5..a6fbb04b 100644 --- a/test/test_aml_bypass_reason_enum.py +++ b/test/test_aml_bypass_reason_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.aml_bypass_reason_enum import AmlBypassReasonEnum diff --git a/test/test_aml_matched_rule.py b/test/test_aml_matched_rule.py index 3314fa2d..faf04e77 100644 --- a/test/test_aml_matched_rule.py +++ b/test/test_aml_matched_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.aml_matched_rule import AmlMatchedRule diff --git a/test/test_aml_registration_result.py b/test/test_aml_registration_result.py index 26209785..ab0d9050 100644 --- a/test/test_aml_registration_result.py +++ b/test/test_aml_registration_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.aml_registration_result import AmlRegistrationResult diff --git a/test/test_aml_registration_result_full_payload.py b/test/test_aml_registration_result_full_payload.py index f13304f9..57dd9bbd 100644 --- a/test/test_aml_registration_result_full_payload.py +++ b/test/test_aml_registration_result_full_payload.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.aml_registration_result_full_payload import ( diff --git a/test/test_aml_result.py b/test/test_aml_result.py index d2aafa52..5468334c 100644 --- a/test/test_aml_result.py +++ b/test/test_aml_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.aml_result import AmlResult diff --git a/test/test_aml_screening_result.py b/test/test_aml_screening_result.py index 51bba482..e2dd026a 100644 --- a/test/test_aml_screening_result.py +++ b/test/test_aml_screening_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.aml_screening_result import AmlScreeningResult diff --git a/test/test_aml_status_enum.py b/test/test_aml_status_enum.py index 3ed0811d..8bc9326f 100644 --- a/test/test_aml_status_enum.py +++ b/test/test_aml_status_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.aml_status_enum import AmlStatusEnum diff --git a/test/test_aml_verdict_manual_request.py b/test/test_aml_verdict_manual_request.py index efcc196d..7e6a8d44 100644 --- a/test/test_aml_verdict_manual_request.py +++ b/test/test_aml_verdict_manual_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.aml_verdict_manual_request import AmlVerdictManualRequest diff --git a/test/test_aml_verdict_manual_response.py b/test/test_aml_verdict_manual_response.py index 44cd6247..6cfff7d3 100644 --- a/test/test_aml_verdict_manual_response.py +++ b/test/test_aml_verdict_manual_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.aml_verdict_manual_response import AmlVerdictManualResponse diff --git a/test/test_amount_and_chain_descriptor.py b/test/test_amount_and_chain_descriptor.py index d2eb47e4..62a90f58 100644 --- a/test/test_amount_and_chain_descriptor.py +++ b/test/test_amount_and_chain_descriptor.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.amount_and_chain_descriptor import AmountAndChainDescriptor diff --git a/test/test_amount_config.py b/test/test_amount_config.py index 3f32e72b..8ecc477d 100644 --- a/test/test_amount_config.py +++ b/test/test_amount_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.amount_config import AmountConfig diff --git a/test/test_amount_config_currency.py b/test/test_amount_config_currency.py index b42a41a6..3ac4a0e6 100644 --- a/test/test_amount_config_currency.py +++ b/test/test_amount_config_currency.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.amount_config_currency import AmountConfigCurrency diff --git a/test/test_amount_info.py b/test/test_amount_info.py index be0b42d6..f4521292 100644 --- a/test/test_amount_info.py +++ b/test/test_amount_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.amount_info import AmountInfo diff --git a/test/test_amount_over_time_config.py b/test/test_amount_over_time_config.py index a274a767..0c76c27e 100644 --- a/test/test_amount_over_time_config.py +++ b/test/test_amount_over_time_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.amount_over_time_config import AmountOverTimeConfig diff --git a/test/test_amount_range.py b/test/test_amount_range.py index 3ac678e3..d65a5e9e 100644 --- a/test/test_amount_range.py +++ b/test/test_amount_range.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.amount_range import AmountRange diff --git a/test/test_amount_range_min_max.py b/test/test_amount_range_min_max.py index b94158c3..f7899db1 100644 --- a/test/test_amount_range_min_max.py +++ b/test/test_amount_range_min_max.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.amount_range_min_max import AmountRangeMinMax diff --git a/test/test_amount_range_min_max2.py b/test/test_amount_range_min_max2.py index 209e3898..4d5eff94 100644 --- a/test/test_amount_range_min_max2.py +++ b/test/test_amount_range_min_max2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.amount_range_min_max2 import AmountRangeMinMax2 diff --git a/test/test_api_key.py b/test/test_api_key.py index 6a88f90e..b8a05b6c 100644 --- a/test/test_api_key.py +++ b/test/test_api_key.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.api_key import ApiKey diff --git a/test/test_api_keys_paginated_response.py b/test/test_api_keys_paginated_response.py index 59770ad8..533cf1f5 100644 --- a/test/test_api_keys_paginated_response.py +++ b/test/test_api_keys_paginated_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.api_keys_paginated_response import ApiKeysPaginatedResponse diff --git a/test/test_api_user.py b/test/test_api_user.py index 5c91952a..722f01b4 100644 --- a/test/test_api_user.py +++ b/test/test_api_user.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.api_user import APIUser diff --git a/test/test_api_user_api.py b/test/test_api_user_api.py index b15643fc..ea916415 100644 --- a/test/test_api_user_api.py +++ b/test/test_api_user_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.api_user_api import ApiUserApi diff --git a/test/test_approval_request.py b/test/test_approval_request.py index 12b16561..fc29d4e6 100644 --- a/test/test_approval_request.py +++ b/test/test_approval_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.approval_request import ApprovalRequest diff --git a/test/test_approvers_config.py b/test/test_approvers_config.py index ba77bfbd..5b7c9a20 100644 --- a/test/test_approvers_config.py +++ b/test/test_approvers_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.approvers_config import ApproversConfig diff --git a/test/test_approvers_config_approval_groups_inner.py b/test/test_approvers_config_approval_groups_inner.py index 82a2e8e9..ed722774 100644 --- a/test/test_approvers_config_approval_groups_inner.py +++ b/test/test_approvers_config_approval_groups_inner.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.approvers_config_approval_groups_inner import ( diff --git a/test/test_apy.py b/test/test_apy.py index 27181c40..55dbc1aa 100644 --- a/test/test_apy.py +++ b/test/test_apy.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.apy import Apy diff --git a/test/test_ars_config_response.py b/test/test_ars_config_response.py index ade0cadc..4dfbeb19 100644 --- a/test/test_ars_config_response.py +++ b/test/test_ars_config_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.ars_config_response import ArsConfigResponse diff --git a/test/test_asset.py b/test/test_asset.py index 2a4bee38..cfc185f9 100644 --- a/test/test_asset.py +++ b/test/test_asset.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset import Asset diff --git a/test/test_asset_already_exist_http_error.py b/test/test_asset_already_exist_http_error.py index 7075bc15..d06789c5 100644 --- a/test/test_asset_already_exist_http_error.py +++ b/test/test_asset_already_exist_http_error.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_already_exist_http_error import AssetAlreadyExistHttpError diff --git a/test/test_asset_amount.py b/test/test_asset_amount.py index fce6e0d2..df1a67b9 100644 --- a/test/test_asset_amount.py +++ b/test/test_asset_amount.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_amount import AssetAmount diff --git a/test/test_asset_bad_request_error_response.py b/test/test_asset_bad_request_error_response.py index 8e99ce3f..e0afeb70 100644 --- a/test/test_asset_bad_request_error_response.py +++ b/test/test_asset_bad_request_error_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_bad_request_error_response import ( diff --git a/test/test_asset_class.py b/test/test_asset_class.py index 18be0720..543e431a 100644 --- a/test/test_asset_class.py +++ b/test/test_asset_class.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_class import AssetClass diff --git a/test/test_asset_config.py b/test/test_asset_config.py index b6add56a..2fbe164d 100644 --- a/test/test_asset_config.py +++ b/test/test_asset_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_config import AssetConfig diff --git a/test/test_asset_conflict_error_response.py b/test/test_asset_conflict_error_response.py index 09b615f2..3388c8e8 100644 --- a/test/test_asset_conflict_error_response.py +++ b/test/test_asset_conflict_error_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_conflict_error_response import AssetConflictErrorResponse diff --git a/test/test_asset_details_metadata.py b/test/test_asset_details_metadata.py index e62ed523..234733b7 100644 --- a/test/test_asset_details_metadata.py +++ b/test/test_asset_details_metadata.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_details_metadata import AssetDetailsMetadata diff --git a/test/test_asset_details_onchain.py b/test/test_asset_details_onchain.py index 07dbc9e9..977d2c88 100644 --- a/test/test_asset_details_onchain.py +++ b/test/test_asset_details_onchain.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_details_onchain import AssetDetailsOnchain diff --git a/test/test_asset_feature.py b/test/test_asset_feature.py index 98062dfe..94d7eb68 100644 --- a/test/test_asset_feature.py +++ b/test/test_asset_feature.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_feature import AssetFeature diff --git a/test/test_asset_forbidden_error_response.py b/test/test_asset_forbidden_error_response.py index 3c5fab3f..5cb403a0 100644 --- a/test/test_asset_forbidden_error_response.py +++ b/test/test_asset_forbidden_error_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_forbidden_error_response import AssetForbiddenErrorResponse diff --git a/test/test_asset_internal_server_error_response.py b/test/test_asset_internal_server_error_response.py index 0641002e..8e977e0d 100644 --- a/test/test_asset_internal_server_error_response.py +++ b/test/test_asset_internal_server_error_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_internal_server_error_response import ( diff --git a/test/test_asset_media.py b/test/test_asset_media.py index 18c27a93..4aa01b32 100644 --- a/test/test_asset_media.py +++ b/test/test_asset_media.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_media import AssetMedia diff --git a/test/test_asset_media_attributes.py b/test/test_asset_media_attributes.py index 158c1e9c..1cd79432 100644 --- a/test/test_asset_media_attributes.py +++ b/test/test_asset_media_attributes.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_media_attributes import AssetMediaAttributes diff --git a/test/test_asset_metadata.py b/test/test_asset_metadata.py index df346ca5..a0b0481b 100644 --- a/test/test_asset_metadata.py +++ b/test/test_asset_metadata.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_metadata import AssetMetadata diff --git a/test/test_asset_metadata_dto.py b/test/test_asset_metadata_dto.py index 0e13ae3f..67df5541 100644 --- a/test/test_asset_metadata_dto.py +++ b/test/test_asset_metadata_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_metadata_dto import AssetMetadataDto diff --git a/test/test_asset_metadata_request.py b/test/test_asset_metadata_request.py index 949bf56f..7cff5881 100644 --- a/test/test_asset_metadata_request.py +++ b/test/test_asset_metadata_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_metadata_request import AssetMetadataRequest diff --git a/test/test_asset_not_found_error_response.py b/test/test_asset_not_found_error_response.py index 60fe4503..38cfe167 100644 --- a/test/test_asset_not_found_error_response.py +++ b/test/test_asset_not_found_error_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_not_found_error_response import AssetNotFoundErrorResponse diff --git a/test/test_asset_note.py b/test/test_asset_note.py index d320157e..e171a824 100644 --- a/test/test_asset_note.py +++ b/test/test_asset_note.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_note import AssetNote diff --git a/test/test_asset_note_request.py b/test/test_asset_note_request.py index b0db20df..ec4954eb 100644 --- a/test/test_asset_note_request.py +++ b/test/test_asset_note_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_note_request import AssetNoteRequest diff --git a/test/test_asset_onchain.py b/test/test_asset_onchain.py index a97b3980..2699f943 100644 --- a/test/test_asset_onchain.py +++ b/test/test_asset_onchain.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_onchain import AssetOnchain diff --git a/test/test_asset_price_forbidden_error_response.py b/test/test_asset_price_forbidden_error_response.py index c28d3a71..542619dd 100644 --- a/test/test_asset_price_forbidden_error_response.py +++ b/test/test_asset_price_forbidden_error_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_price_forbidden_error_response import ( diff --git a/test/test_asset_price_not_found_error_response.py b/test/test_asset_price_not_found_error_response.py index 2f53aa17..708a4047 100644 --- a/test/test_asset_price_not_found_error_response.py +++ b/test/test_asset_price_not_found_error_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_price_not_found_error_response import ( diff --git a/test/test_asset_price_response.py b/test/test_asset_price_response.py index 160a0e28..bc559d59 100644 --- a/test/test_asset_price_response.py +++ b/test/test_asset_price_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_price_response import AssetPriceResponse diff --git a/test/test_asset_response.py b/test/test_asset_response.py index 1d7508f0..635a135a 100644 --- a/test/test_asset_response.py +++ b/test/test_asset_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_response import AssetResponse diff --git a/test/test_asset_scope.py b/test/test_asset_scope.py index ee17755a..66484df5 100644 --- a/test/test_asset_scope.py +++ b/test/test_asset_scope.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_scope import AssetScope diff --git a/test/test_asset_type_response.py b/test/test_asset_type_response.py index 2e6b7a5e..291923cd 100644 --- a/test/test_asset_type_response.py +++ b/test/test_asset_type_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_type_response import AssetTypeResponse diff --git a/test/test_asset_types_config_inner.py b/test/test_asset_types_config_inner.py index 05da5fcb..8bd2b546 100644 --- a/test/test_asset_types_config_inner.py +++ b/test/test_asset_types_config_inner.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_types_config_inner import AssetTypesConfigInner diff --git a/test/test_asset_wallet.py b/test/test_asset_wallet.py index f82860e7..e2c68d50 100644 --- a/test/test_asset_wallet.py +++ b/test/test_asset_wallet.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.asset_wallet import AssetWallet diff --git a/test/test_assign_vaults_to_legal_entity_request.py b/test/test_assign_vaults_to_legal_entity_request.py index cf2d614c..3e5857b8 100644 --- a/test/test_assign_vaults_to_legal_entity_request.py +++ b/test/test_assign_vaults_to_legal_entity_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.assign_vaults_to_legal_entity_request import ( diff --git a/test/test_assign_vaults_to_legal_entity_response.py b/test/test_assign_vaults_to_legal_entity_response.py index 9ce98f28..39a187af 100644 --- a/test/test_assign_vaults_to_legal_entity_response.py +++ b/test/test_assign_vaults_to_legal_entity_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.assign_vaults_to_legal_entity_response import ( diff --git a/test/test_attach_detach_utxo_labels_request.py b/test/test_attach_detach_utxo_labels_request.py index 1388793d..94c07e42 100644 --- a/test/test_attach_detach_utxo_labels_request.py +++ b/test/test_attach_detach_utxo_labels_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.attach_detach_utxo_labels_request import ( diff --git a/test/test_attach_detach_utxo_labels_response.py b/test/test_attach_detach_utxo_labels_response.py index 04bb500c..ec3b85a9 100644 --- a/test/test_attach_detach_utxo_labels_response.py +++ b/test/test_attach_detach_utxo_labels_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.attach_detach_utxo_labels_response import ( diff --git a/test/test_audit_log_data.py b/test/test_audit_log_data.py index f817a71f..6463ef73 100644 --- a/test/test_audit_log_data.py +++ b/test/test_audit_log_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.audit_log_data import AuditLogData diff --git a/test/test_audit_logs_api.py b/test/test_audit_logs_api.py index 5bfbca8e..8da3b639 100644 --- a/test/test_audit_logs_api.py +++ b/test/test_audit_logs_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.audit_logs_api import AuditLogsApi diff --git a/test/test_auditor_data.py b/test/test_auditor_data.py index 74a66306..cd91ad7f 100644 --- a/test/test_auditor_data.py +++ b/test/test_auditor_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.auditor_data import AuditorData diff --git a/test/test_authorization_groups.py b/test/test_authorization_groups.py index b7d9fdd6..89f19aef 100644 --- a/test/test_authorization_groups.py +++ b/test/test_authorization_groups.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.authorization_groups import AuthorizationGroups diff --git a/test/test_authorization_info.py b/test/test_authorization_info.py index 489f7af9..bf5f95d6 100644 --- a/test/test_authorization_info.py +++ b/test/test_authorization_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.authorization_info import AuthorizationInfo diff --git a/test/test_automation_settings_request.py b/test/test_automation_settings_request.py index 312530f4..17c5a9e5 100644 --- a/test/test_automation_settings_request.py +++ b/test/test_automation_settings_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.automation_settings_request import AutomationSettingsRequest diff --git a/test/test_automation_settings_response.py b/test/test_automation_settings_response.py index 9596cbd9..726ad5fc 100644 --- a/test/test_automation_settings_response.py +++ b/test/test_automation_settings_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.automation_settings_response import AutomationSettingsResponse diff --git a/test/test_balance_history_item_dto.py b/test/test_balance_history_item_dto.py index 51f11ecd..90767875 100644 --- a/test/test_balance_history_item_dto.py +++ b/test/test_balance_history_item_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.balance_history_item_dto import BalanceHistoryItemDto diff --git a/test/test_balance_history_paged_response.py b/test/test_balance_history_paged_response.py index faa8583b..43ce07f2 100644 --- a/test/test_balance_history_paged_response.py +++ b/test/test_balance_history_paged_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.balance_history_paged_response import BalanceHistoryPagedResponse diff --git a/test/test_balance_history_paged_response2.py b/test/test_balance_history_paged_response2.py index 1c5dae83..c67ca918 100644 --- a/test/test_balance_history_paged_response2.py +++ b/test/test_balance_history_paged_response2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.balance_history_paged_response2 import ( diff --git a/test/test_bank_address.py b/test/test_bank_address.py index cebf51ec..c9c5b65d 100644 --- a/test/test_bank_address.py +++ b/test/test_bank_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.bank_address import BankAddress diff --git a/test/test_base_provider.py b/test/test_base_provider.py index 8b7121f7..bf16a039 100644 --- a/test/test_base_provider.py +++ b/test/test_base_provider.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.base_provider import BaseProvider diff --git a/test/test_basic_address_request.py b/test/test_basic_address_request.py index bd68c398..85405b59 100644 --- a/test/test_basic_address_request.py +++ b/test/test_basic_address_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.basic_address_request import BasicAddressRequest diff --git a/test/test_block_info.py b/test/test_block_info.py index bec4c83d..5a841c6c 100644 --- a/test/test_block_info.py +++ b/test/test_block_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.block_info import BlockInfo diff --git a/test/test_blockchain.py b/test/test_blockchain.py index d9f21148..839bd8f2 100644 --- a/test/test_blockchain.py +++ b/test/test_blockchain.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain import Blockchain diff --git a/test/test_blockchain_address.py b/test/test_blockchain_address.py index a8ed9bb1..c5e63b37 100644 --- a/test/test_blockchain_address.py +++ b/test/test_blockchain_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_address import BlockchainAddress diff --git a/test/test_blockchain_declared_properties.py b/test/test_blockchain_declared_properties.py index 6cbd7fad..38cdebe7 100644 --- a/test/test_blockchain_declared_properties.py +++ b/test/test_blockchain_declared_properties.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_declared_properties import ( diff --git a/test/test_blockchain_destination.py b/test/test_blockchain_destination.py index 57342fed..17c5e300 100644 --- a/test/test_blockchain_destination.py +++ b/test/test_blockchain_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_destination import BlockchainDestination diff --git a/test/test_blockchain_environment.py b/test/test_blockchain_environment.py index 2330d029..5c99d8d8 100644 --- a/test/test_blockchain_environment.py +++ b/test/test_blockchain_environment.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_environment import BlockchainEnvironment diff --git a/test/test_blockchain_explorer.py b/test/test_blockchain_explorer.py index 7022a432..bf5a4095 100644 --- a/test/test_blockchain_explorer.py +++ b/test/test_blockchain_explorer.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_explorer import BlockchainExplorer diff --git a/test/test_blockchain_link_beta_api.py b/test/test_blockchain_link_beta_api.py index 8bdf5976..23c28c69 100644 --- a/test/test_blockchain_link_beta_api.py +++ b/test/test_blockchain_link_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.blockchain_link_beta_api import BlockchainLinkBetaApi diff --git a/test/test_blockchain_media.py b/test/test_blockchain_media.py index e1534b04..f9edef7a 100644 --- a/test/test_blockchain_media.py +++ b/test/test_blockchain_media.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_media import BlockchainMedia diff --git a/test/test_blockchain_metadata.py b/test/test_blockchain_metadata.py index 10ac7638..dc9cbf9e 100644 --- a/test/test_blockchain_metadata.py +++ b/test/test_blockchain_metadata.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_metadata import BlockchainMetadata diff --git a/test/test_blockchain_not_found_error_response.py b/test/test_blockchain_not_found_error_response.py index caec4f14..cc7f3e77 100644 --- a/test/test_blockchain_not_found_error_response.py +++ b/test/test_blockchain_not_found_error_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_not_found_error_response import ( diff --git a/test/test_blockchain_onchain.py b/test/test_blockchain_onchain.py index bdf4d433..dba8f124 100644 --- a/test/test_blockchain_onchain.py +++ b/test/test_blockchain_onchain.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_onchain import BlockchainOnchain diff --git a/test/test_blockchain_response.py b/test/test_blockchain_response.py index a6e00d72..0c345897 100644 --- a/test/test_blockchain_response.py +++ b/test/test_blockchain_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_response import BlockchainResponse diff --git a/test/test_blockchain_rpc_auth.py b/test/test_blockchain_rpc_auth.py index 695e1909..570281a7 100644 --- a/test/test_blockchain_rpc_auth.py +++ b/test/test_blockchain_rpc_auth.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_rpc_auth import BlockchainRpcAuth diff --git a/test/test_blockchain_sort_field.py b/test/test_blockchain_sort_field.py index 4731f55a..02462427 100644 --- a/test/test_blockchain_sort_field.py +++ b/test/test_blockchain_sort_field.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_sort_field import BlockchainSortField diff --git a/test/test_blockchain_state_filter.py b/test/test_blockchain_state_filter.py index 9c0e36d3..7f1b25b0 100644 --- a/test/test_blockchain_state_filter.py +++ b/test/test_blockchain_state_filter.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_state_filter import BlockchainStateFilter diff --git a/test/test_blockchain_transfer.py b/test/test_blockchain_transfer.py index 5c5904f4..682bb3c1 100644 --- a/test/test_blockchain_transfer.py +++ b/test/test_blockchain_transfer.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.blockchain_transfer import BlockchainTransfer diff --git a/test/test_blockchains_assets_api.py b/test/test_blockchains_assets_api.py index 65905864..ead1b157 100644 --- a/test/test_blockchains_assets_api.py +++ b/test/test_blockchains_assets_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.blockchains_assets_api import BlockchainsAssetsApi diff --git a/test/test_bps_fee.py b/test/test_bps_fee.py index bb6aff7d..912d67a2 100644 --- a/test/test_bps_fee.py +++ b/test/test_bps_fee.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.bps_fee import BpsFee diff --git a/test/test_business_entity_type_enum.py b/test/test_business_entity_type_enum.py index cdfd3636..4efabd1e 100644 --- a/test/test_business_entity_type_enum.py +++ b/test/test_business_entity_type_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.business_entity_type_enum import BusinessEntityTypeEnum diff --git a/test/test_business_identification.py b/test/test_business_identification.py index 17145e1b..e7968e99 100644 --- a/test/test_business_identification.py +++ b/test/test_business_identification.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.business_identification import BusinessIdentification diff --git a/test/test_byork_config_response.py b/test/test_byork_config_response.py index dc23f5ae..81f3fce2 100644 --- a/test/test_byork_config_response.py +++ b/test/test_byork_config_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.byork_config_response import ByorkConfigResponse diff --git a/test/test_byork_set_timeouts_request.py b/test/test_byork_set_timeouts_request.py index 8ae7ae8c..e7c88a6c 100644 --- a/test/test_byork_set_timeouts_request.py +++ b/test/test_byork_set_timeouts_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.byork_set_timeouts_request import ByorkSetTimeoutsRequest diff --git a/test/test_byork_set_verdict_enum.py b/test/test_byork_set_verdict_enum.py index e53e5f04..4fbda004 100644 --- a/test/test_byork_set_verdict_enum.py +++ b/test/test_byork_set_verdict_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.byork_set_verdict_enum import ByorkSetVerdictEnum diff --git a/test/test_byork_timeout_range.py b/test/test_byork_timeout_range.py index dcc73a93..14e01eeb 100644 --- a/test/test_byork_timeout_range.py +++ b/test/test_byork_timeout_range.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.byork_timeout_range import ByorkTimeoutRange diff --git a/test/test_byork_verdict_enum.py b/test/test_byork_verdict_enum.py index a1f03b4a..aba9b204 100644 --- a/test/test_byork_verdict_enum.py +++ b/test/test_byork_verdict_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.byork_verdict_enum import ByorkVerdictEnum diff --git a/test/test_byork_verdict_request.py b/test/test_byork_verdict_request.py index b3fa72e3..561347a3 100644 --- a/test/test_byork_verdict_request.py +++ b/test/test_byork_verdict_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.byork_verdict_request import ByorkVerdictRequest diff --git a/test/test_byork_verdict_response.py b/test/test_byork_verdict_response.py index 366f459f..a92e2858 100644 --- a/test/test_byork_verdict_response.py +++ b/test/test_byork_verdict_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.byork_verdict_response import ByorkVerdictResponse diff --git a/test/test_byork_verdict_response_status_enum.py b/test/test_byork_verdict_response_status_enum.py index 8e6476e6..42e4238e 100644 --- a/test/test_byork_verdict_response_status_enum.py +++ b/test/test_byork_verdict_response_status_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.byork_verdict_response_status_enum import ( diff --git a/test/test_callback_handler.py b/test/test_callback_handler.py index 381ae7da..19bdf61e 100644 --- a/test/test_callback_handler.py +++ b/test/test_callback_handler.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.callback_handler import CallbackHandler diff --git a/test/test_callback_handler_request.py b/test/test_callback_handler_request.py index a2067294..1f213a1d 100644 --- a/test/test_callback_handler_request.py +++ b/test/test_callback_handler_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.callback_handler_request import CallbackHandlerRequest diff --git a/test/test_cancel_transaction_response.py b/test/test_cancel_transaction_response.py index 2039bbaa..23d8a813 100644 --- a/test/test_cancel_transaction_response.py +++ b/test/test_cancel_transaction_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.cancel_transaction_response import CancelTransactionResponse diff --git a/test/test_chain_descriptor.py b/test/test_chain_descriptor.py index bed4a836..65d78f70 100644 --- a/test/test_chain_descriptor.py +++ b/test/test_chain_descriptor.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.chain_descriptor import ChainDescriptor diff --git a/test/test_chain_info_response.py b/test/test_chain_info_response.py index 6a27c210..955b4a2a 100644 --- a/test/test_chain_info_response.py +++ b/test/test_chain_info_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.chain_info_response import ChainInfoResponse diff --git a/test/test_channel_dvn_config_with_confirmations.py b/test/test_channel_dvn_config_with_confirmations.py index 65679545..164f20af 100644 --- a/test/test_channel_dvn_config_with_confirmations.py +++ b/test/test_channel_dvn_config_with_confirmations.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.channel_dvn_config_with_confirmations import ( diff --git a/test/test_channel_dvn_config_with_confirmations_receive_config.py b/test/test_channel_dvn_config_with_confirmations_receive_config.py index 25dc77d3..00af1dd5 100644 --- a/test/test_channel_dvn_config_with_confirmations_receive_config.py +++ b/test/test_channel_dvn_config_with_confirmations_receive_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.channel_dvn_config_with_confirmations_receive_config import ( diff --git a/test/test_channel_dvn_config_with_confirmations_send_config.py b/test/test_channel_dvn_config_with_confirmations_send_config.py index a408a43b..513f1fcf 100644 --- a/test/test_channel_dvn_config_with_confirmations_send_config.py +++ b/test/test_channel_dvn_config_with_confirmations_send_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.channel_dvn_config_with_confirmations_send_config import ( diff --git a/test/test_chaps_address.py b/test/test_chaps_address.py index fdb024ef..7b9d4dc1 100644 --- a/test/test_chaps_address.py +++ b/test/test_chaps_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.chaps_address import ChapsAddress diff --git a/test/test_chaps_destination.py b/test/test_chaps_destination.py index b31108d6..d23ba50f 100644 --- a/test/test_chaps_destination.py +++ b/test/test_chaps_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.chaps_destination import ChapsDestination diff --git a/test/test_chaps_payment_info.py b/test/test_chaps_payment_info.py index de2947fb..9806e7d4 100644 --- a/test/test_chaps_payment_info.py +++ b/test/test_chaps_payment_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.chaps_payment_info import ChapsPaymentInfo diff --git a/test/test_cips_address.py b/test/test_cips_address.py new file mode 100644 index 00000000..edb67f6e --- /dev/null +++ b/test/test_cips_address.py @@ -0,0 +1,62 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.cips_address import CipsAddress + + +class TestCipsAddress(unittest.TestCase): + """CipsAddress unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> CipsAddress: + """Test CipsAddress + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `CipsAddress` + """ + model = CipsAddress() + if include_optional: + return CipsAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'Bank of China', + bank_country = 'CN', + swift_code = 'BKCHCNBJ', + account_number = '6217000010000000000' + ) + else: + return CipsAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'Bank of China', + bank_country = 'CN', + swift_code = 'BKCHCNBJ', + account_number = '6217000010000000000', + ) + """ + + def testCipsAddress(self): + """Test CipsAddress""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_cips_destination.py b/test/test_cips_destination.py new file mode 100644 index 00000000..316d38c2 --- /dev/null +++ b/test/test_cips_destination.py @@ -0,0 +1,67 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.cips_destination import CipsDestination + + +class TestCipsDestination(unittest.TestCase): + """CipsDestination unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> CipsDestination: + """Test CipsDestination + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `CipsDestination` + """ + model = CipsDestination() + if include_optional: + return CipsDestination( + type = 'CIPS', + address = fireblocks.models.cips_address.CipsAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'Bank of China', + bank_country = 'CN', + swift_code = 'BKCHCNBJ', + account_number = '6217000010000000000', ), + reference_id = 'INV-2024-0001' + ) + else: + return CipsDestination( + type = 'CIPS', + address = fireblocks.models.cips_address.CipsAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'Bank of China', + bank_country = 'CN', + swift_code = 'BKCHCNBJ', + account_number = '6217000010000000000', ), + ) + """ + + def testCipsDestination(self): + """Test CipsDestination""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_claim_rewards_request.py b/test/test_claim_rewards_request.py index cb2fa3b1..74a5bc84 100644 --- a/test/test_claim_rewards_request.py +++ b/test/test_claim_rewards_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.claim_rewards_request import ClaimRewardsRequest diff --git a/test/test_collection_burn_request_dto.py b/test/test_collection_burn_request_dto.py index 9c7387c9..f660a822 100644 --- a/test/test_collection_burn_request_dto.py +++ b/test/test_collection_burn_request_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.collection_burn_request_dto import CollectionBurnRequestDto diff --git a/test/test_collection_burn_response_dto.py b/test/test_collection_burn_response_dto.py index 7a7f1e12..70039863 100644 --- a/test/test_collection_burn_response_dto.py +++ b/test/test_collection_burn_response_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.collection_burn_response_dto import CollectionBurnResponseDto diff --git a/test/test_collection_deploy_request_dto.py b/test/test_collection_deploy_request_dto.py index 83470729..69ef43aa 100644 --- a/test/test_collection_deploy_request_dto.py +++ b/test/test_collection_deploy_request_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.collection_deploy_request_dto import CollectionDeployRequestDto diff --git a/test/test_collection_link_dto.py b/test/test_collection_link_dto.py index bf5d46b2..b609dce8 100644 --- a/test/test_collection_link_dto.py +++ b/test/test_collection_link_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.collection_link_dto import CollectionLinkDto diff --git a/test/test_collection_metadata_dto.py b/test/test_collection_metadata_dto.py index bc5072df..4f20143a 100644 --- a/test/test_collection_metadata_dto.py +++ b/test/test_collection_metadata_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.collection_metadata_dto import CollectionMetadataDto diff --git a/test/test_collection_mint_request_dto.py b/test/test_collection_mint_request_dto.py index 1e197343..5658f805 100644 --- a/test/test_collection_mint_request_dto.py +++ b/test/test_collection_mint_request_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.collection_mint_request_dto import CollectionMintRequestDto diff --git a/test/test_collection_mint_response_dto.py b/test/test_collection_mint_response_dto.py index 0de0d9b6..5cd8e7b8 100644 --- a/test/test_collection_mint_response_dto.py +++ b/test/test_collection_mint_response_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.collection_mint_response_dto import CollectionMintResponseDto diff --git a/test/test_collection_ownership_response.py b/test/test_collection_ownership_response.py index 21b59904..b7c92405 100644 --- a/test/test_collection_ownership_response.py +++ b/test/test_collection_ownership_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.collection_ownership_response import CollectionOwnershipResponse diff --git a/test/test_collection_token_metadata_attribute_dto.py b/test/test_collection_token_metadata_attribute_dto.py index 4db05b11..610a2065 100644 --- a/test/test_collection_token_metadata_attribute_dto.py +++ b/test/test_collection_token_metadata_attribute_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.collection_token_metadata_attribute_dto import ( diff --git a/test/test_collection_token_metadata_dto.py b/test/test_collection_token_metadata_dto.py index 93561bb0..8a7ee7c8 100644 --- a/test/test_collection_token_metadata_dto.py +++ b/test/test_collection_token_metadata_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.collection_token_metadata_dto import CollectionTokenMetadataDto diff --git a/test/test_collection_type.py b/test/test_collection_type.py index 2f588618..e1035c97 100644 --- a/test/test_collection_type.py +++ b/test/test_collection_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.collection_type import CollectionType diff --git a/test/test_compliance_api.py b/test/test_compliance_api.py index f051c334..0c2afc7b 100644 --- a/test/test_compliance_api.py +++ b/test/test_compliance_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.compliance_api import ComplianceApi diff --git a/test/test_compliance_result_full_payload.py b/test/test_compliance_result_full_payload.py index 933d638f..b974410b 100644 --- a/test/test_compliance_result_full_payload.py +++ b/test/test_compliance_result_full_payload.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.compliance_result_full_payload import ComplianceResultFullPayload diff --git a/test/test_compliance_result_statuses_enum.py b/test/test_compliance_result_statuses_enum.py index a206e8a4..41dd9245 100644 --- a/test/test_compliance_result_statuses_enum.py +++ b/test/test_compliance_result_statuses_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.compliance_result_statuses_enum import ( diff --git a/test/test_compliance_results.py b/test/test_compliance_results.py index 05374eb7..4bcd72e6 100644 --- a/test/test_compliance_results.py +++ b/test/test_compliance_results.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.compliance_results import ComplianceResults diff --git a/test/test_compliance_screening_configuration_api.py b/test/test_compliance_screening_configuration_api.py index d475927d..965daf36 100644 --- a/test/test_compliance_screening_configuration_api.py +++ b/test/test_compliance_screening_configuration_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.compliance_screening_configuration_api import ( diff --git a/test/test_compliance_screening_result.py b/test/test_compliance_screening_result.py index 70d69e41..c6d28170 100644 --- a/test/test_compliance_screening_result.py +++ b/test/test_compliance_screening_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.compliance_screening_result import ComplianceScreeningResult diff --git a/test/test_compliance_screening_result_full_payload.py b/test/test_compliance_screening_result_full_payload.py index a54211da..fb4843be 100644 --- a/test/test_compliance_screening_result_full_payload.py +++ b/test/test_compliance_screening_result_full_payload.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.compliance_screening_result_full_payload import ( diff --git a/test/test_config_change_request_status.py b/test/test_config_change_request_status.py index f2893f60..03c49807 100644 --- a/test/test_config_change_request_status.py +++ b/test/test_config_change_request_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.config_change_request_status import ConfigChangeRequestStatus diff --git a/test/test_config_conversion_operation_snapshot.py b/test/test_config_conversion_operation_snapshot.py index bcb3cdb0..47a2ede0 100644 --- a/test/test_config_conversion_operation_snapshot.py +++ b/test/test_config_conversion_operation_snapshot.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.config_conversion_operation_snapshot import ( diff --git a/test/test_config_disbursement_operation_snapshot.py b/test/test_config_disbursement_operation_snapshot.py index a070e06a..305142b9 100644 --- a/test/test_config_disbursement_operation_snapshot.py +++ b/test/test_config_disbursement_operation_snapshot.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.config_disbursement_operation_snapshot import ( diff --git a/test/test_config_operation.py b/test/test_config_operation.py index 3e447699..3a151482 100644 --- a/test/test_config_operation.py +++ b/test/test_config_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.config_operation import ConfigOperation diff --git a/test/test_config_operation_snapshot.py b/test/test_config_operation_snapshot.py index 7cd1ab4d..9cd7bb02 100644 --- a/test/test_config_operation_snapshot.py +++ b/test/test_config_operation_snapshot.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.config_operation_snapshot import ConfigOperationSnapshot diff --git a/test/test_config_operation_status.py b/test/test_config_operation_status.py index 8b619e25..01122404 100644 --- a/test/test_config_operation_status.py +++ b/test/test_config_operation_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.config_operation_status import ConfigOperationStatus diff --git a/test/test_config_transfer_operation_snapshot.py b/test/test_config_transfer_operation_snapshot.py index e5d3f1d0..b3a51a30 100644 --- a/test/test_config_transfer_operation_snapshot.py +++ b/test/test_config_transfer_operation_snapshot.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.config_transfer_operation_snapshot import ( diff --git a/test/test_connected_account.py b/test/test_connected_account.py index 64767076..7fa07104 100644 --- a/test/test_connected_account.py +++ b/test/test_connected_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account import ConnectedAccount diff --git a/test/test_connected_account_approval_status.py b/test/test_connected_account_approval_status.py index aa1d6b2f..c991222b 100644 --- a/test/test_connected_account_approval_status.py +++ b/test/test_connected_account_approval_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account_approval_status import ( diff --git a/test/test_connected_account_asset_type.py b/test/test_connected_account_asset_type.py index f0d964d5..ac521361 100644 --- a/test/test_connected_account_asset_type.py +++ b/test/test_connected_account_asset_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account_asset_type import ConnectedAccountAssetType diff --git a/test/test_connected_account_balances.py b/test/test_connected_account_balances.py index 6fff017c..f3dcef04 100644 --- a/test/test_connected_account_balances.py +++ b/test/test_connected_account_balances.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account_balances import ConnectedAccountBalances diff --git a/test/test_connected_account_balances_response.py b/test/test_connected_account_balances_response.py index b55783ac..5e64693c 100644 --- a/test/test_connected_account_balances_response.py +++ b/test/test_connected_account_balances_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account_balances_response import ( diff --git a/test/test_connected_account_capability.py b/test/test_connected_account_capability.py index 70cb6b7a..9e0a85d6 100644 --- a/test/test_connected_account_capability.py +++ b/test/test_connected_account_capability.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account_capability import ConnectedAccountCapability diff --git a/test/test_connected_account_error_response.py b/test/test_connected_account_error_response.py index 176e4a2d..7ab8392f 100644 --- a/test/test_connected_account_error_response.py +++ b/test/test_connected_account_error_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account_error_response import ( diff --git a/test/test_connected_account_manifest.py b/test/test_connected_account_manifest.py index b7fad488..baa59e2e 100644 --- a/test/test_connected_account_manifest.py +++ b/test/test_connected_account_manifest.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account_manifest import ConnectedAccountManifest diff --git a/test/test_connected_account_rate_response.py b/test/test_connected_account_rate_response.py index 90d5fe8c..c1ef365a 100644 --- a/test/test_connected_account_rate_response.py +++ b/test/test_connected_account_rate_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account_rate_response import ( diff --git a/test/test_connected_account_total_balance.py b/test/test_connected_account_total_balance.py index d9332b45..c7e747a4 100644 --- a/test/test_connected_account_total_balance.py +++ b/test/test_connected_account_total_balance.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account_total_balance import ( diff --git a/test/test_connected_account_trading_pair.py b/test/test_connected_account_trading_pair.py index 5df270aa..222721c0 100644 --- a/test/test_connected_account_trading_pair.py +++ b/test/test_connected_account_trading_pair.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account_trading_pair import ConnectedAccountTradingPair diff --git a/test/test_connected_account_trading_pair_supported_type.py b/test/test_connected_account_trading_pair_supported_type.py index bf920b66..a019e473 100644 --- a/test/test_connected_account_trading_pair_supported_type.py +++ b/test/test_connected_account_trading_pair_supported_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account_trading_pair_supported_type import ( diff --git a/test/test_connected_account_trading_pairs_response.py b/test/test_connected_account_trading_pairs_response.py index f6812515..2a75baf0 100644 --- a/test/test_connected_account_trading_pairs_response.py +++ b/test/test_connected_account_trading_pairs_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account_trading_pairs_response import ( diff --git a/test/test_connected_account_type.py b/test/test_connected_account_type.py index b6ce3350..f9b9201b 100644 --- a/test/test_connected_account_type.py +++ b/test/test_connected_account_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_account_type import ConnectedAccountType diff --git a/test/test_connected_accounts_beta_api.py b/test/test_connected_accounts_beta_api.py index e1e8962e..a09f098c 100644 --- a/test/test_connected_accounts_beta_api.py +++ b/test/test_connected_accounts_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.connected_accounts_beta_api import ConnectedAccountsBetaApi diff --git a/test/test_connected_accounts_response.py b/test/test_connected_accounts_response.py index e186936f..b0c727e8 100644 --- a/test/test_connected_accounts_response.py +++ b/test/test_connected_accounts_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_accounts_response import ConnectedAccountsResponse diff --git a/test/test_connected_single_account.py b/test/test_connected_single_account.py index a142fa8b..4e62c177 100644 --- a/test/test_connected_single_account.py +++ b/test/test_connected_single_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_single_account import ConnectedSingleAccount diff --git a/test/test_connected_single_account_response.py b/test/test_connected_single_account_response.py index 5055ba83..327a6cca 100644 --- a/test/test_connected_single_account_response.py +++ b/test/test_connected_single_account_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.connected_single_account_response import ( diff --git a/test/test_console_user.py b/test/test_console_user.py index 4b7b31d3..bca3f32c 100644 --- a/test/test_console_user.py +++ b/test/test_console_user.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.console_user import ConsoleUser diff --git a/test/test_console_user_api.py b/test/test_console_user_api.py index f5c2f0b7..a6938c36 100644 --- a/test/test_console_user_api.py +++ b/test/test_console_user_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.console_user_api import ConsoleUserApi diff --git a/test/test_contract_abi_response_dto.py b/test/test_contract_abi_response_dto.py index 110b4c0e..a08eac9a 100644 --- a/test/test_contract_abi_response_dto.py +++ b/test/test_contract_abi_response_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_abi_response_dto import ContractAbiResponseDto diff --git a/test/test_contract_abi_response_dto_abi_inner.py b/test/test_contract_abi_response_dto_abi_inner.py index 7b956902..b5852633 100644 --- a/test/test_contract_abi_response_dto_abi_inner.py +++ b/test/test_contract_abi_response_dto_abi_inner.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_abi_response_dto_abi_inner import ( diff --git a/test/test_contract_address_response.py b/test/test_contract_address_response.py index d6dae445..b94429df 100644 --- a/test/test_contract_address_response.py +++ b/test/test_contract_address_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_address_response import ContractAddressResponse diff --git a/test/test_contract_attributes.py b/test/test_contract_attributes.py index 70da96d5..5192a81a 100644 --- a/test/test_contract_attributes.py +++ b/test/test_contract_attributes.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_attributes import ContractAttributes diff --git a/test/test_contract_data_decode_data_type.py b/test/test_contract_data_decode_data_type.py index b35db1b5..52fe564b 100644 --- a/test/test_contract_data_decode_data_type.py +++ b/test/test_contract_data_decode_data_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_data_decode_data_type import ContractDataDecodeDataType diff --git a/test/test_contract_data_decode_error.py b/test/test_contract_data_decode_error.py index 1af86e43..9dca2aca 100644 --- a/test/test_contract_data_decode_error.py +++ b/test/test_contract_data_decode_error.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_data_decode_error import ContractDataDecodeError diff --git a/test/test_contract_data_decode_request.py b/test/test_contract_data_decode_request.py index 8c2ac18b..2361b3c6 100644 --- a/test/test_contract_data_decode_request.py +++ b/test/test_contract_data_decode_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_data_decode_request import ContractDataDecodeRequest diff --git a/test/test_contract_data_decode_request_data.py b/test/test_contract_data_decode_request_data.py index 444d9aa0..630dedef 100644 --- a/test/test_contract_data_decode_request_data.py +++ b/test/test_contract_data_decode_request_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_data_decode_request_data import ( diff --git a/test/test_contract_data_decode_response_params.py b/test/test_contract_data_decode_response_params.py index e994cfdd..50e61779 100644 --- a/test/test_contract_data_decode_response_params.py +++ b/test/test_contract_data_decode_response_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_data_decode_response_params import ( diff --git a/test/test_contract_data_decoded_response.py b/test/test_contract_data_decoded_response.py index d4b26b53..27565c5d 100644 --- a/test/test_contract_data_decoded_response.py +++ b/test/test_contract_data_decoded_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_data_decoded_response import ContractDataDecodedResponse diff --git a/test/test_contract_data_log_data_param.py b/test/test_contract_data_log_data_param.py index 96295c44..c0361e9f 100644 --- a/test/test_contract_data_log_data_param.py +++ b/test/test_contract_data_log_data_param.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_data_log_data_param import ContractDataLogDataParam diff --git a/test/test_contract_deploy_request.py b/test/test_contract_deploy_request.py index 9c1bd51a..1db37569 100644 --- a/test/test_contract_deploy_request.py +++ b/test/test_contract_deploy_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_deploy_request import ContractDeployRequest diff --git a/test/test_contract_deploy_response.py b/test/test_contract_deploy_response.py index bd10acb3..d443faf3 100644 --- a/test/test_contract_deploy_response.py +++ b/test/test_contract_deploy_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_deploy_response import ContractDeployResponse diff --git a/test/test_contract_doc.py b/test/test_contract_doc.py index 068df648..6e4d572f 100644 --- a/test/test_contract_doc.py +++ b/test/test_contract_doc.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_doc import ContractDoc diff --git a/test/test_contract_interactions_api.py b/test/test_contract_interactions_api.py index 26e5533d..07d5fcf6 100644 --- a/test/test_contract_interactions_api.py +++ b/test/test_contract_interactions_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.contract_interactions_api import ContractInteractionsApi diff --git a/test/test_contract_metadata_dto.py b/test/test_contract_metadata_dto.py index 78d628ae..5799252e 100644 --- a/test/test_contract_metadata_dto.py +++ b/test/test_contract_metadata_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_metadata_dto import ContractMetadataDto diff --git a/test/test_contract_method_config.py b/test/test_contract_method_config.py index 477aa729..1726c727 100644 --- a/test/test_contract_method_config.py +++ b/test/test_contract_method_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_method_config import ContractMethodConfig diff --git a/test/test_contract_method_pattern.py b/test/test_contract_method_pattern.py index 90899397..ac0fd89b 100644 --- a/test/test_contract_method_pattern.py +++ b/test/test_contract_method_pattern.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_method_pattern import ContractMethodPattern diff --git a/test/test_contract_template_dto.py b/test/test_contract_template_dto.py index 22fc880a..9ff95719 100644 --- a/test/test_contract_template_dto.py +++ b/test/test_contract_template_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_template_dto import ContractTemplateDto diff --git a/test/test_contract_templates_api.py b/test/test_contract_templates_api.py index 5aa2620d..e4d97910 100644 --- a/test/test_contract_templates_api.py +++ b/test/test_contract_templates_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.contract_templates_api import ContractTemplatesApi diff --git a/test/test_contract_upload_request.py b/test/test_contract_upload_request.py index 2b4af6b9..830d4fb8 100644 --- a/test/test_contract_upload_request.py +++ b/test/test_contract_upload_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_upload_request import ContractUploadRequest diff --git a/test/test_contract_with_abi_dto.py b/test/test_contract_with_abi_dto.py index 66e8528b..9b04e353 100644 --- a/test/test_contract_with_abi_dto.py +++ b/test/test_contract_with_abi_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.contract_with_abi_dto import ContractWithAbiDto diff --git a/test/test_contracts_api.py b/test/test_contracts_api.py index eceb9a14..27e47008 100644 --- a/test/test_contracts_api.py +++ b/test/test_contracts_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.contracts_api import ContractsApi diff --git a/test/test_conversion_config_operation.py b/test/test_conversion_config_operation.py index a7df44e7..4670375a 100644 --- a/test/test_conversion_config_operation.py +++ b/test/test_conversion_config_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.conversion_config_operation import ConversionConfigOperation diff --git a/test/test_conversion_operation_config_params.py b/test/test_conversion_operation_config_params.py index 1d58a7ea..a714f731 100644 --- a/test/test_conversion_operation_config_params.py +++ b/test/test_conversion_operation_config_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.conversion_operation_config_params import ( diff --git a/test/test_conversion_operation_execution.py b/test/test_conversion_operation_execution.py index 6f3a2e16..447e31ec 100644 --- a/test/test_conversion_operation_execution.py +++ b/test/test_conversion_operation_execution.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.conversion_operation_execution import ( diff --git a/test/test_conversion_operation_execution_output.py b/test/test_conversion_operation_execution_output.py index c6b539cf..4faf4fda 100644 --- a/test/test_conversion_operation_execution_output.py +++ b/test/test_conversion_operation_execution_output.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.conversion_operation_execution_output import ( diff --git a/test/test_conversion_operation_execution_params.py b/test/test_conversion_operation_execution_params.py index 4bcf4d7c..e54177b0 100644 --- a/test/test_conversion_operation_execution_params.py +++ b/test/test_conversion_operation_execution_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.conversion_operation_execution_params import ( diff --git a/test/test_conversion_operation_execution_params_execution_params.py b/test/test_conversion_operation_execution_params_execution_params.py index 4e7d99d0..7bb124b9 100644 --- a/test/test_conversion_operation_execution_params_execution_params.py +++ b/test/test_conversion_operation_execution_params_execution_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.conversion_operation_execution_params_execution_params import ( diff --git a/test/test_conversion_operation_failure.py b/test/test_conversion_operation_failure.py index f811d070..b4e4d6a5 100644 --- a/test/test_conversion_operation_failure.py +++ b/test/test_conversion_operation_failure.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.conversion_operation_failure import ConversionOperationFailure diff --git a/test/test_conversion_operation_preview.py b/test/test_conversion_operation_preview.py index 886f2b1e..cf43b9cb 100644 --- a/test/test_conversion_operation_preview.py +++ b/test/test_conversion_operation_preview.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.conversion_operation_preview import ConversionOperationPreview diff --git a/test/test_conversion_operation_preview_output.py b/test/test_conversion_operation_preview_output.py index e238fc33..3dacadee 100644 --- a/test/test_conversion_operation_preview_output.py +++ b/test/test_conversion_operation_preview_output.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.conversion_operation_preview_output import ( diff --git a/test/test_conversion_operation_type.py b/test/test_conversion_operation_type.py index 4eba5b48..93b6aecb 100644 --- a/test/test_conversion_operation_type.py +++ b/test/test_conversion_operation_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.conversion_operation_type import ConversionOperationType diff --git a/test/test_conversion_validation_failure.py b/test/test_conversion_validation_failure.py index 179121ad..dadf243c 100644 --- a/test/test_conversion_validation_failure.py +++ b/test/test_conversion_validation_failure.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.conversion_validation_failure import ConversionValidationFailure diff --git a/test/test_convert_assets_request.py b/test/test_convert_assets_request.py index 8bb22d8e..756a3a1f 100644 --- a/test/test_convert_assets_request.py +++ b/test/test_convert_assets_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.convert_assets_request import ConvertAssetsRequest diff --git a/test/test_convert_assets_response.py b/test/test_convert_assets_response.py index a813070f..38bcb45c 100644 --- a/test/test_convert_assets_response.py +++ b/test/test_convert_assets_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.convert_assets_response import ConvertAssetsResponse diff --git a/test/test_cosigner.py b/test/test_cosigner.py index aa05bbf6..83eae69a 100644 --- a/test/test_cosigner.py +++ b/test/test_cosigner.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.cosigner import Cosigner diff --git a/test/test_cosigners_beta_api.py b/test/test_cosigners_beta_api.py index f0408a20..94f97512 100644 --- a/test/test_cosigners_beta_api.py +++ b/test/test_cosigners_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.cosigners_beta_api import CosignersBetaApi diff --git a/test/test_cosigners_paginated_response.py b/test/test_cosigners_paginated_response.py index 85aeff84..5f26cb7c 100644 --- a/test/test_cosigners_paginated_response.py +++ b/test/test_cosigners_paginated_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.cosigners_paginated_response import CosignersPaginatedResponse diff --git a/test/test_counterparty_group.py b/test/test_counterparty_group.py index f9983242..da8b840f 100644 --- a/test/test_counterparty_group.py +++ b/test/test_counterparty_group.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.counterparty_group import CounterpartyGroup diff --git a/test/test_counterparty_groups_paginated_response.py b/test/test_counterparty_groups_paginated_response.py index 024eab7b..d7539180 100644 --- a/test/test_counterparty_groups_paginated_response.py +++ b/test/test_counterparty_groups_paginated_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.counterparty_groups_paginated_response import ( diff --git a/test/test_create_address_request.py b/test/test_create_address_request.py index ed081635..ea8b5a48 100644 --- a/test/test_create_address_request.py +++ b/test/test_create_address_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_address_request import CreateAddressRequest diff --git a/test/test_create_address_response.py b/test/test_create_address_response.py index 0726b7a7..cdccb962 100644 --- a/test/test_create_address_response.py +++ b/test/test_create_address_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_address_response import CreateAddressResponse diff --git a/test/test_create_addresses_report_request.py b/test/test_create_addresses_report_request.py index 5827a2e1..7bd20bab 100644 --- a/test/test_create_addresses_report_request.py +++ b/test/test_create_addresses_report_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_addresses_report_request import ( diff --git a/test/test_create_api_user.py b/test/test_create_api_user.py index 2268fb9a..a5fff58f 100644 --- a/test/test_create_api_user.py +++ b/test/test_create_api_user.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_api_user import CreateAPIUser diff --git a/test/test_create_assets_request.py b/test/test_create_assets_request.py index 498125ea..0205e0e4 100644 --- a/test/test_create_assets_request.py +++ b/test/test_create_assets_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_assets_request import CreateAssetsRequest diff --git a/test/test_create_blockchain_request.py b/test/test_create_blockchain_request.py index 54b4f469..c80a8328 100644 --- a/test/test_create_blockchain_request.py +++ b/test/test_create_blockchain_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_blockchain_request import CreateBlockchainRequest diff --git a/test/test_create_blockchain_response.py b/test/test_create_blockchain_response.py index d2e6a037..56578ab3 100644 --- a/test/test_create_blockchain_response.py +++ b/test/test_create_blockchain_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_blockchain_response import CreateBlockchainResponse diff --git a/test/test_create_config_operation_request.py b/test/test_create_config_operation_request.py index 42a6c65d..c345d53b 100644 --- a/test/test_create_config_operation_request.py +++ b/test/test_create_config_operation_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_config_operation_request import ( diff --git a/test/test_create_connection_request.py b/test/test_create_connection_request.py index 3fa2ff1c..eb976a17 100644 --- a/test/test_create_connection_request.py +++ b/test/test_create_connection_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_connection_request import CreateConnectionRequest diff --git a/test/test_create_connection_response.py b/test/test_create_connection_response.py index 552fe65e..0e1a2c9a 100644 --- a/test/test_create_connection_response.py +++ b/test/test_create_connection_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_connection_response import CreateConnectionResponse diff --git a/test/test_create_console_user.py b/test/test_create_console_user.py index 1e70b7a2..db7f4fe3 100644 --- a/test/test_create_console_user.py +++ b/test/test_create_console_user.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_console_user import CreateConsoleUser diff --git a/test/test_create_contract_request.py b/test/test_create_contract_request.py index b322838b..31bd9b1a 100644 --- a/test/test_create_contract_request.py +++ b/test/test_create_contract_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_contract_request import CreateContractRequest diff --git a/test/test_create_conversion_config_operation_request.py b/test/test_create_conversion_config_operation_request.py index 62a78b74..84376dd1 100644 --- a/test/test_create_conversion_config_operation_request.py +++ b/test/test_create_conversion_config_operation_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_conversion_config_operation_request import ( diff --git a/test/test_create_counterparty_group_request.py b/test/test_create_counterparty_group_request.py index 53f9b6fa..e7ef3775 100644 --- a/test/test_create_counterparty_group_request.py +++ b/test/test_create_counterparty_group_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_counterparty_group_request import ( diff --git a/test/test_create_disbursement_config_operation_request.py b/test/test_create_disbursement_config_operation_request.py index dc2bf883..dd2137b6 100644 --- a/test/test_create_disbursement_config_operation_request.py +++ b/test/test_create_disbursement_config_operation_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_disbursement_config_operation_request import ( diff --git a/test/test_create_earn_action_request.py b/test/test_create_earn_action_request.py index 63792f35..ac8c1777 100644 --- a/test/test_create_earn_action_request.py +++ b/test/test_create_earn_action_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_earn_action_request import CreateEarnActionRequest diff --git a/test/test_create_earn_action_response.py b/test/test_create_earn_action_response.py index a8a29b66..b4174cfd 100644 --- a/test/test_create_earn_action_response.py +++ b/test/test_create_earn_action_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_earn_action_response import CreateEarnActionResponse diff --git a/test/test_create_internal_transfer_request.py b/test/test_create_internal_transfer_request.py index b2ab9c0c..88586092 100644 --- a/test/test_create_internal_transfer_request.py +++ b/test/test_create_internal_transfer_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_internal_transfer_request import ( diff --git a/test/test_create_internal_wallet_asset_request.py b/test/test_create_internal_wallet_asset_request.py index ed3c79d4..fd687c08 100644 --- a/test/test_create_internal_wallet_asset_request.py +++ b/test/test_create_internal_wallet_asset_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_internal_wallet_asset_request import ( diff --git a/test/test_create_multichain_token_request.py b/test/test_create_multichain_token_request.py index dc530981..21b27294 100644 --- a/test/test_create_multichain_token_request.py +++ b/test/test_create_multichain_token_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_multichain_token_request import ( diff --git a/test/test_create_multichain_token_request_create_params.py b/test/test_create_multichain_token_request_create_params.py index b6b98559..3b580475 100644 --- a/test/test_create_multichain_token_request_create_params.py +++ b/test/test_create_multichain_token_request_create_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_multichain_token_request_create_params import ( diff --git a/test/test_create_multiple_accounts_request.py b/test/test_create_multiple_accounts_request.py index 34e54ca3..f9e10386 100644 --- a/test/test_create_multiple_accounts_request.py +++ b/test/test_create_multiple_accounts_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_multiple_accounts_request import ( diff --git a/test/test_create_multiple_deposit_addresses_job_status.py b/test/test_create_multiple_deposit_addresses_job_status.py index dde84097..2ba5ad0a 100644 --- a/test/test_create_multiple_deposit_addresses_job_status.py +++ b/test/test_create_multiple_deposit_addresses_job_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_multiple_deposit_addresses_job_status import ( diff --git a/test/test_create_multiple_deposit_addresses_request.py b/test/test_create_multiple_deposit_addresses_request.py index 809323af..5def64bd 100644 --- a/test/test_create_multiple_deposit_addresses_request.py +++ b/test/test_create_multiple_deposit_addresses_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_multiple_deposit_addresses_request import ( diff --git a/test/test_create_multiple_vault_accounts_job_status.py b/test/test_create_multiple_vault_accounts_job_status.py index 13ea09c2..2aa1d166 100644 --- a/test/test_create_multiple_vault_accounts_job_status.py +++ b/test/test_create_multiple_vault_accounts_job_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_multiple_vault_accounts_job_status import ( diff --git a/test/test_create_ncw_connection_request.py b/test/test_create_ncw_connection_request.py index 9d32453f..3d8be092 100644 --- a/test/test_create_ncw_connection_request.py +++ b/test/test_create_ncw_connection_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_ncw_connection_request import CreateNcwConnectionRequest diff --git a/test/test_create_network_id_request.py b/test/test_create_network_id_request.py index 71503a7f..ada06153 100644 --- a/test/test_create_network_id_request.py +++ b/test/test_create_network_id_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_network_id_request import CreateNetworkIdRequest diff --git a/test/test_create_offers_request.py b/test/test_create_offers_request.py index 1a3b37bf..679ffba1 100644 --- a/test/test_create_offers_request.py +++ b/test/test_create_offers_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_offers_request import CreateOffersRequest diff --git a/test/test_create_order_request.py b/test/test_create_order_request.py index e7729fd7..927ebed3 100644 --- a/test/test_create_order_request.py +++ b/test/test_create_order_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_order_request import CreateOrderRequest diff --git a/test/test_create_payout_request.py b/test/test_create_payout_request.py index 8869f0ec..eebbba59 100644 --- a/test/test_create_payout_request.py +++ b/test/test_create_payout_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_payout_request import CreatePayoutRequest diff --git a/test/test_create_quote.py b/test/test_create_quote.py index bdd36ec6..8cbe4dab 100644 --- a/test/test_create_quote.py +++ b/test/test_create_quote.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_quote import CreateQuote diff --git a/test/test_create_quote_scope_inner.py b/test/test_create_quote_scope_inner.py index 32e65e1b..b214e8f2 100644 --- a/test/test_create_quote_scope_inner.py +++ b/test/test_create_quote_scope_inner.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_quote_scope_inner import CreateQuoteScopeInner diff --git a/test/test_create_report_request.py b/test/test_create_report_request.py index abc9e150..1e5f1682 100644 --- a/test/test_create_report_request.py +++ b/test/test_create_report_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_report_request import CreateReportRequest diff --git a/test/test_create_report_response.py b/test/test_create_report_response.py index 7e617e2d..11e3bb5b 100644 --- a/test/test_create_report_response.py +++ b/test/test_create_report_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_report_response import CreateReportResponse diff --git a/test/test_create_signing_key_dto.py b/test/test_create_signing_key_dto.py index 1bab65c9..15746a1c 100644 --- a/test/test_create_signing_key_dto.py +++ b/test/test_create_signing_key_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_signing_key_dto import CreateSigningKeyDto diff --git a/test/test_create_signing_key_dto_proof_of_ownership.py b/test/test_create_signing_key_dto_proof_of_ownership.py index 6fb5a6eb..0fc4a4b9 100644 --- a/test/test_create_signing_key_dto_proof_of_ownership.py +++ b/test/test_create_signing_key_dto_proof_of_ownership.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_signing_key_dto_proof_of_ownership import ( diff --git a/test/test_create_tag_request.py b/test/test_create_tag_request.py index 5a0185fe..17623c3d 100644 --- a/test/test_create_tag_request.py +++ b/test/test_create_tag_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_tag_request import CreateTagRequest diff --git a/test/test_create_token_request_dto.py b/test/test_create_token_request_dto.py index 955e2689..67c73fb0 100644 --- a/test/test_create_token_request_dto.py +++ b/test/test_create_token_request_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_token_request_dto import CreateTokenRequestDto diff --git a/test/test_create_token_request_dto_create_params.py b/test/test_create_token_request_dto_create_params.py index a7fa093f..81760811 100644 --- a/test/test_create_token_request_dto_create_params.py +++ b/test/test_create_token_request_dto_create_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_token_request_dto_create_params import ( diff --git a/test/test_create_transaction_response.py b/test/test_create_transaction_response.py index e3426d78..ffac01cd 100644 --- a/test/test_create_transaction_response.py +++ b/test/test_create_transaction_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_transaction_response import CreateTransactionResponse diff --git a/test/test_create_transfer_config_operation_request.py b/test/test_create_transfer_config_operation_request.py index 3af94679..735d5204 100644 --- a/test/test_create_transfer_config_operation_request.py +++ b/test/test_create_transfer_config_operation_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_transfer_config_operation_request import ( diff --git a/test/test_create_user_group_response.py b/test/test_create_user_group_response.py index e609b20f..82e5eaca 100644 --- a/test/test_create_user_group_response.py +++ b/test/test_create_user_group_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_user_group_response import CreateUserGroupResponse diff --git a/test/test_create_validation_key_dto.py b/test/test_create_validation_key_dto.py index 29e19bdc..f132b33f 100644 --- a/test/test_create_validation_key_dto.py +++ b/test/test_create_validation_key_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_validation_key_dto import CreateValidationKeyDto diff --git a/test/test_create_validation_key_response_dto.py b/test/test_create_validation_key_response_dto.py index 101b7287..e412ad06 100644 --- a/test/test_create_validation_key_response_dto.py +++ b/test/test_create_validation_key_response_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_validation_key_response_dto import ( diff --git a/test/test_create_vault_account_connection_request.py b/test/test_create_vault_account_connection_request.py index f2a00891..b34cd46a 100644 --- a/test/test_create_vault_account_connection_request.py +++ b/test/test_create_vault_account_connection_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_vault_account_connection_request import ( diff --git a/test/test_create_vault_account_request.py b/test/test_create_vault_account_request.py index 703408dd..9297201b 100644 --- a/test/test_create_vault_account_request.py +++ b/test/test_create_vault_account_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_vault_account_request import CreateVaultAccountRequest diff --git a/test/test_create_vault_asset_response.py b/test/test_create_vault_asset_response.py index 3e75394f..3f7ae7b4 100644 --- a/test/test_create_vault_asset_response.py +++ b/test/test_create_vault_asset_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_vault_asset_response import CreateVaultAssetResponse diff --git a/test/test_create_wallet_request.py b/test/test_create_wallet_request.py index dcc5d19b..fcaf7613 100644 --- a/test/test_create_wallet_request.py +++ b/test/test_create_wallet_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_wallet_request import CreateWalletRequest diff --git a/test/test_create_webhook_request.py b/test/test_create_webhook_request.py index 898ab334..7a2612b3 100644 --- a/test/test_create_webhook_request.py +++ b/test/test_create_webhook_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_webhook_request import CreateWebhookRequest @@ -44,7 +43,15 @@ def make_instance(self, include_optional) -> CreateWebhookRequest: mtls = fireblocks.models.webhook_mtls.WebhookMtls( client_signed_cert = '-----BEGIN CERTIFICATE----- ... ------END CERTIFICATE-----', ) +-----END CERTIFICATE-----', ), + oauth = fireblocks.models.webhook_o_auth.WebhookOAuth( + client_id = 'my-client-id', + client_secret = 'my-client-secret', + url = 'https://auth.example.com/oauth/token', + mtls_client_signed_cert = '-----BEGIN CERTIFICATE----- +... +-----END CERTIFICATE-----', ), + custom_headers = {"X-Gateway-Key":"abc123","X-Region-Tag":"eu"} ) else: return CreateWebhookRequest( diff --git a/test/test_create_workflow_execution_request_params_inner.py b/test/test_create_workflow_execution_request_params_inner.py index 25fa8b3d..f59a2f37 100644 --- a/test/test_create_workflow_execution_request_params_inner.py +++ b/test/test_create_workflow_execution_request_params_inner.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.create_workflow_execution_request_params_inner import ( diff --git a/test/test_custom_routing_dest.py b/test/test_custom_routing_dest.py index b53faa50..c8bfc6af 100644 --- a/test/test_custom_routing_dest.py +++ b/test/test_custom_routing_dest.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.custom_routing_dest import CustomRoutingDest diff --git a/test/test_d_app_address_config.py b/test/test_d_app_address_config.py index 4e8f3249..f06c7f74 100644 --- a/test/test_d_app_address_config.py +++ b/test/test_d_app_address_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.d_app_address_config import DAppAddressConfig diff --git a/test/test_decoded_log.py b/test/test_decoded_log.py index c48ab578..6dea14cf 100644 --- a/test/test_decoded_log.py +++ b/test/test_decoded_log.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.decoded_log import DecodedLog diff --git a/test/test_default_network_routing_dest.py b/test/test_default_network_routing_dest.py index c9dfb93f..d28b1af9 100644 --- a/test/test_default_network_routing_dest.py +++ b/test/test_default_network_routing_dest.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.default_network_routing_dest import DefaultNetworkRoutingDest diff --git a/test/test_delegation.py b/test/test_delegation.py index 70b36c95..591494bd 100644 --- a/test/test_delegation.py +++ b/test/test_delegation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.delegation import Delegation diff --git a/test/test_delegation_blockchain_position_info.py b/test/test_delegation_blockchain_position_info.py index 4fce17f9..f8bd4bd6 100644 --- a/test/test_delegation_blockchain_position_info.py +++ b/test/test_delegation_blockchain_position_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.delegation_blockchain_position_info import ( @@ -41,7 +40,7 @@ def make_instance(self, include_optional) -> DelegationBlockchainPositionInfo: return DelegationBlockchainPositionInfo( stake_account_address = '3Ru67FyzMTcdENmmRL4Eve4dtPd6AdpuypR21q5EQCdq', stake_account_derivation_change_value = 7, - rewards_breakdown = {"issuance":"0.000856038","mev":"0.000123456","lastRewardSyncedAt":"2023-07-13T15:55:34.256Z"}, + rewards_breakdown = {"inflation":"0.000856038","mev":"0.000123456","lastRewardSyncedAt":"2023-07-13T15:55:34.256Z"}, is_compounding_validator = True, total_withdrawable_amount = '1.5', total_inactive_amount = '2.0' diff --git a/test/test_delegation_summary.py b/test/test_delegation_summary.py index 7feb3fec..31eb633e 100644 --- a/test/test_delegation_summary.py +++ b/test/test_delegation_summary.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.delegation_summary import DelegationSummary diff --git a/test/test_delete_network_connection_response.py b/test/test_delete_network_connection_response.py index 530ad0b0..c1885e7d 100644 --- a/test/test_delete_network_connection_response.py +++ b/test/test_delete_network_connection_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.delete_network_connection_response import ( diff --git a/test/test_delete_network_id_response.py b/test/test_delete_network_id_response.py index f60ea75f..2df6c77e 100644 --- a/test/test_delete_network_id_response.py +++ b/test/test_delete_network_id_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.delete_network_id_response import DeleteNetworkIdResponse diff --git a/test/test_deploy_layer_zero_adapters_request.py b/test/test_deploy_layer_zero_adapters_request.py index adfd8936..d046ca5b 100644 --- a/test/test_deploy_layer_zero_adapters_request.py +++ b/test/test_deploy_layer_zero_adapters_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.deploy_layer_zero_adapters_request import ( diff --git a/test/test_deployable_address_response.py b/test/test_deployable_address_response.py index e5b4b8c4..b4bedf9a 100644 --- a/test/test_deployable_address_response.py +++ b/test/test_deployable_address_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.deployable_address_response import DeployableAddressResponse diff --git a/test/test_deployed_contract_not_found_error.py b/test/test_deployed_contract_not_found_error.py index 96692ce4..db7d3703 100644 --- a/test/test_deployed_contract_not_found_error.py +++ b/test/test_deployed_contract_not_found_error.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.deployed_contract_not_found_error import ( diff --git a/test/test_deployed_contract_response_dto.py b/test/test_deployed_contract_response_dto.py index 28ef337a..06455247 100644 --- a/test/test_deployed_contract_response_dto.py +++ b/test/test_deployed_contract_response_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.deployed_contract_response_dto import DeployedContractResponseDto diff --git a/test/test_deployed_contracts_api.py b/test/test_deployed_contracts_api.py index 984fbf80..db524974 100644 --- a/test/test_deployed_contracts_api.py +++ b/test/test_deployed_contracts_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.deployed_contracts_api import DeployedContractsApi diff --git a/test/test_deployed_contracts_paginated_response.py b/test/test_deployed_contracts_paginated_response.py index ccd67239..ab141bb1 100644 --- a/test/test_deployed_contracts_paginated_response.py +++ b/test/test_deployed_contracts_paginated_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.deployed_contracts_paginated_response import ( diff --git a/test/test_deposit_funds_from_linked_dda_response.py b/test/test_deposit_funds_from_linked_dda_response.py index 5f835c13..c37e974f 100644 --- a/test/test_deposit_funds_from_linked_dda_response.py +++ b/test/test_deposit_funds_from_linked_dda_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.deposit_funds_from_linked_dda_response import ( diff --git a/test/test_derivation_path_config.py b/test/test_derivation_path_config.py index d048930f..d297df89 100644 --- a/test/test_derivation_path_config.py +++ b/test/test_derivation_path_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.derivation_path_config import DerivationPathConfig diff --git a/test/test_designated_signers_config.py b/test/test_designated_signers_config.py index bef4306f..4e506e19 100644 --- a/test/test_designated_signers_config.py +++ b/test/test_designated_signers_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.designated_signers_config import DesignatedSignersConfig diff --git a/test/test_destination.py b/test/test_destination.py index c9064efd..c80275dc 100644 --- a/test/test_destination.py +++ b/test/test_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.destination import Destination diff --git a/test/test_destination_config.py b/test/test_destination_config.py index 812b4ede..886b0f2d 100644 --- a/test/test_destination_config.py +++ b/test/test_destination_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.destination_config import DestinationConfig diff --git a/test/test_destination_transfer_peer_path.py b/test/test_destination_transfer_peer_path.py index 7c470200..65cb34eb 100644 --- a/test/test_destination_transfer_peer_path.py +++ b/test/test_destination_transfer_peer_path.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.destination_transfer_peer_path import DestinationTransferPeerPath diff --git a/test/test_destination_transfer_peer_path_response.py b/test/test_destination_transfer_peer_path_response.py index 2bd28dc2..99e74ea4 100644 --- a/test/test_destination_transfer_peer_path_response.py +++ b/test/test_destination_transfer_peer_path_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.destination_transfer_peer_path_response import ( diff --git a/test/test_direct_access.py b/test/test_direct_access.py index c2c6c79f..a3004820 100644 --- a/test/test_direct_access.py +++ b/test/test_direct_access.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.direct_access import DirectAccess diff --git a/test/test_direct_access_provider.py b/test/test_direct_access_provider.py index a4e0da03..3e5fb70a 100644 --- a/test/test_direct_access_provider.py +++ b/test/test_direct_access_provider.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.direct_access_provider import DirectAccessProvider diff --git a/test/test_direct_access_provider_info.py b/test/test_direct_access_provider_info.py index 7abb8349..267d57e6 100644 --- a/test/test_direct_access_provider_info.py +++ b/test/test_direct_access_provider_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.direct_access_provider_info import DirectAccessProviderInfo diff --git a/test/test_disbursement_amount_instruction.py b/test/test_disbursement_amount_instruction.py index da4c6946..6eabae42 100644 --- a/test/test_disbursement_amount_instruction.py +++ b/test/test_disbursement_amount_instruction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_amount_instruction import ( diff --git a/test/test_disbursement_config_operation.py b/test/test_disbursement_config_operation.py index 19a7fec0..9a1aa11f 100644 --- a/test/test_disbursement_config_operation.py +++ b/test/test_disbursement_config_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_config_operation import DisbursementConfigOperation diff --git a/test/test_disbursement_instruction.py b/test/test_disbursement_instruction.py index 1f089249..d19d9937 100644 --- a/test/test_disbursement_instruction.py +++ b/test/test_disbursement_instruction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_instruction import DisbursementInstruction diff --git a/test/test_disbursement_instruction_output.py b/test/test_disbursement_instruction_output.py index a8a43317..31bc420e 100644 --- a/test/test_disbursement_instruction_output.py +++ b/test/test_disbursement_instruction_output.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_instruction_output import ( diff --git a/test/test_disbursement_operation_config_params.py b/test/test_disbursement_operation_config_params.py index eb170352..1d7a1b5a 100644 --- a/test/test_disbursement_operation_config_params.py +++ b/test/test_disbursement_operation_config_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_operation_config_params import ( diff --git a/test/test_disbursement_operation_execution.py b/test/test_disbursement_operation_execution.py index 2dcdcf0c..e2f37c45 100644 --- a/test/test_disbursement_operation_execution.py +++ b/test/test_disbursement_operation_execution.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_operation_execution import ( diff --git a/test/test_disbursement_operation_execution_output.py b/test/test_disbursement_operation_execution_output.py index 3fbc8894..470b7ed3 100644 --- a/test/test_disbursement_operation_execution_output.py +++ b/test/test_disbursement_operation_execution_output.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_operation_execution_output import ( diff --git a/test/test_disbursement_operation_execution_params.py b/test/test_disbursement_operation_execution_params.py index b6b08bc1..de1cce01 100644 --- a/test/test_disbursement_operation_execution_params.py +++ b/test/test_disbursement_operation_execution_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_operation_execution_params import ( diff --git a/test/test_disbursement_operation_execution_params_execution_params.py b/test/test_disbursement_operation_execution_params_execution_params.py index 95752297..0f9e827a 100644 --- a/test/test_disbursement_operation_execution_params_execution_params.py +++ b/test/test_disbursement_operation_execution_params_execution_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_operation_execution_params_execution_params import ( diff --git a/test/test_disbursement_operation_input.py b/test/test_disbursement_operation_input.py index 30ae6f2c..86d307b1 100644 --- a/test/test_disbursement_operation_input.py +++ b/test/test_disbursement_operation_input.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_operation_input import DisbursementOperationInput diff --git a/test/test_disbursement_operation_preview.py b/test/test_disbursement_operation_preview.py index 41f0106c..6bd411e2 100644 --- a/test/test_disbursement_operation_preview.py +++ b/test/test_disbursement_operation_preview.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_operation_preview import ( diff --git a/test/test_disbursement_operation_preview_output.py b/test/test_disbursement_operation_preview_output.py index a1f7f7da..c8d880ae 100644 --- a/test/test_disbursement_operation_preview_output.py +++ b/test/test_disbursement_operation_preview_output.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_operation_preview_output import ( diff --git a/test/test_disbursement_operation_preview_output_instruction_set_inner.py b/test/test_disbursement_operation_preview_output_instruction_set_inner.py index 724efc33..19ab24a9 100644 --- a/test/test_disbursement_operation_preview_output_instruction_set_inner.py +++ b/test/test_disbursement_operation_preview_output_instruction_set_inner.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_operation_preview_output_instruction_set_inner import ( diff --git a/test/test_disbursement_operation_type.py b/test/test_disbursement_operation_type.py index 3ad0c430..f0531bb3 100644 --- a/test/test_disbursement_operation_type.py +++ b/test/test_disbursement_operation_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_operation_type import DisbursementOperationType diff --git a/test/test_disbursement_percentage_instruction.py b/test/test_disbursement_percentage_instruction.py index ee1ce49a..c0250aa0 100644 --- a/test/test_disbursement_percentage_instruction.py +++ b/test/test_disbursement_percentage_instruction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_percentage_instruction import ( diff --git a/test/test_disbursement_validation_failure.py b/test/test_disbursement_validation_failure.py index 1d815640..ed057037 100644 --- a/test/test_disbursement_validation_failure.py +++ b/test/test_disbursement_validation_failure.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.disbursement_validation_failure import ( diff --git a/test/test_dispatch_payout_response.py b/test/test_dispatch_payout_response.py index e388a117..a5eecc09 100644 --- a/test/test_dispatch_payout_response.py +++ b/test/test_dispatch_payout_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.dispatch_payout_response import DispatchPayoutResponse diff --git a/test/test_draft_response.py b/test/test_draft_response.py index 120a5c12..d22f89f9 100644 --- a/test/test_draft_response.py +++ b/test/test_draft_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.draft_response import DraftResponse diff --git a/test/test_draft_review_and_validation_response.py b/test/test_draft_review_and_validation_response.py index 3e8b9610..a3b7ae59 100644 --- a/test/test_draft_review_and_validation_response.py +++ b/test/test_draft_review_and_validation_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.draft_review_and_validation_response import ( diff --git a/test/test_drop_transaction_request.py b/test/test_drop_transaction_request.py index 159bafcc..5f54599d 100644 --- a/test/test_drop_transaction_request.py +++ b/test/test_drop_transaction_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.drop_transaction_request import DropTransactionRequest diff --git a/test/test_drop_transaction_response.py b/test/test_drop_transaction_response.py index 4ea68dd9..56c1c8f9 100644 --- a/test/test_drop_transaction_response.py +++ b/test/test_drop_transaction_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.drop_transaction_response import DropTransactionResponse diff --git a/test/test_dvn_config.py b/test/test_dvn_config.py index 47831779..88ecd4d0 100644 --- a/test/test_dvn_config.py +++ b/test/test_dvn_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.dvn_config import DvnConfig diff --git a/test/test_dvn_config_with_confirmations.py b/test/test_dvn_config_with_confirmations.py index 288407c6..3c73f8df 100644 --- a/test/test_dvn_config_with_confirmations.py +++ b/test/test_dvn_config_with_confirmations.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.dvn_config_with_confirmations import DvnConfigWithConfirmations diff --git a/test/test_dvp_settlement.py b/test/test_dvp_settlement.py index 9a48e8fa..60b68a3c 100644 --- a/test/test_dvp_settlement.py +++ b/test/test_dvp_settlement.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.dvp_settlement import DVPSettlement diff --git a/test/test_dvp_settlement_type.py b/test/test_dvp_settlement_type.py index 6d87fc4b..00a3e50b 100644 --- a/test/test_dvp_settlement_type.py +++ b/test/test_dvp_settlement_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.dvp_settlement_type import DVPSettlementType diff --git a/test/test_earn_api.py b/test/test_earn_api.py index 27c4dcb4..480a589e 100644 --- a/test/test_earn_api.py +++ b/test/test_earn_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.earn_api import EarnApi diff --git a/test/test_earn_asset.py b/test/test_earn_asset.py index 72059216..1afbb805 100644 --- a/test/test_earn_asset.py +++ b/test/test_earn_asset.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.earn_asset import EarnAsset diff --git a/test/test_earn_curator.py b/test/test_earn_curator.py index 45075f7e..1db36819 100644 --- a/test/test_earn_curator.py +++ b/test/test_earn_curator.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.earn_curator import EarnCurator diff --git a/test/test_earn_metadata.py b/test/test_earn_metadata.py index 5a6cb1a2..ee02dd8b 100644 --- a/test/test_earn_metadata.py +++ b/test/test_earn_metadata.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.earn_metadata import EarnMetadata diff --git a/test/test_earn_provider.py b/test/test_earn_provider.py index b6a56199..0cf496bf 100644 --- a/test/test_earn_provider.py +++ b/test/test_earn_provider.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.earn_provider import EarnProvider diff --git a/test/test_edit_gas_station_configuration_response.py b/test/test_edit_gas_station_configuration_response.py index a732e9c4..6c2273c6 100644 --- a/test/test_edit_gas_station_configuration_response.py +++ b/test/test_edit_gas_station_configuration_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.edit_gas_station_configuration_response import ( diff --git a/test/test_embedded_wallet.py b/test/test_embedded_wallet.py index 14b1f073..a20fa25a 100644 --- a/test/test_embedded_wallet.py +++ b/test/test_embedded_wallet.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet import EmbeddedWallet diff --git a/test/test_embedded_wallet_account.py b/test/test_embedded_wallet_account.py index 4a40306a..623601e3 100644 --- a/test/test_embedded_wallet_account.py +++ b/test/test_embedded_wallet_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_account import EmbeddedWalletAccount diff --git a/test/test_embedded_wallet_address_details.py b/test/test_embedded_wallet_address_details.py index 943b08e7..bcfa24eb 100644 --- a/test/test_embedded_wallet_address_details.py +++ b/test/test_embedded_wallet_address_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_address_details import ( diff --git a/test/test_embedded_wallet_algoritm.py b/test/test_embedded_wallet_algoritm.py index 39effea8..3a2e5787 100644 --- a/test/test_embedded_wallet_algoritm.py +++ b/test/test_embedded_wallet_algoritm.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_algoritm import EmbeddedWalletAlgoritm diff --git a/test/test_embedded_wallet_asset_balance.py b/test/test_embedded_wallet_asset_balance.py index b0453071..88d80016 100644 --- a/test/test_embedded_wallet_asset_balance.py +++ b/test/test_embedded_wallet_asset_balance.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_asset_balance import EmbeddedWalletAssetBalance diff --git a/test/test_embedded_wallet_asset_response.py b/test/test_embedded_wallet_asset_response.py index bf434298..554b0709 100644 --- a/test/test_embedded_wallet_asset_response.py +++ b/test/test_embedded_wallet_asset_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_asset_response import EmbeddedWalletAssetResponse diff --git a/test/test_embedded_wallet_asset_reward_info.py b/test/test_embedded_wallet_asset_reward_info.py index 2cb56b1e..dd6192f6 100644 --- a/test/test_embedded_wallet_asset_reward_info.py +++ b/test/test_embedded_wallet_asset_reward_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_asset_reward_info import ( diff --git a/test/test_embedded_wallet_device.py b/test/test_embedded_wallet_device.py index 4efaa0c2..963db6b2 100644 --- a/test/test_embedded_wallet_device.py +++ b/test/test_embedded_wallet_device.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_device import EmbeddedWalletDevice diff --git a/test/test_embedded_wallet_device_key_setup_response.py b/test/test_embedded_wallet_device_key_setup_response.py index 594753f4..23870fa0 100644 --- a/test/test_embedded_wallet_device_key_setup_response.py +++ b/test/test_embedded_wallet_device_key_setup_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_device_key_setup_response import ( diff --git a/test/test_embedded_wallet_device_key_setup_response_setup_status_inner.py b/test/test_embedded_wallet_device_key_setup_response_setup_status_inner.py index 2b4d731f..08421331 100644 --- a/test/test_embedded_wallet_device_key_setup_response_setup_status_inner.py +++ b/test/test_embedded_wallet_device_key_setup_response_setup_status_inner.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_device_key_setup_response_setup_status_inner import ( diff --git a/test/test_embedded_wallet_latest_backup_key.py b/test/test_embedded_wallet_latest_backup_key.py index 4cedad3e..70af50ab 100644 --- a/test/test_embedded_wallet_latest_backup_key.py +++ b/test/test_embedded_wallet_latest_backup_key.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_latest_backup_key import ( diff --git a/test/test_embedded_wallet_latest_backup_response.py b/test/test_embedded_wallet_latest_backup_response.py index 5220a26c..62656601 100644 --- a/test/test_embedded_wallet_latest_backup_response.py +++ b/test/test_embedded_wallet_latest_backup_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_latest_backup_response import ( diff --git a/test/test_embedded_wallet_paginated_addresses_response.py b/test/test_embedded_wallet_paginated_addresses_response.py index e2c5c126..843c9c7e 100644 --- a/test/test_embedded_wallet_paginated_addresses_response.py +++ b/test/test_embedded_wallet_paginated_addresses_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_paginated_addresses_response import ( diff --git a/test/test_embedded_wallet_paginated_assets_response.py b/test/test_embedded_wallet_paginated_assets_response.py index c51d009b..cf87b85b 100644 --- a/test/test_embedded_wallet_paginated_assets_response.py +++ b/test/test_embedded_wallet_paginated_assets_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_paginated_assets_response import ( diff --git a/test/test_embedded_wallet_paginated_devices_response.py b/test/test_embedded_wallet_paginated_devices_response.py index 602bb00d..8bc6a3cc 100644 --- a/test/test_embedded_wallet_paginated_devices_response.py +++ b/test/test_embedded_wallet_paginated_devices_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_paginated_devices_response import ( diff --git a/test/test_embedded_wallet_paginated_wallets_response.py b/test/test_embedded_wallet_paginated_wallets_response.py index fe7e82d7..2828fef0 100644 --- a/test/test_embedded_wallet_paginated_wallets_response.py +++ b/test/test_embedded_wallet_paginated_wallets_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_paginated_wallets_response import ( diff --git a/test/test_embedded_wallet_required_algorithms.py b/test/test_embedded_wallet_required_algorithms.py index be7fa1df..6defb110 100644 --- a/test/test_embedded_wallet_required_algorithms.py +++ b/test/test_embedded_wallet_required_algorithms.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_required_algorithms import ( diff --git a/test/test_embedded_wallet_set_up_status.py b/test/test_embedded_wallet_set_up_status.py index 32c376ab..cf0e38c2 100644 --- a/test/test_embedded_wallet_set_up_status.py +++ b/test/test_embedded_wallet_set_up_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_set_up_status import EmbeddedWalletSetUpStatus diff --git a/test/test_embedded_wallet_setup_status_response.py b/test/test_embedded_wallet_setup_status_response.py index 937e9ca2..f5c427b4 100644 --- a/test/test_embedded_wallet_setup_status_response.py +++ b/test/test_embedded_wallet_setup_status_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.embedded_wallet_setup_status_response import ( diff --git a/test/test_embedded_wallets_api.py b/test/test_embedded_wallets_api.py index d865874d..0c140445 100644 --- a/test/test_embedded_wallets_api.py +++ b/test/test_embedded_wallets_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.embedded_wallets_api import EmbeddedWalletsApi diff --git a/test/test_enable_device.py b/test/test_enable_device.py index 3a125f91..ba0e4b16 100644 --- a/test/test_enable_device.py +++ b/test/test_enable_device.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.enable_device import EnableDevice diff --git a/test/test_enable_wallet.py b/test/test_enable_wallet.py index 7b377151..80ecfbc4 100644 --- a/test/test_enable_wallet.py +++ b/test/test_enable_wallet.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.enable_wallet import EnableWallet diff --git a/test/test_error_response.py b/test/test_error_response.py index 0b03b508..5db84fd1 100644 --- a/test/test_error_response.py +++ b/test/test_error_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.error_response import ErrorResponse diff --git a/test/test_error_response_error.py b/test/test_error_response_error.py index dd9de5e9..f5258c2c 100644 --- a/test/test_error_response_error.py +++ b/test/test_error_response_error.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.error_response_error import ErrorResponseError diff --git a/test/test_error_schema.py b/test/test_error_schema.py index 6f5d38fa..e28b85b2 100644 --- a/test/test_error_schema.py +++ b/test/test_error_schema.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.error_schema import ErrorSchema diff --git a/test/test_estimated_fee_details.py b/test/test_estimated_fee_details.py index b1d97c1d..5ed32694 100644 --- a/test/test_estimated_fee_details.py +++ b/test/test_estimated_fee_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.estimated_fee_details import EstimatedFeeDetails diff --git a/test/test_estimated_network_fee_response.py b/test/test_estimated_network_fee_response.py index 9f0ed906..9b598889 100644 --- a/test/test_estimated_network_fee_response.py +++ b/test/test_estimated_network_fee_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.estimated_network_fee_response import EstimatedNetworkFeeResponse diff --git a/test/test_estimated_transaction_fee_response.py b/test/test_estimated_transaction_fee_response.py index 08a0adb1..4787815f 100644 --- a/test/test_estimated_transaction_fee_response.py +++ b/test/test_estimated_transaction_fee_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.estimated_transaction_fee_response import ( diff --git a/test/test_ethereum_blockchain_data.py b/test/test_ethereum_blockchain_data.py index 9bdee011..07fed5fb 100644 --- a/test/test_ethereum_blockchain_data.py +++ b/test/test_ethereum_blockchain_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.ethereum_blockchain_data import EthereumBlockchainData diff --git a/test/test_european_sepa_address.py b/test/test_european_sepa_address.py index d6f26644..58283842 100644 --- a/test/test_european_sepa_address.py +++ b/test/test_european_sepa_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.european_sepa_address import EuropeanSEPAAddress diff --git a/test/test_european_sepa_destination.py b/test/test_european_sepa_destination.py index b99b1978..b6518bcf 100644 --- a/test/test_european_sepa_destination.py +++ b/test/test_european_sepa_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.european_sepa_destination import EuropeanSEPADestination diff --git a/test/test_evm_token_create_params_dto.py b/test/test_evm_token_create_params_dto.py index fb824fae..132ed5b2 100644 --- a/test/test_evm_token_create_params_dto.py +++ b/test/test_evm_token_create_params_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.evm_token_create_params_dto import EVMTokenCreateParamsDto diff --git a/test/test_exchange_account.py b/test/test_exchange_account.py index 81a1be82..b1e22d19 100644 --- a/test/test_exchange_account.py +++ b/test/test_exchange_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.exchange_account import ExchangeAccount diff --git a/test/test_exchange_accounts_api.py b/test/test_exchange_accounts_api.py index 14b7359c..a2b9dbcd 100644 --- a/test/test_exchange_accounts_api.py +++ b/test/test_exchange_accounts_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.exchange_accounts_api import ExchangeAccountsApi diff --git a/test/test_exchange_asset.py b/test/test_exchange_asset.py index 8855ab08..3df0520a 100644 --- a/test/test_exchange_asset.py +++ b/test/test_exchange_asset.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.exchange_asset import ExchangeAsset diff --git a/test/test_exchange_settlement_transactions_response.py b/test/test_exchange_settlement_transactions_response.py index 8ba516c8..30093a46 100644 --- a/test/test_exchange_settlement_transactions_response.py +++ b/test/test_exchange_settlement_transactions_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.exchange_settlement_transactions_response import ( diff --git a/test/test_exchange_trading_account.py b/test/test_exchange_trading_account.py index b40931a6..f99517b8 100644 --- a/test/test_exchange_trading_account.py +++ b/test/test_exchange_trading_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.exchange_trading_account import ExchangeTradingAccount diff --git a/test/test_exchange_type.py b/test/test_exchange_type.py index c6c7bf80..62a56c42 100644 --- a/test/test_exchange_type.py +++ b/test/test_exchange_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.exchange_type import ExchangeType diff --git a/test/test_execution_conversion_operation.py b/test/test_execution_conversion_operation.py index a5625e14..595fcafb 100644 --- a/test/test_execution_conversion_operation.py +++ b/test/test_execution_conversion_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.execution_conversion_operation import ( diff --git a/test/test_execution_disbursement_operation.py b/test/test_execution_disbursement_operation.py index cf241715..badb5aff 100644 --- a/test/test_execution_disbursement_operation.py +++ b/test/test_execution_disbursement_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.execution_disbursement_operation import ( diff --git a/test/test_execution_operation_status.py b/test/test_execution_operation_status.py index fa26c45b..3d088894 100644 --- a/test/test_execution_operation_status.py +++ b/test/test_execution_operation_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.execution_operation_status import ExecutionOperationStatus diff --git a/test/test_execution_request_base_details.py b/test/test_execution_request_base_details.py index d678f3c1..d2cc0696 100644 --- a/test/test_execution_request_base_details.py +++ b/test/test_execution_request_base_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.execution_request_base_details import ExecutionRequestBaseDetails diff --git a/test/test_execution_request_details.py b/test/test_execution_request_details.py index f1f4c0a6..42d57601 100644 --- a/test/test_execution_request_details.py +++ b/test/test_execution_request_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.execution_request_details import ExecutionRequestDetails diff --git a/test/test_execution_request_details_type.py b/test/test_execution_request_details_type.py index 7ea547aa..db3d52f1 100644 --- a/test/test_execution_request_details_type.py +++ b/test/test_execution_request_details_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.execution_request_details_type import ExecutionRequestDetailsType diff --git a/test/test_execution_response_base_details.py b/test/test_execution_response_base_details.py index 4db0b75b..de302a07 100644 --- a/test/test_execution_response_base_details.py +++ b/test/test_execution_response_base_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.execution_response_base_details import ( diff --git a/test/test_execution_response_details.py b/test/test_execution_response_details.py index 6073f522..b4cac72e 100644 --- a/test/test_execution_response_details.py +++ b/test/test_execution_response_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.execution_response_details import ExecutionResponseDetails diff --git a/test/test_execution_screening_operation.py b/test/test_execution_screening_operation.py index d6f2701d..59c46a67 100644 --- a/test/test_execution_screening_operation.py +++ b/test/test_execution_screening_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.execution_screening_operation import ExecutionScreeningOperation diff --git a/test/test_execution_step_error.py b/test/test_execution_step_error.py index 41146064..ca41f566 100644 --- a/test/test_execution_step_error.py +++ b/test/test_execution_step_error.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.execution_step_error import ExecutionStepError diff --git a/test/test_execution_step_status_enum.py b/test/test_execution_step_status_enum.py index ab4be32d..0f330301 100644 --- a/test/test_execution_step_status_enum.py +++ b/test/test_execution_step_status_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.execution_step_status_enum import ExecutionStepStatusEnum diff --git a/test/test_execution_step_type.py b/test/test_execution_step_type.py index f1be94bc..8f023f38 100644 --- a/test/test_execution_step_type.py +++ b/test/test_execution_step_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.execution_step_type import ExecutionStepType diff --git a/test/test_execution_transfer_operation.py b/test/test_execution_transfer_operation.py index 4c802c62..fde590ec 100644 --- a/test/test_execution_transfer_operation.py +++ b/test/test_execution_transfer_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.execution_transfer_operation import ExecutionTransferOperation diff --git a/test/test_exposure.py b/test/test_exposure.py index bdba9b2c..5f88920a 100644 --- a/test/test_exposure.py +++ b/test/test_exposure.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.exposure import Exposure diff --git a/test/test_external_account.py b/test/test_external_account.py index 8a7997a4..5350ed30 100644 --- a/test/test_external_account.py +++ b/test/test_external_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.external_account import ExternalAccount diff --git a/test/test_external_account_local_bank_africa.py b/test/test_external_account_local_bank_africa.py index 0b1ee92b..7b112070 100644 --- a/test/test_external_account_local_bank_africa.py +++ b/test/test_external_account_local_bank_africa.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.external_account_local_bank_africa import ( diff --git a/test/test_external_account_mobile_money.py b/test/test_external_account_mobile_money.py index 42c6dbfd..dbd24c8f 100644 --- a/test/test_external_account_mobile_money.py +++ b/test/test_external_account_mobile_money.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.external_account_mobile_money import ExternalAccountMobileMoney diff --git a/test/test_external_account_mobile_money_provider.py b/test/test_external_account_mobile_money_provider.py index 2421cb71..dfde6df8 100644 --- a/test/test_external_account_mobile_money_provider.py +++ b/test/test_external_account_mobile_money_provider.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.external_account_mobile_money_provider import ( diff --git a/test/test_external_account_mobile_money_type.py b/test/test_external_account_mobile_money_type.py index c4001236..b7cfc263 100644 --- a/test/test_external_account_mobile_money_type.py +++ b/test/test_external_account_mobile_money_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.external_account_mobile_money_type import ( diff --git a/test/test_external_account_sender_information.py b/test/test_external_account_sender_information.py index 76fe4216..8d823c35 100644 --- a/test/test_external_account_sender_information.py +++ b/test/test_external_account_sender_information.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.external_account_sender_information import ( diff --git a/test/test_external_account_type.py b/test/test_external_account_type.py index 33f0d3b7..ec7f791c 100644 --- a/test/test_external_account_type.py +++ b/test/test_external_account_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.external_account_type import ExternalAccountType diff --git a/test/test_external_wallet_asset.py b/test/test_external_wallet_asset.py index a4950061..9b0c90c2 100644 --- a/test/test_external_wallet_asset.py +++ b/test/test_external_wallet_asset.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.external_wallet_asset import ExternalWalletAsset diff --git a/test/test_external_wallets_api.py b/test/test_external_wallets_api.py index 59f78a6f..65d684ce 100644 --- a/test/test_external_wallets_api.py +++ b/test/test_external_wallets_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.external_wallets_api import ExternalWalletsApi diff --git a/test/test_extra_parameters.py b/test/test_extra_parameters.py index 2778d887..c963dccf 100644 --- a/test/test_extra_parameters.py +++ b/test/test_extra_parameters.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.extra_parameters import ExtraParameters diff --git a/test/test_failure.py b/test/test_failure.py index b829a20e..4b7c5cfd 100644 --- a/test/test_failure.py +++ b/test/test_failure.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.failure import Failure diff --git a/test/test_failure_reason.py b/test/test_failure_reason.py index 2e4b0c85..f3cbf6af 100644 --- a/test/test_failure_reason.py +++ b/test/test_failure_reason.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.failure_reason import FailureReason diff --git a/test/test_fee.py b/test/test_fee.py index e9daffec..596b3975 100644 --- a/test/test_fee.py +++ b/test/test_fee.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fee import Fee diff --git a/test/test_fee_breakdown.py b/test/test_fee_breakdown.py index b042d4b3..17255c1f 100644 --- a/test/test_fee_breakdown.py +++ b/test/test_fee_breakdown.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fee_breakdown import FeeBreakdown diff --git a/test/test_fee_info.py b/test/test_fee_info.py index 11600c1e..b68c5906 100644 --- a/test/test_fee_info.py +++ b/test/test_fee_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fee_info import FeeInfo diff --git a/test/test_fee_level.py b/test/test_fee_level.py index 64b3f3c8..fb87c281 100644 --- a/test/test_fee_level.py +++ b/test/test_fee_level.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fee_level import FeeLevel diff --git a/test/test_fee_payer_info.py b/test/test_fee_payer_info.py index 3f50ff4a..6fc40273 100644 --- a/test/test_fee_payer_info.py +++ b/test/test_fee_payer_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fee_payer_info import FeePayerInfo diff --git a/test/test_fee_properties_details.py b/test/test_fee_properties_details.py index 905017e6..912edbb9 100644 --- a/test/test_fee_properties_details.py +++ b/test/test_fee_properties_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fee_properties_details import FeePropertiesDetails diff --git a/test/test_fee_type_enum.py b/test/test_fee_type_enum.py index 741cd88f..26063e44 100644 --- a/test/test_fee_type_enum.py +++ b/test/test_fee_type_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fee_type_enum import FeeTypeEnum diff --git a/test/test_fetch_abi_request_dto.py b/test/test_fetch_abi_request_dto.py index 3e5e7a52..b02657da 100644 --- a/test/test_fetch_abi_request_dto.py +++ b/test/test_fetch_abi_request_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fetch_abi_request_dto import FetchAbiRequestDto diff --git a/test/test_fiat_account.py b/test/test_fiat_account.py index 0557c12f..0d986501 100644 --- a/test/test_fiat_account.py +++ b/test/test_fiat_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fiat_account import FiatAccount diff --git a/test/test_fiat_account_type.py b/test/test_fiat_account_type.py index 6e44213d..b1923da3 100644 --- a/test/test_fiat_account_type.py +++ b/test/test_fiat_account_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fiat_account_type import FiatAccountType diff --git a/test/test_fiat_accounts_api.py b/test/test_fiat_accounts_api.py index 37eb514d..f5e506e4 100644 --- a/test/test_fiat_accounts_api.py +++ b/test/test_fiat_accounts_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.fiat_accounts_api import FiatAccountsApi diff --git a/test/test_fiat_asset.py b/test/test_fiat_asset.py index 908db4a0..146bbe73 100644 --- a/test/test_fiat_asset.py +++ b/test/test_fiat_asset.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fiat_asset import FiatAsset diff --git a/test/test_fiat_destination.py b/test/test_fiat_destination.py index 04817cf0..d0ace574 100644 --- a/test/test_fiat_destination.py +++ b/test/test_fiat_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fiat_destination import FiatDestination @@ -38,12 +37,19 @@ def make_instance(self, include_optional) -> FiatDestination: if include_optional: return FiatDestination( type = 'IBAN', - address = {"externalSubAccountId":"sub_acc_1234567890","accountId":"acc_1234567890"} + address = fireblocks.models.pesonet_address.PesonetAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BPI', + account_number = '001234567890', ), + reference_id = 'INV-2024-0001' ) else: return FiatDestination( type = 'IBAN', - address = {"externalSubAccountId":"sub_acc_1234567890","accountId":"acc_1234567890"}, + address = fireblocks.models.pesonet_address.PesonetAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BPI', + account_number = '001234567890', ), ) """ diff --git a/test/test_fiat_payment_metadata.py b/test/test_fiat_payment_metadata.py index 2bc3fc46..18a4a4d1 100644 --- a/test/test_fiat_payment_metadata.py +++ b/test/test_fiat_payment_metadata.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fiat_payment_metadata import FiatPaymentMetadata diff --git a/test/test_fiat_transfer.py b/test/test_fiat_transfer.py index f5b5e0e6..7f2e4271 100644 --- a/test/test_fiat_transfer.py +++ b/test/test_fiat_transfer.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fiat_transfer import FiatTransfer diff --git a/test/test_fixed_amount_type_enum.py b/test/test_fixed_amount_type_enum.py index 2d8e9d34..ad47f5b6 100644 --- a/test/test_fixed_amount_type_enum.py +++ b/test/test_fixed_amount_type_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fixed_amount_type_enum import FixedAmountTypeEnum diff --git a/test/test_fixed_fee.py b/test/test_fixed_fee.py index 5470ef10..7cb0807f 100644 --- a/test/test_fixed_fee.py +++ b/test/test_fixed_fee.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.fixed_fee import FixedFee diff --git a/test/test_flow_direction.py b/test/test_flow_direction.py index ea032b08..11bc4058 100644 --- a/test/test_flow_direction.py +++ b/test/test_flow_direction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.flow_direction import FlowDirection diff --git a/test/test_fps_hk_address.py b/test/test_fps_hk_address.py new file mode 100644 index 00000000..5f5ff58e --- /dev/null +++ b/test/test_fps_hk_address.py @@ -0,0 +1,58 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.fps_hk_address import FpsHkAddress + + +class TestFpsHkAddress(unittest.TestCase): + """FpsHkAddress unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> FpsHkAddress: + """Test FpsHkAddress + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `FpsHkAddress` + """ + model = FpsHkAddress() + if include_optional: + return FpsHkAddress( + recipient_legal_name = 'Chan Tai Man', + account_number = '1234567890', + bank_code = '003', + phone = '+85291234567', + email = 'chan.taiman@email.com', + fps_id = '163912345' + ) + else: + return FpsHkAddress( + ) + """ + + def testFpsHkAddress(self): + """Test FpsHkAddress""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_fps_hk_destination.py b/test/test_fps_hk_destination.py new file mode 100644 index 00000000..acac717b --- /dev/null +++ b/test/test_fps_hk_destination.py @@ -0,0 +1,68 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.fps_hk_destination import FpsHkDestination + + +class TestFpsHkDestination(unittest.TestCase): + """FpsHkDestination unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> FpsHkDestination: + """Test FpsHkDestination + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `FpsHkDestination` + """ + model = FpsHkDestination() + if include_optional: + return FpsHkDestination( + type = 'FPS_HK', + address = fireblocks.models.fps_hk_address.FpsHkAddress( + recipient_legal_name = 'Chan Tai Man', + account_number = '1234567890', + bank_code = '003', + phone = '+85291234567', + email = 'chan.taiman@email.com', + fps_id = '163912345', ) + ) + else: + return FpsHkDestination( + type = 'FPS_HK', + address = fireblocks.models.fps_hk_address.FpsHkAddress( + recipient_legal_name = 'Chan Tai Man', + account_number = '1234567890', + bank_code = '003', + phone = '+85291234567', + email = 'chan.taiman@email.com', + fps_id = '163912345', ), + ) + """ + + def testFpsHkDestination(self): + """Test FpsHkDestination""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_fps_uk_address.py b/test/test_fps_uk_address.py new file mode 100644 index 00000000..843cc390 --- /dev/null +++ b/test/test_fps_uk_address.py @@ -0,0 +1,58 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.fps_uk_address import FpsUkAddress + + +class TestFpsUkAddress(unittest.TestCase): + """FpsUkAddress unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> FpsUkAddress: + """Test FpsUkAddress + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `FpsUkAddress` + """ + model = FpsUkAddress() + if include_optional: + return FpsUkAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + account_number = '12345678', + sort_code = '12-34-56' + ) + else: + return FpsUkAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + account_number = '12345678', + sort_code = '12-34-56', + ) + """ + + def testFpsUkAddress(self): + """Test FpsUkAddress""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_fps_uk_destination.py b/test/test_fps_uk_destination.py new file mode 100644 index 00000000..3b8c449c --- /dev/null +++ b/test/test_fps_uk_destination.py @@ -0,0 +1,62 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.fps_uk_destination import FpsUkDestination + + +class TestFpsUkDestination(unittest.TestCase): + """FpsUkDestination unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> FpsUkDestination: + """Test FpsUkDestination + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `FpsUkDestination` + """ + model = FpsUkDestination() + if include_optional: + return FpsUkDestination( + type = 'FPS_UK', + address = fireblocks.models.fps_uk_address.FpsUkAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + account_number = '12345678', + sort_code = '12-34-56', ) + ) + else: + return FpsUkDestination( + type = 'FPS_UK', + address = fireblocks.models.fps_uk_address.FpsUkAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + account_number = '12345678', + sort_code = '12-34-56', ), + ) + """ + + def testFpsUkDestination(self): + """Test FpsUkDestination""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_freeze_transaction_response.py b/test/test_freeze_transaction_response.py index bf7f80bd..fbfaa9ed 100644 --- a/test/test_freeze_transaction_response.py +++ b/test/test_freeze_transaction_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.freeze_transaction_response import FreezeTransactionResponse diff --git a/test/test_function_doc.py b/test/test_function_doc.py index 7cf5ccee..e8647cbf 100644 --- a/test/test_function_doc.py +++ b/test/test_function_doc.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.function_doc import FunctionDoc diff --git a/test/test_funds.py b/test/test_funds.py index 18324313..006f18c7 100644 --- a/test/test_funds.py +++ b/test/test_funds.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.funds import Funds diff --git a/test/test_gas_station_configuration.py b/test/test_gas_station_configuration.py index c22b713e..d8dfa840 100644 --- a/test/test_gas_station_configuration.py +++ b/test/test_gas_station_configuration.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.gas_station_configuration import GasStationConfiguration diff --git a/test/test_gas_station_configuration_response.py b/test/test_gas_station_configuration_response.py index 2ce2cdee..e1ede5db 100644 --- a/test/test_gas_station_configuration_response.py +++ b/test/test_gas_station_configuration_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.gas_station_configuration_response import ( diff --git a/test/test_gas_station_properties_response.py b/test/test_gas_station_properties_response.py index d6020539..db7af1cc 100644 --- a/test/test_gas_station_properties_response.py +++ b/test/test_gas_station_properties_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.gas_station_properties_response import ( diff --git a/test/test_gas_stations_api.py b/test/test_gas_stations_api.py index ee3539a8..efeb933a 100644 --- a/test/test_gas_stations_api.py +++ b/test/test_gas_stations_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.gas_stations_api import GasStationsApi diff --git a/test/test_gassless_standard_configurations.py b/test/test_gassless_standard_configurations.py index 7fdbe380..fa0271e5 100644 --- a/test/test_gassless_standard_configurations.py +++ b/test/test_gassless_standard_configurations.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.gassless_standard_configurations import ( diff --git a/test/test_gassless_standard_configurations_gasless_standard_configurations_value.py b/test/test_gassless_standard_configurations_gasless_standard_configurations_value.py index e91e2ccd..64bb9e6e 100644 --- a/test/test_gassless_standard_configurations_gasless_standard_configurations_value.py +++ b/test/test_gassless_standard_configurations_gasless_standard_configurations_value.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.gassless_standard_configurations_gasless_standard_configurations_value import ( diff --git a/test/test_genie_beta_api.py b/test/test_genie_beta_api.py index a8396092..34c9f5e8 100644 --- a/test/test_genie_beta_api.py +++ b/test/test_genie_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.genie_beta_api import GenieBetaApi diff --git a/test/test_genie_chat_message.py b/test/test_genie_chat_message.py index 63b255af..14a39382 100644 --- a/test/test_genie_chat_message.py +++ b/test/test_genie_chat_message.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.genie_chat_message import GenieChatMessage diff --git a/test/test_genie_create_session_response.py b/test/test_genie_create_session_response.py index b9d04df1..344adcbd 100644 --- a/test/test_genie_create_session_response.py +++ b/test/test_genie_create_session_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.genie_create_session_response import GenieCreateSessionResponse diff --git a/test/test_genie_send_message_request.py b/test/test_genie_send_message_request.py index c221f2d0..4c3dd350 100644 --- a/test/test_genie_send_message_request.py +++ b/test/test_genie_send_message_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.genie_send_message_request import GenieSendMessageRequest diff --git a/test/test_get_action_response.py b/test/test_get_action_response.py index 6c8950b3..0f30748e 100644 --- a/test/test_get_action_response.py +++ b/test/test_get_action_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_action_response import GetActionResponse diff --git a/test/test_get_actions_response.py b/test/test_get_actions_response.py index de739c93..99864618 100644 --- a/test/test_get_actions_response.py +++ b/test/test_get_actions_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_actions_response import GetActionsResponse diff --git a/test/test_get_api_users_response.py b/test/test_get_api_users_response.py index 2d195bc6..52a74031 100644 --- a/test/test_get_api_users_response.py +++ b/test/test_get_api_users_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_api_users_response import GetAPIUsersResponse diff --git a/test/test_get_audit_logs_response.py b/test/test_get_audit_logs_response.py index 4ae9f4bb..7f67e8f3 100644 --- a/test/test_get_audit_logs_response.py +++ b/test/test_get_audit_logs_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_audit_logs_response import GetAuditLogsResponse diff --git a/test/test_get_automation_settings_response.py b/test/test_get_automation_settings_response.py index de3adecf..798ce5ff 100644 --- a/test/test_get_automation_settings_response.py +++ b/test/test_get_automation_settings_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_automation_settings_response import ( diff --git a/test/test_get_billing_info_response.py b/test/test_get_billing_info_response.py index 8def9061..c8705554 100644 --- a/test/test_get_billing_info_response.py +++ b/test/test_get_billing_info_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_billing_info_response import GetBillingInfoResponse diff --git a/test/test_get_blockchain_by_id_response.py b/test/test_get_blockchain_by_id_response.py index 9f68abfc..8d111250 100644 --- a/test/test_get_blockchain_by_id_response.py +++ b/test/test_get_blockchain_by_id_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_blockchain_by_id_response import GetBlockchainByIdResponse diff --git a/test/test_get_byork_verdict_response.py b/test/test_get_byork_verdict_response.py index c8df9aeb..0bf2a3f8 100644 --- a/test/test_get_byork_verdict_response.py +++ b/test/test_get_byork_verdict_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_byork_verdict_response import GetByorkVerdictResponse diff --git a/test/test_get_connected_accounts_credentials_public_key_response.py b/test/test_get_connected_accounts_credentials_public_key_response.py index 8d01747a..ae23bb10 100644 --- a/test/test_get_connected_accounts_credentials_public_key_response.py +++ b/test/test_get_connected_accounts_credentials_public_key_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_connected_accounts_credentials_public_key_response import ( diff --git a/test/test_get_connections_response.py b/test/test_get_connections_response.py index 3cfd2ae3..b9b038db 100644 --- a/test/test_get_connections_response.py +++ b/test/test_get_connections_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_connections_response import GetConnectionsResponse diff --git a/test/test_get_console_users_response.py b/test/test_get_console_users_response.py index 05134de5..56ec6002 100644 --- a/test/test_get_console_users_response.py +++ b/test/test_get_console_users_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_console_users_response import GetConsoleUsersResponse diff --git a/test/test_get_deployable_address_request.py b/test/test_get_deployable_address_request.py index 01c4029b..73d524f7 100644 --- a/test/test_get_deployable_address_request.py +++ b/test/test_get_deployable_address_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_deployable_address_request import GetDeployableAddressRequest diff --git a/test/test_get_exchange_accounts_credentials_public_key_response.py b/test/test_get_exchange_accounts_credentials_public_key_response.py index d8df519d..3bdc4f3c 100644 --- a/test/test_get_exchange_accounts_credentials_public_key_response.py +++ b/test/test_get_exchange_accounts_credentials_public_key_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_exchange_accounts_credentials_public_key_response import ( diff --git a/test/test_get_filter_parameter.py b/test/test_get_filter_parameter.py index 30ab9d8b..db93fa8c 100644 --- a/test/test_get_filter_parameter.py +++ b/test/test_get_filter_parameter.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_filter_parameter import GetFilterParameter diff --git a/test/test_get_layer_zero_dvn_config_response.py b/test/test_get_layer_zero_dvn_config_response.py index 6b9f082e..510cd175 100644 --- a/test/test_get_layer_zero_dvn_config_response.py +++ b/test/test_get_layer_zero_dvn_config_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_layer_zero_dvn_config_response import ( diff --git a/test/test_get_layer_zero_peers_response.py b/test/test_get_layer_zero_peers_response.py index be0f6bcb..6fb86b67 100644 --- a/test/test_get_layer_zero_peers_response.py +++ b/test/test_get_layer_zero_peers_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_layer_zero_peers_response import GetLayerZeroPeersResponse diff --git a/test/test_get_linked_collections_paginated_response.py b/test/test_get_linked_collections_paginated_response.py index d70d74e3..9224b06e 100644 --- a/test/test_get_linked_collections_paginated_response.py +++ b/test/test_get_linked_collections_paginated_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_linked_collections_paginated_response import ( diff --git a/test/test_get_max_bip_index_used_response.py b/test/test_get_max_bip_index_used_response.py index bc7ac215..1811f4eb 100644 --- a/test/test_get_max_bip_index_used_response.py +++ b/test/test_get_max_bip_index_used_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_max_bip_index_used_response import GetMaxBipIndexUsedResponse diff --git a/test/test_get_max_spendable_amount_response.py b/test/test_get_max_spendable_amount_response.py index cf10467b..636d7421 100644 --- a/test/test_get_max_spendable_amount_response.py +++ b/test/test_get_max_spendable_amount_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_max_spendable_amount_response import ( diff --git a/test/test_get_mpc_keys_response.py b/test/test_get_mpc_keys_response.py index f81b0b86..d115c97f 100644 --- a/test/test_get_mpc_keys_response.py +++ b/test/test_get_mpc_keys_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_mpc_keys_response import GetMpcKeysResponse diff --git a/test/test_get_nfts_response.py b/test/test_get_nfts_response.py index abc4651f..6512f87c 100644 --- a/test/test_get_nfts_response.py +++ b/test/test_get_nfts_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_nfts_response import GetNFTsResponse diff --git a/test/test_get_opportunities_response.py b/test/test_get_opportunities_response.py index 38cc27f2..3b48be64 100644 --- a/test/test_get_opportunities_response.py +++ b/test/test_get_opportunities_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_opportunities_response import GetOpportunitiesResponse diff --git a/test/test_get_orders_response.py b/test/test_get_orders_response.py index 9e09fb24..89d811ff 100644 --- a/test/test_get_orders_response.py +++ b/test/test_get_orders_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_orders_response import GetOrdersResponse diff --git a/test/test_get_ota_status_response.py b/test/test_get_ota_status_response.py index 5142734d..8b362fea 100644 --- a/test/test_get_ota_status_response.py +++ b/test/test_get_ota_status_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_ota_status_response import GetOtaStatusResponse diff --git a/test/test_get_ownership_tokens_response.py b/test/test_get_ownership_tokens_response.py index 44490381..8d16ada5 100644 --- a/test/test_get_ownership_tokens_response.py +++ b/test/test_get_ownership_tokens_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_ownership_tokens_response import GetOwnershipTokensResponse diff --git a/test/test_get_paged_exchange_accounts_response.py b/test/test_get_paged_exchange_accounts_response.py index 4406cfe5..10964c26 100644 --- a/test/test_get_paged_exchange_accounts_response.py +++ b/test/test_get_paged_exchange_accounts_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_paged_exchange_accounts_response import ( diff --git a/test/test_get_paged_exchange_accounts_response_paging.py b/test/test_get_paged_exchange_accounts_response_paging.py index 20be9b37..be6819ce 100644 --- a/test/test_get_paged_exchange_accounts_response_paging.py +++ b/test/test_get_paged_exchange_accounts_response_paging.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_paged_exchange_accounts_response_paging import ( diff --git a/test/test_get_positions_response.py b/test/test_get_positions_response.py index dcc48dc5..25a1b91a 100644 --- a/test/test_get_positions_response.py +++ b/test/test_get_positions_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_positions_response import GetPositionsResponse diff --git a/test/test_get_providers_response.py b/test/test_get_providers_response.py index 6bf738a1..878ae659 100644 --- a/test/test_get_providers_response.py +++ b/test/test_get_providers_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_providers_response import GetProvidersResponse diff --git a/test/test_get_signing_key_response_dto.py b/test/test_get_signing_key_response_dto.py index a59956f7..7f4c1434 100644 --- a/test/test_get_signing_key_response_dto.py +++ b/test/test_get_signing_key_response_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_signing_key_response_dto import GetSigningKeyResponseDto diff --git a/test/test_get_test_wallet_address_response.py b/test/test_get_test_wallet_address_response.py index b8ed109a..d88f46d4 100644 --- a/test/test_get_test_wallet_address_response.py +++ b/test/test_get_test_wallet_address_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_test_wallet_address_response import ( diff --git a/test/test_get_transaction_operation.py b/test/test_get_transaction_operation.py index 1e752749..7820c6c9 100644 --- a/test/test_get_transaction_operation.py +++ b/test/test_get_transaction_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_transaction_operation import GetTransactionOperation diff --git a/test/test_get_validation_key_response_dto.py b/test/test_get_validation_key_response_dto.py index 676fc174..a70c9daf 100644 --- a/test/test_get_validation_key_response_dto.py +++ b/test/test_get_validation_key_response_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_validation_key_response_dto import ( diff --git a/test/test_get_whitelist_ip_addresses_response.py b/test/test_get_whitelist_ip_addresses_response.py index ce40fdb7..6684a403 100644 --- a/test/test_get_whitelist_ip_addresses_response.py +++ b/test/test_get_whitelist_ip_addresses_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_whitelist_ip_addresses_response import ( diff --git a/test/test_get_workspace_status_response.py b/test/test_get_workspace_status_response.py index 2514fa27..fe5123a7 100644 --- a/test/test_get_workspace_status_response.py +++ b/test/test_get_workspace_status_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.get_workspace_status_response import GetWorkspaceStatusResponse diff --git a/test/test_gleif_data.py b/test/test_gleif_data.py index 093babc4..4292fef8 100644 --- a/test/test_gleif_data.py +++ b/test/test_gleif_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.gleif_data import GleifData diff --git a/test/test_gleif_other_legal_entity_name.py b/test/test_gleif_other_legal_entity_name.py index a0a850d3..2406f6d3 100644 --- a/test/test_gleif_other_legal_entity_name.py +++ b/test/test_gleif_other_legal_entity_name.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.gleif_other_legal_entity_name import GleifOtherLegalEntityName diff --git a/test/test_http_contract_does_not_exist_error.py b/test/test_http_contract_does_not_exist_error.py index a4e850ef..4c123d59 100644 --- a/test/test_http_contract_does_not_exist_error.py +++ b/test/test_http_contract_does_not_exist_error.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.http_contract_does_not_exist_error import ( diff --git a/test/test_iban_address.py b/test/test_iban_address.py index c6c60e75..8dd372ec 100644 --- a/test/test_iban_address.py +++ b/test/test_iban_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.iban_address import IbanAddress diff --git a/test/test_iban_destination.py b/test/test_iban_destination.py index 91431b97..43e5d90c 100644 --- a/test/test_iban_destination.py +++ b/test/test_iban_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.iban_destination import IbanDestination diff --git a/test/test_iban_payment_info.py b/test/test_iban_payment_info.py index fb1ee061..fa0ef553 100644 --- a/test/test_iban_payment_info.py +++ b/test/test_iban_payment_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.iban_payment_info import IbanPaymentInfo diff --git a/test/test_identification.py b/test/test_identification.py index 67c17d16..192f5c59 100644 --- a/test/test_identification.py +++ b/test/test_identification.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.identification import Identification diff --git a/test/test_identification_policy_override.py b/test/test_identification_policy_override.py index af119836..a80cb945 100644 --- a/test/test_identification_policy_override.py +++ b/test/test_identification_policy_override.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.identification_policy_override import ( diff --git a/test/test_idl_type.py b/test/test_idl_type.py index d22745de..f756c1a8 100644 --- a/test/test_idl_type.py +++ b/test/test_idl_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.idl_type import IdlType diff --git a/test/test_initiator_config.py b/test/test_initiator_config.py index abe96840..ca812671 100644 --- a/test/test_initiator_config.py +++ b/test/test_initiator_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.initiator_config import InitiatorConfig diff --git a/test/test_initiator_config_pattern.py b/test/test_initiator_config_pattern.py index 3d3c55fb..383e4440 100644 --- a/test/test_initiator_config_pattern.py +++ b/test/test_initiator_config_pattern.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.initiator_config_pattern import InitiatorConfigPattern diff --git a/test/test_insta_pay_address.py b/test/test_insta_pay_address.py new file mode 100644 index 00000000..2fa6ab37 --- /dev/null +++ b/test/test_insta_pay_address.py @@ -0,0 +1,58 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.insta_pay_address import InstaPayAddress + + +class TestInstaPayAddress(unittest.TestCase): + """InstaPayAddress unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> InstaPayAddress: + """Test InstaPayAddress + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `InstaPayAddress` + """ + model = InstaPayAddress() + if include_optional: + return InstaPayAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BDO Unibank', + account_number = '001234567890' + ) + else: + return InstaPayAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BDO Unibank', + account_number = '001234567890', + ) + """ + + def testInstaPayAddress(self): + """Test InstaPayAddress""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_insta_pay_destination.py b/test/test_insta_pay_destination.py new file mode 100644 index 00000000..3c64283f --- /dev/null +++ b/test/test_insta_pay_destination.py @@ -0,0 +1,62 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.insta_pay_destination import InstaPayDestination + + +class TestInstaPayDestination(unittest.TestCase): + """InstaPayDestination unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> InstaPayDestination: + """Test InstaPayDestination + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `InstaPayDestination` + """ + model = InstaPayDestination() + if include_optional: + return InstaPayDestination( + type = 'INSTA_PAY', + address = fireblocks.models.insta_pay_address.InstaPayAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BDO Unibank', + account_number = '001234567890', ) + ) + else: + return InstaPayDestination( + type = 'INSTA_PAY', + address = fireblocks.models.insta_pay_address.InstaPayAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BDO Unibank', + account_number = '001234567890', ), + ) + """ + + def testInstaPayDestination(self): + """Test InstaPayDestination""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_instruction_amount.py b/test/test_instruction_amount.py index 8f638246..d1018746 100644 --- a/test/test_instruction_amount.py +++ b/test/test_instruction_amount.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.instruction_amount import InstructionAmount diff --git a/test/test_interac_address.py b/test/test_interac_address.py index 559f2068..b633d536 100644 --- a/test/test_interac_address.py +++ b/test/test_interac_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.interac_address import InteracAddress diff --git a/test/test_interac_destination.py b/test/test_interac_destination.py index 720d6462..409fbb78 100644 --- a/test/test_interac_destination.py +++ b/test/test_interac_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.interac_destination import InteracDestination diff --git a/test/test_interac_payment_info.py b/test/test_interac_payment_info.py index bde78f64..06f306e4 100644 --- a/test/test_interac_payment_info.py +++ b/test/test_interac_payment_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.interac_payment_info import InteracPaymentInfo diff --git a/test/test_internal_reference.py b/test/test_internal_reference.py index 41f5445f..76b72a9c 100644 --- a/test/test_internal_reference.py +++ b/test/test_internal_reference.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.internal_reference import InternalReference diff --git a/test/test_internal_transfer_address.py b/test/test_internal_transfer_address.py index 1f6789a1..e885b92f 100644 --- a/test/test_internal_transfer_address.py +++ b/test/test_internal_transfer_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.internal_transfer_address import InternalTransferAddress diff --git a/test/test_internal_transfer_destination.py b/test/test_internal_transfer_destination.py index 3749b1b9..baa1f9e3 100644 --- a/test/test_internal_transfer_destination.py +++ b/test/test_internal_transfer_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.internal_transfer_destination import InternalTransferDestination diff --git a/test/test_internal_transfer_response.py b/test/test_internal_transfer_response.py index 379b1be0..2a7dded9 100644 --- a/test/test_internal_transfer_response.py +++ b/test/test_internal_transfer_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.internal_transfer_response import InternalTransferResponse diff --git a/test/test_internal_wallets_api.py b/test/test_internal_wallets_api.py index fbe0cba8..ffe62fce 100644 --- a/test/test_internal_wallets_api.py +++ b/test/test_internal_wallets_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.internal_wallets_api import InternalWalletsApi diff --git a/test/test_invalid_paramater_value_error.py b/test/test_invalid_paramater_value_error.py index 9c320e55..6ae447b5 100644 --- a/test/test_invalid_paramater_value_error.py +++ b/test/test_invalid_paramater_value_error.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.invalid_paramater_value_error import InvalidParamaterValueError diff --git a/test/test_issue_api_user_pairing_token_response.py b/test/test_issue_api_user_pairing_token_response.py index cf4a1638..180fee84 100644 --- a/test/test_issue_api_user_pairing_token_response.py +++ b/test/test_issue_api_user_pairing_token_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.issue_api_user_pairing_token_response import ( diff --git a/test/test_job_created.py b/test/test_job_created.py index 685aafc5..623ebaf7 100644 --- a/test/test_job_created.py +++ b/test/test_job_created.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.job_created import JobCreated diff --git a/test/test_key_link_beta_api.py b/test/test_key_link_beta_api.py index 593caf8e..90fb8ac5 100644 --- a/test/test_key_link_beta_api.py +++ b/test/test_key_link_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.key_link_beta_api import KeyLinkBetaApi diff --git a/test/test_keys_beta_api.py b/test/test_keys_beta_api.py index 5e0d3d44..7ad4da52 100644 --- a/test/test_keys_beta_api.py +++ b/test/test_keys_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.keys_beta_api import KeysBetaApi diff --git a/test/test_layer_zero_adapter_create_params.py b/test/test_layer_zero_adapter_create_params.py index 69666f8c..72cf2556 100644 --- a/test/test_layer_zero_adapter_create_params.py +++ b/test/test_layer_zero_adapter_create_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.layer_zero_adapter_create_params import ( diff --git a/test/test_lbt_payment_info.py b/test/test_lbt_payment_info.py index f36ea80b..80fbbbb0 100644 --- a/test/test_lbt_payment_info.py +++ b/test/test_lbt_payment_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.lbt_payment_info import LbtPaymentInfo diff --git a/test/test_lean_abi_function.py b/test/test_lean_abi_function.py index 6fcf4238..ed66e013 100644 --- a/test/test_lean_abi_function.py +++ b/test/test_lean_abi_function.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.lean_abi_function import LeanAbiFunction diff --git a/test/test_lean_contract_dto.py b/test/test_lean_contract_dto.py index 8a7a7b37..abeecfbc 100644 --- a/test/test_lean_contract_dto.py +++ b/test/test_lean_contract_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.lean_contract_dto import LeanContractDto diff --git a/test/test_lean_deployed_contract_response_dto.py b/test/test_lean_deployed_contract_response_dto.py index ef14e729..8ad62302 100644 --- a/test/test_lean_deployed_contract_response_dto.py +++ b/test/test_lean_deployed_contract_response_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.lean_deployed_contract_response_dto import ( diff --git a/test/test_legacy_amount_aggregation_time_period_method.py b/test/test_legacy_amount_aggregation_time_period_method.py index ff65adef..5e7305b3 100644 --- a/test/test_legacy_amount_aggregation_time_period_method.py +++ b/test/test_legacy_amount_aggregation_time_period_method.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_amount_aggregation_time_period_method import ( diff --git a/test/test_legacy_draft_response.py b/test/test_legacy_draft_response.py index 44c37e10..dbf76240 100644 --- a/test/test_legacy_draft_response.py +++ b/test/test_legacy_draft_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_draft_response import LegacyDraftResponse diff --git a/test/test_legacy_draft_review_and_validation_response.py b/test/test_legacy_draft_review_and_validation_response.py index 402b3994..1eb2995b 100644 --- a/test/test_legacy_draft_review_and_validation_response.py +++ b/test/test_legacy_draft_review_and_validation_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_draft_review_and_validation_response import ( diff --git a/test/test_legacy_policy_and_validation_response.py b/test/test_legacy_policy_and_validation_response.py index 3d611f67..31bea950 100644 --- a/test/test_legacy_policy_and_validation_response.py +++ b/test/test_legacy_policy_and_validation_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_and_validation_response import ( diff --git a/test/test_legacy_policy_check_result.py b/test/test_legacy_policy_check_result.py index fc175568..5b2044e4 100644 --- a/test/test_legacy_policy_check_result.py +++ b/test/test_legacy_policy_check_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_check_result import LegacyPolicyCheckResult diff --git a/test/test_legacy_policy_metadata.py b/test/test_legacy_policy_metadata.py index 464f91a0..28e0518c 100644 --- a/test/test_legacy_policy_metadata.py +++ b/test/test_legacy_policy_metadata.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_metadata import LegacyPolicyMetadata diff --git a/test/test_legacy_policy_response.py b/test/test_legacy_policy_response.py index 29d339f9..1fd1fdd1 100644 --- a/test/test_legacy_policy_response.py +++ b/test/test_legacy_policy_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_response import LegacyPolicyResponse diff --git a/test/test_legacy_policy_rule.py b/test/test_legacy_policy_rule.py index a10e5a0b..b6181105 100644 --- a/test/test_legacy_policy_rule.py +++ b/test/test_legacy_policy_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rule import LegacyPolicyRule diff --git a/test/test_legacy_policy_rule_amount.py b/test/test_legacy_policy_rule_amount.py index dd0f0c1b..ec2be9a6 100644 --- a/test/test_legacy_policy_rule_amount.py +++ b/test/test_legacy_policy_rule_amount.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rule_amount import LegacyPolicyRuleAmount diff --git a/test/test_legacy_policy_rule_amount_aggregation.py b/test/test_legacy_policy_rule_amount_aggregation.py index 1ec64039..c2c9306b 100644 --- a/test/test_legacy_policy_rule_amount_aggregation.py +++ b/test/test_legacy_policy_rule_amount_aggregation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rule_amount_aggregation import ( diff --git a/test/test_legacy_policy_rule_authorization_groups.py b/test/test_legacy_policy_rule_authorization_groups.py index d18c3861..981ddb1b 100644 --- a/test/test_legacy_policy_rule_authorization_groups.py +++ b/test/test_legacy_policy_rule_authorization_groups.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rule_authorization_groups import ( diff --git a/test/test_legacy_policy_rule_authorization_groups_groups_inner.py b/test/test_legacy_policy_rule_authorization_groups_groups_inner.py index 14056dff..809c948b 100644 --- a/test/test_legacy_policy_rule_authorization_groups_groups_inner.py +++ b/test/test_legacy_policy_rule_authorization_groups_groups_inner.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rule_authorization_groups_groups_inner import ( diff --git a/test/test_legacy_policy_rule_check_result.py b/test/test_legacy_policy_rule_check_result.py index f6de4030..8c1a5161 100644 --- a/test/test_legacy_policy_rule_check_result.py +++ b/test/test_legacy_policy_rule_check_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rule_check_result import ( diff --git a/test/test_legacy_policy_rule_designated_signers.py b/test/test_legacy_policy_rule_designated_signers.py index f31ac208..839f7c22 100644 --- a/test/test_legacy_policy_rule_designated_signers.py +++ b/test/test_legacy_policy_rule_designated_signers.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rule_designated_signers import ( diff --git a/test/test_legacy_policy_rule_dst.py b/test/test_legacy_policy_rule_dst.py index a9295032..38181d08 100644 --- a/test/test_legacy_policy_rule_dst.py +++ b/test/test_legacy_policy_rule_dst.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rule_dst import LegacyPolicyRuleDst diff --git a/test/test_legacy_policy_rule_error.py b/test/test_legacy_policy_rule_error.py index 8af67f62..32a98196 100644 --- a/test/test_legacy_policy_rule_error.py +++ b/test/test_legacy_policy_rule_error.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rule_error import LegacyPolicyRuleError diff --git a/test/test_legacy_policy_rule_operators.py b/test/test_legacy_policy_rule_operators.py index d89fd72c..753d114c 100644 --- a/test/test_legacy_policy_rule_operators.py +++ b/test/test_legacy_policy_rule_operators.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rule_operators import LegacyPolicyRuleOperators diff --git a/test/test_legacy_policy_rule_raw_message_signing.py b/test/test_legacy_policy_rule_raw_message_signing.py index 2c415844..76f4fb9e 100644 --- a/test/test_legacy_policy_rule_raw_message_signing.py +++ b/test/test_legacy_policy_rule_raw_message_signing.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rule_raw_message_signing import ( diff --git a/test/test_legacy_policy_rule_raw_message_signing_derivation_path.py b/test/test_legacy_policy_rule_raw_message_signing_derivation_path.py index cb2123ef..7f7a3adc 100644 --- a/test/test_legacy_policy_rule_raw_message_signing_derivation_path.py +++ b/test/test_legacy_policy_rule_raw_message_signing_derivation_path.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rule_raw_message_signing_derivation_path import ( diff --git a/test/test_legacy_policy_rule_src.py b/test/test_legacy_policy_rule_src.py index 0bc0f0a3..42c1df69 100644 --- a/test/test_legacy_policy_rule_src.py +++ b/test/test_legacy_policy_rule_src.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rule_src import LegacyPolicyRuleSrc diff --git a/test/test_legacy_policy_rules.py b/test/test_legacy_policy_rules.py index 8a568793..c541eaf3 100644 --- a/test/test_legacy_policy_rules.py +++ b/test/test_legacy_policy_rules.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_rules import LegacyPolicyRules diff --git a/test/test_legacy_policy_src_or_dest_sub_type.py b/test/test_legacy_policy_src_or_dest_sub_type.py index 93ee9535..79a300d6 100644 --- a/test/test_legacy_policy_src_or_dest_sub_type.py +++ b/test/test_legacy_policy_src_or_dest_sub_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_src_or_dest_sub_type import ( diff --git a/test/test_legacy_policy_src_or_dest_type.py b/test/test_legacy_policy_src_or_dest_type.py index bdb1903b..fb3717cd 100644 --- a/test/test_legacy_policy_src_or_dest_type.py +++ b/test/test_legacy_policy_src_or_dest_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_src_or_dest_type import LegacyPolicySrcOrDestType diff --git a/test/test_legacy_policy_status.py b/test/test_legacy_policy_status.py index 8423722b..4faf2baf 100644 --- a/test/test_legacy_policy_status.py +++ b/test/test_legacy_policy_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_status import LegacyPolicyStatus diff --git a/test/test_legacy_policy_validation.py b/test/test_legacy_policy_validation.py index 787eae11..c9a84840 100644 --- a/test/test_legacy_policy_validation.py +++ b/test/test_legacy_policy_validation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_policy_validation import LegacyPolicyValidation diff --git a/test/test_legacy_publish_draft_request.py b/test/test_legacy_publish_draft_request.py index 3efc2b90..c8963180 100644 --- a/test/test_legacy_publish_draft_request.py +++ b/test/test_legacy_publish_draft_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_publish_draft_request import LegacyPublishDraftRequest diff --git a/test/test_legacy_publish_result.py b/test/test_legacy_publish_result.py index d5ce1e8d..7b77d29d 100644 --- a/test/test_legacy_publish_result.py +++ b/test/test_legacy_publish_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_publish_result import LegacyPublishResult diff --git a/test/test_legacy_src_or_dest_attributes_inner.py b/test/test_legacy_src_or_dest_attributes_inner.py index fa6a2f50..ec70973e 100644 --- a/test/test_legacy_src_or_dest_attributes_inner.py +++ b/test/test_legacy_src_or_dest_attributes_inner.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legacy_src_or_dest_attributes_inner import ( diff --git a/test/test_legal_entity_registration.py b/test/test_legal_entity_registration.py index 824b7aa5..5d2d91e3 100644 --- a/test/test_legal_entity_registration.py +++ b/test/test_legal_entity_registration.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.legal_entity_registration import LegalEntityRegistration diff --git a/test/test_lei_status.py b/test/test_lei_status.py index e587b230..7fde8577 100644 --- a/test/test_lei_status.py +++ b/test/test_lei_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.lei_status import LeiStatus diff --git a/test/test_linked_tokens_count.py b/test/test_linked_tokens_count.py index 53c21f86..0b0f3228 100644 --- a/test/test_linked_tokens_count.py +++ b/test/test_linked_tokens_count.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.linked_tokens_count import LinkedTokensCount diff --git a/test/test_list_assets_response.py b/test/test_list_assets_response.py index 8e709c5e..e8f166cc 100644 --- a/test/test_list_assets_response.py +++ b/test/test_list_assets_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.list_assets_response import ListAssetsResponse diff --git a/test/test_list_blockchains_response.py b/test/test_list_blockchains_response.py index 14a990ea..927d4de2 100644 --- a/test/test_list_blockchains_response.py +++ b/test/test_list_blockchains_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.list_blockchains_response import ListBlockchainsResponse diff --git a/test/test_list_blockchains_response2.py b/test/test_list_blockchains_response2.py index 607dfda7..bd8485b4 100644 --- a/test/test_list_blockchains_response2.py +++ b/test/test_list_blockchains_response2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.list_blockchains_response2 import ListBlockchainsResponse2 diff --git a/test/test_list_legal_entities_response.py b/test/test_list_legal_entities_response.py index 9e67bc9f..d5f6cbbf 100644 --- a/test/test_list_legal_entities_response.py +++ b/test/test_list_legal_entities_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.list_legal_entities_response import ListLegalEntitiesResponse diff --git a/test/test_list_owned_collections_response.py b/test/test_list_owned_collections_response.py index 7455517c..3ffadd7e 100644 --- a/test/test_list_owned_collections_response.py +++ b/test/test_list_owned_collections_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.list_owned_collections_response import ( diff --git a/test/test_list_owned_tokens_response.py b/test/test_list_owned_tokens_response.py index 6a0ac688..19a31a99 100644 --- a/test/test_list_owned_tokens_response.py +++ b/test/test_list_owned_tokens_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.list_owned_tokens_response import ListOwnedTokensResponse diff --git a/test/test_list_utxos_response.py b/test/test_list_utxos_response.py index 4b21c083..1961ae7e 100644 --- a/test/test_list_utxos_response.py +++ b/test/test_list_utxos_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.list_utxos_response import ListUtxosResponse diff --git a/test/test_list_vaults_for_registration_response.py b/test/test_list_vaults_for_registration_response.py index e22697bc..f2acc742 100644 --- a/test/test_list_vaults_for_registration_response.py +++ b/test/test_list_vaults_for_registration_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.list_vaults_for_registration_response import ( diff --git a/test/test_local_bank_transfer_africa_address.py b/test/test_local_bank_transfer_africa_address.py index 55d778ff..e72969c3 100644 --- a/test/test_local_bank_transfer_africa_address.py +++ b/test/test_local_bank_transfer_africa_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.local_bank_transfer_africa_address import ( diff --git a/test/test_local_bank_transfer_africa_destination.py b/test/test_local_bank_transfer_africa_destination.py index 23df3904..b72602d3 100644 --- a/test/test_local_bank_transfer_africa_destination.py +++ b/test/test_local_bank_transfer_africa_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.local_bank_transfer_africa_destination import ( diff --git a/test/test_manifest.py b/test/test_manifest.py index 7e1e9bbb..f17fb4ae 100644 --- a/test/test_manifest.py +++ b/test/test_manifest.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.manifest import Manifest diff --git a/test/test_manifest_base.py b/test/test_manifest_base.py index 7b50195b..12a48424 100644 --- a/test/test_manifest_base.py +++ b/test/test_manifest_base.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.manifest_base import ManifestBase diff --git a/test/test_manifest_order.py b/test/test_manifest_order.py index 1348f379..0abb797b 100644 --- a/test/test_manifest_order.py +++ b/test/test_manifest_order.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.manifest_order import ManifestOrder diff --git a/test/test_manifest_order_info.py b/test/test_manifest_order_info.py index e0c4e2fa..dad734e4 100644 --- a/test/test_manifest_order_info.py +++ b/test/test_manifest_order_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.manifest_order_info import ManifestOrderInfo diff --git a/test/test_manifest_quote.py b/test/test_manifest_quote.py index 640ce720..dbf06fbc 100644 --- a/test/test_manifest_quote.py +++ b/test/test_manifest_quote.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.manifest_quote import ManifestQuote diff --git a/test/test_manifest_quote_info.py b/test/test_manifest_quote_info.py index fcad2bf7..7083bc67 100644 --- a/test/test_manifest_quote_info.py +++ b/test/test_manifest_quote_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.manifest_quote_info import ManifestQuoteInfo diff --git a/test/test_market_execution_request_details.py b/test/test_market_execution_request_details.py index 5651e4cd..94994002 100644 --- a/test/test_market_execution_request_details.py +++ b/test/test_market_execution_request_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.market_execution_request_details import ( diff --git a/test/test_market_execution_response_details.py b/test/test_market_execution_response_details.py index b7062979..527cbb70 100644 --- a/test/test_market_execution_response_details.py +++ b/test/test_market_execution_response_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.market_execution_response_details import ( diff --git a/test/test_market_requote_request_details.py b/test/test_market_requote_request_details.py index 2afb01bf..d21a0086 100644 --- a/test/test_market_requote_request_details.py +++ b/test/test_market_requote_request_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.market_requote_request_details import MarketRequoteRequestDetails diff --git a/test/test_market_requote_type_enum.py b/test/test_market_requote_type_enum.py index b67fd567..398e0b2c 100644 --- a/test/test_market_requote_type_enum.py +++ b/test/test_market_requote_type_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.market_requote_type_enum import MarketRequoteTypeEnum diff --git a/test/test_market_type_details.py b/test/test_market_type_details.py index 3948e9cc..aa760ee4 100644 --- a/test/test_market_type_details.py +++ b/test/test_market_type_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.market_type_details import MarketTypeDetails diff --git a/test/test_market_type_enum.py b/test/test_market_type_enum.py index b468972d..be59d52d 100644 --- a/test/test_market_type_enum.py +++ b/test/test_market_type_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.market_type_enum import MarketTypeEnum diff --git a/test/test_media_entity_response.py b/test/test_media_entity_response.py index 5deee2ee..7a73cfde 100644 --- a/test/test_media_entity_response.py +++ b/test/test_media_entity_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.media_entity_response import MediaEntityResponse diff --git a/test/test_merge_stake_accounts_request.py b/test/test_merge_stake_accounts_request.py index abcd41d2..4377b575 100644 --- a/test/test_merge_stake_accounts_request.py +++ b/test/test_merge_stake_accounts_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.merge_stake_accounts_request import MergeStakeAccountsRequest diff --git a/test/test_merge_stake_accounts_response.py b/test/test_merge_stake_accounts_response.py index 82aa3703..740d614d 100644 --- a/test/test_merge_stake_accounts_response.py +++ b/test/test_merge_stake_accounts_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.merge_stake_accounts_response import MergeStakeAccountsResponse diff --git a/test/test_mobile_money_address.py b/test/test_mobile_money_address.py index a780005b..37594a76 100644 --- a/test/test_mobile_money_address.py +++ b/test/test_mobile_money_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.mobile_money_address import MobileMoneyAddress diff --git a/test/test_mobile_money_destination.py b/test/test_mobile_money_destination.py index 6fd8e16d..97629bf1 100644 --- a/test/test_mobile_money_destination.py +++ b/test/test_mobile_money_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.mobile_money_destination import MobileMoneyDestination diff --git a/test/test_modify_signing_key_agent_id_dto.py b/test/test_modify_signing_key_agent_id_dto.py index fa78ffb2..76f587d0 100644 --- a/test/test_modify_signing_key_agent_id_dto.py +++ b/test/test_modify_signing_key_agent_id_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.modify_signing_key_agent_id_dto import ModifySigningKeyAgentIdDto diff --git a/test/test_modify_signing_key_dto.py b/test/test_modify_signing_key_dto.py index eb4deddc..da9ba5af 100644 --- a/test/test_modify_signing_key_dto.py +++ b/test/test_modify_signing_key_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.modify_signing_key_dto import ModifySigningKeyDto diff --git a/test/test_modify_validation_key_dto.py b/test/test_modify_validation_key_dto.py index 3ced4cb3..63974229 100644 --- a/test/test_modify_validation_key_dto.py +++ b/test/test_modify_validation_key_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.modify_validation_key_dto import ModifyValidationKeyDto diff --git a/test/test_momo_payment_info.py b/test/test_momo_payment_info.py index 0552398d..71f8897c 100644 --- a/test/test_momo_payment_info.py +++ b/test/test_momo_payment_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.momo_payment_info import MomoPaymentInfo diff --git a/test/test_mpc_key.py b/test/test_mpc_key.py index 348689cf..32f77d0c 100644 --- a/test/test_mpc_key.py +++ b/test/test_mpc_key.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.mpc_key import MpcKey diff --git a/test/test_multichain_deployment_metadata.py b/test/test_multichain_deployment_metadata.py index 89041552..5c5cb711 100644 --- a/test/test_multichain_deployment_metadata.py +++ b/test/test_multichain_deployment_metadata.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.multichain_deployment_metadata import ( diff --git a/test/test_nequi_address.py b/test/test_nequi_address.py new file mode 100644 index 00000000..af36ca95 --- /dev/null +++ b/test/test_nequi_address.py @@ -0,0 +1,54 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.nequi_address import NequiAddress + + +class TestNequiAddress(unittest.TestCase): + """NequiAddress unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> NequiAddress: + """Test NequiAddress + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `NequiAddress` + """ + model = NequiAddress() + if include_optional: + return NequiAddress( + phone = '+573001234567' + ) + else: + return NequiAddress( + phone = '+573001234567', + ) + """ + + def testNequiAddress(self): + """Test NequiAddress""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_nequi_destination.py b/test/test_nequi_destination.py new file mode 100644 index 00000000..61ead95c --- /dev/null +++ b/test/test_nequi_destination.py @@ -0,0 +1,58 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.nequi_destination import NequiDestination + + +class TestNequiDestination(unittest.TestCase): + """NequiDestination unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> NequiDestination: + """Test NequiDestination + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `NequiDestination` + """ + model = NequiDestination() + if include_optional: + return NequiDestination( + type = 'NEQUI', + address = fireblocks.models.nequi_address.NequiAddress( + phone = '+573001234567', ) + ) + else: + return NequiDestination( + type = 'NEQUI', + address = fireblocks.models.nequi_address.NequiAddress( + phone = '+573001234567', ), + ) + """ + + def testNequiDestination(self): + """Test NequiDestination""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_network_channel.py b/test/test_network_channel.py index 60b27da9..4a18f209 100644 --- a/test/test_network_channel.py +++ b/test/test_network_channel.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.network_channel import NetworkChannel diff --git a/test/test_network_connection.py b/test/test_network_connection.py index 48c1f585..23c8a1cd 100644 --- a/test/test_network_connection.py +++ b/test/test_network_connection.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.network_connection import NetworkConnection diff --git a/test/test_network_connection_response.py b/test/test_network_connection_response.py index cb5415bf..165fc772 100644 --- a/test/test_network_connection_response.py +++ b/test/test_network_connection_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.network_connection_response import NetworkConnectionResponse diff --git a/test/test_network_connection_routing_policy_value.py b/test/test_network_connection_routing_policy_value.py index 3e1dbb29..df20ff8c 100644 --- a/test/test_network_connection_routing_policy_value.py +++ b/test/test_network_connection_routing_policy_value.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.network_connection_routing_policy_value import ( diff --git a/test/test_network_connection_status.py b/test/test_network_connection_status.py index 2db8704b..c8f9c01c 100644 --- a/test/test_network_connection_status.py +++ b/test/test_network_connection_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.network_connection_status import NetworkConnectionStatus diff --git a/test/test_network_connections_api.py b/test/test_network_connections_api.py index 50d2d9bf..060486d2 100644 --- a/test/test_network_connections_api.py +++ b/test/test_network_connections_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.network_connections_api import NetworkConnectionsApi diff --git a/test/test_network_fee.py b/test/test_network_fee.py index b39c77e7..93081b02 100644 --- a/test/test_network_fee.py +++ b/test/test_network_fee.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.network_fee import NetworkFee diff --git a/test/test_network_id.py b/test/test_network_id.py index 7fb19240..4a3129f1 100644 --- a/test/test_network_id.py +++ b/test/test_network_id.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.network_id import NetworkId diff --git a/test/test_network_id_response.py b/test/test_network_id_response.py index 1a9c6276..2b1aee38 100644 --- a/test/test_network_id_response.py +++ b/test/test_network_id_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.network_id_response import NetworkIdResponse diff --git a/test/test_network_id_routing_policy_value.py b/test/test_network_id_routing_policy_value.py index 159b244e..09041c6b 100644 --- a/test/test_network_id_routing_policy_value.py +++ b/test/test_network_id_routing_policy_value.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.network_id_routing_policy_value import ( diff --git a/test/test_network_record.py b/test/test_network_record.py index 7890093c..c161c79c 100644 --- a/test/test_network_record.py +++ b/test/test_network_record.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.network_record import NetworkRecord diff --git a/test/test_new_address.py b/test/test_new_address.py index cd86f396..1855105f 100644 --- a/test/test_new_address.py +++ b/test/test_new_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.new_address import NewAddress diff --git a/test/test_nfts_api.py b/test/test_nfts_api.py index d6881968..b739eeb6 100644 --- a/test/test_nfts_api.py +++ b/test/test_nfts_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.nfts_api import NFTsApi diff --git a/test/test_none_network_routing_dest.py b/test/test_none_network_routing_dest.py index 659cee9c..94c5f260 100644 --- a/test/test_none_network_routing_dest.py +++ b/test/test_none_network_routing_dest.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.none_network_routing_dest import NoneNetworkRoutingDest diff --git a/test/test_not_found_exception.py b/test/test_not_found_exception.py index fab30fd5..137a5cf9 100644 --- a/test/test_not_found_exception.py +++ b/test/test_not_found_exception.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.not_found_exception import NotFoundException diff --git a/test/test_notification.py b/test/test_notification.py index 633aa92c..57ac9206 100644 --- a/test/test_notification.py +++ b/test/test_notification.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.notification import Notification diff --git a/test/test_notification_attempt.py b/test/test_notification_attempt.py index bf1ba75a..765fefb0 100644 --- a/test/test_notification_attempt.py +++ b/test/test_notification_attempt.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.notification_attempt import NotificationAttempt diff --git a/test/test_notification_attempts_paginated_response.py b/test/test_notification_attempts_paginated_response.py index 10402314..d320c0e8 100644 --- a/test/test_notification_attempts_paginated_response.py +++ b/test/test_notification_attempts_paginated_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.notification_attempts_paginated_response import ( diff --git a/test/test_notification_paginated_response.py b/test/test_notification_paginated_response.py index 3dfc20de..fd1431c3 100644 --- a/test/test_notification_paginated_response.py +++ b/test/test_notification_paginated_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.notification_paginated_response import ( diff --git a/test/test_notification_status.py b/test/test_notification_status.py index ee931084..4fe96172 100644 --- a/test/test_notification_status.py +++ b/test/test_notification_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.notification_status import NotificationStatus diff --git a/test/test_notification_with_data.py b/test/test_notification_with_data.py index a63f971d..cb6a68e7 100644 --- a/test/test_notification_with_data.py +++ b/test/test_notification_with_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.notification_with_data import NotificationWithData diff --git a/test/test_off_exchanges_api.py b/test/test_off_exchanges_api.py index e0871a1b..fb781b5c 100644 --- a/test/test_off_exchanges_api.py +++ b/test/test_off_exchanges_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.off_exchanges_api import OffExchangesApi diff --git a/test/test_offer.py b/test/test_offer.py index 7915b804..60ce679f 100644 --- a/test/test_offer.py +++ b/test/test_offer.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.offer import Offer diff --git a/test/test_offers_response.py b/test/test_offers_response.py index 7dc0d1a5..f1fad556 100644 --- a/test/test_offers_response.py +++ b/test/test_offers_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.offers_response import OffersResponse diff --git a/test/test_onchain_data_api.py b/test/test_onchain_data_api.py index 86a77072..1397cefa 100644 --- a/test/test_onchain_data_api.py +++ b/test/test_onchain_data_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.onchain_data_api import OnchainDataApi diff --git a/test/test_onchain_transaction.py b/test/test_onchain_transaction.py index b948f9f7..ce90621d 100644 --- a/test/test_onchain_transaction.py +++ b/test/test_onchain_transaction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.onchain_transaction import OnchainTransaction diff --git a/test/test_onchain_transactions_paged_response.py b/test/test_onchain_transactions_paged_response.py index 61e3bfd0..83698080 100644 --- a/test/test_onchain_transactions_paged_response.py +++ b/test/test_onchain_transactions_paged_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.onchain_transactions_paged_response import ( diff --git a/test/test_onchain_transactions_paged_response2.py b/test/test_onchain_transactions_paged_response2.py index b9220149..4fcfa9bb 100644 --- a/test/test_onchain_transactions_paged_response2.py +++ b/test/test_onchain_transactions_paged_response2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.onchain_transactions_paged_response2 import ( diff --git a/test/test_onchain_transfer_event.py b/test/test_onchain_transfer_event.py index b0191bf5..41255106 100644 --- a/test/test_onchain_transfer_event.py +++ b/test/test_onchain_transfer_event.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.onchain_transfer_event import OnchainTransferEvent diff --git a/test/test_onchain_transfers_paged_response.py b/test/test_onchain_transfers_paged_response.py index 6a7f8468..68441647 100644 --- a/test/test_onchain_transfers_paged_response.py +++ b/test/test_onchain_transfers_paged_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.onchain_transfers_paged_response import ( diff --git a/test/test_one_time_address.py b/test/test_one_time_address.py index 98f17085..c8de1a9b 100644 --- a/test/test_one_time_address.py +++ b/test/test_one_time_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.one_time_address import OneTimeAddress diff --git a/test/test_one_time_address_account.py b/test/test_one_time_address_account.py index 2e5e556d..802c88cb 100644 --- a/test/test_one_time_address_account.py +++ b/test/test_one_time_address_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.one_time_address_account import OneTimeAddressAccount diff --git a/test/test_one_time_address_peer_type.py b/test/test_one_time_address_peer_type.py index 3f2db868..83e22144 100644 --- a/test/test_one_time_address_peer_type.py +++ b/test/test_one_time_address_peer_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.one_time_address_peer_type import OneTimeAddressPeerType diff --git a/test/test_one_time_address_reference.py b/test/test_one_time_address_reference.py index 61a973ed..a89d4515 100644 --- a/test/test_one_time_address_reference.py +++ b/test/test_one_time_address_reference.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.one_time_address_reference import OneTimeAddressReference diff --git a/test/test_operation_execution_failure.py b/test/test_operation_execution_failure.py index 00998ded..22e05002 100644 --- a/test/test_operation_execution_failure.py +++ b/test/test_operation_execution_failure.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.operation_execution_failure import OperationExecutionFailure diff --git a/test/test_opportunity.py b/test/test_opportunity.py index 2a314eab..150c49e6 100644 --- a/test/test_opportunity.py +++ b/test/test_opportunity.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.opportunity import Opportunity diff --git a/test/test_order_details.py b/test/test_order_details.py index 3945d838..b3c87416 100644 --- a/test/test_order_details.py +++ b/test/test_order_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.order_details import OrderDetails diff --git a/test/test_order_execution_step.py b/test/test_order_execution_step.py index 23349cc6..38755483 100644 --- a/test/test_order_execution_step.py +++ b/test/test_order_execution_step.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.order_execution_step import OrderExecutionStep diff --git a/test/test_order_requirement_allowed_file_type.py b/test/test_order_requirement_allowed_file_type.py index de4f265a..1cc1c1f5 100644 --- a/test/test_order_requirement_allowed_file_type.py +++ b/test/test_order_requirement_allowed_file_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.order_requirement_allowed_file_type import ( diff --git a/test/test_order_requirement_details.py b/test/test_order_requirement_details.py index 577bed34..7832ba27 100644 --- a/test/test_order_requirement_details.py +++ b/test/test_order_requirement_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.order_requirement_details import OrderRequirementDetails diff --git a/test/test_order_requirement_file.py b/test/test_order_requirement_file.py index 5cc017c0..2863acd5 100644 --- a/test/test_order_requirement_file.py +++ b/test/test_order_requirement_file.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.order_requirement_file import OrderRequirementFile diff --git a/test/test_order_side.py b/test/test_order_side.py index 43801e1a..e791d750 100644 --- a/test/test_order_side.py +++ b/test/test_order_side.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.order_side import OrderSide diff --git a/test/test_order_status.py b/test/test_order_status.py index b8fd48aa..d0af85cd 100644 --- a/test/test_order_status.py +++ b/test/test_order_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.order_status import OrderStatus diff --git a/test/test_order_summary.py b/test/test_order_summary.py index b1fd41dd..a2a348b7 100644 --- a/test/test_order_summary.py +++ b/test/test_order_summary.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.order_summary import OrderSummary diff --git a/test/test_ota_beta_api.py b/test/test_ota_beta_api.py index 76472f20..48bdc6c6 100644 --- a/test/test_ota_beta_api.py +++ b/test/test_ota_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.ota_beta_api import OTABetaApi diff --git a/test/test_paginated_address_response.py b/test/test_paginated_address_response.py index 33d6a79b..db50af22 100644 --- a/test/test_paginated_address_response.py +++ b/test/test_paginated_address_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.paginated_address_response import PaginatedAddressResponse diff --git a/test/test_paginated_address_response_paging.py b/test/test_paginated_address_response_paging.py index 21d68922..ca5e7f35 100644 --- a/test/test_paginated_address_response_paging.py +++ b/test/test_paginated_address_response_paging.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.paginated_address_response_paging import ( diff --git a/test/test_paginated_asset_wallet_response.py b/test/test_paginated_asset_wallet_response.py index 24ca80e6..4885cb17 100644 --- a/test/test_paginated_asset_wallet_response.py +++ b/test/test_paginated_asset_wallet_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.paginated_asset_wallet_response import ( diff --git a/test/test_paginated_asset_wallet_response_paging.py b/test/test_paginated_asset_wallet_response_paging.py index 0c187ed5..99b97dd8 100644 --- a/test/test_paginated_asset_wallet_response_paging.py +++ b/test/test_paginated_asset_wallet_response_paging.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.paginated_asset_wallet_response_paging import ( diff --git a/test/test_paginated_assets_response.py b/test/test_paginated_assets_response.py index 802b8edb..78b61320 100644 --- a/test/test_paginated_assets_response.py +++ b/test/test_paginated_assets_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.paginated_assets_response import PaginatedAssetsResponse diff --git a/test/test_paging.py b/test/test_paging.py index 17ad5d1a..9e17215e 100644 --- a/test/test_paging.py +++ b/test/test_paging.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.paging import Paging diff --git a/test/test_pair_api_key_request.py b/test/test_pair_api_key_request.py index 173c6921..ef778b03 100644 --- a/test/test_pair_api_key_request.py +++ b/test/test_pair_api_key_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.pair_api_key_request import PairApiKeyRequest diff --git a/test/test_pair_api_key_response.py b/test/test_pair_api_key_response.py index 2c672e80..3c00ae4d 100644 --- a/test/test_pair_api_key_response.py +++ b/test/test_pair_api_key_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.pair_api_key_response import PairApiKeyResponse diff --git a/test/test_parameter.py b/test/test_parameter.py index 5901a66d..04ed9e03 100644 --- a/test/test_parameter.py +++ b/test/test_parameter.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.parameter import Parameter diff --git a/test/test_parameter_with_value.py b/test/test_parameter_with_value.py index 4f5681c7..045221aa 100644 --- a/test/test_parameter_with_value.py +++ b/test/test_parameter_with_value.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.parameter_with_value import ParameterWithValue diff --git a/test/test_participant_relationship_type.py b/test/test_participant_relationship_type.py index 420fb133..1ec58ee6 100644 --- a/test/test_participant_relationship_type.py +++ b/test/test_participant_relationship_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.participant_relationship_type import ParticipantRelationshipType diff --git a/test/test_participants_identification.py b/test/test_participants_identification.py index 12b5050f..a996d574 100644 --- a/test/test_participants_identification.py +++ b/test/test_participants_identification.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.participants_identification import ParticipantsIdentification diff --git a/test/test_participants_identification_policy.py b/test/test_participants_identification_policy.py index def735bc..8578ddad 100644 --- a/test/test_participants_identification_policy.py +++ b/test/test_participants_identification_policy.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.participants_identification_policy import ( diff --git a/test/test_payee_account.py b/test/test_payee_account.py index ab14d3f8..3d6e56b3 100644 --- a/test/test_payee_account.py +++ b/test/test_payee_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payee_account import PayeeAccount diff --git a/test/test_payee_account_response.py b/test/test_payee_account_response.py index c1bc1f2f..b3a0987b 100644 --- a/test/test_payee_account_response.py +++ b/test/test_payee_account_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payee_account_response import PayeeAccountResponse diff --git a/test/test_payee_account_type.py b/test/test_payee_account_type.py index 1964c135..d14f5c60 100644 --- a/test/test_payee_account_type.py +++ b/test/test_payee_account_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payee_account_type import PayeeAccountType diff --git a/test/test_payid_address.py b/test/test_payid_address.py index 4d43ccee..d34fc544 100644 --- a/test/test_payid_address.py +++ b/test/test_payid_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payid_address import PayidAddress diff --git a/test/test_payid_destination.py b/test/test_payid_destination.py index 267c3fc7..75675e91 100644 --- a/test/test_payid_destination.py +++ b/test/test_payid_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payid_destination import PayidDestination diff --git a/test/test_payid_payment_info.py b/test/test_payid_payment_info.py index e5b88c26..88b0e5d9 100644 --- a/test/test_payid_payment_info.py +++ b/test/test_payid_payment_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payid_payment_info import PayidPaymentInfo diff --git a/test/test_payment_account.py b/test/test_payment_account.py index c3a69508..61f594e0 100644 --- a/test/test_payment_account.py +++ b/test/test_payment_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payment_account import PaymentAccount diff --git a/test/test_payment_account_response.py b/test/test_payment_account_response.py index 6f46552c..e00ec239 100644 --- a/test/test_payment_account_response.py +++ b/test/test_payment_account_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payment_account_response import PaymentAccountResponse diff --git a/test/test_payment_account_type.py b/test/test_payment_account_type.py index 07b18fd1..11e1ee17 100644 --- a/test/test_payment_account_type.py +++ b/test/test_payment_account_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payment_account_type import PaymentAccountType diff --git a/test/test_payment_instructions.py b/test/test_payment_instructions.py index f6236a88..da2bcb0a 100644 --- a/test/test_payment_instructions.py +++ b/test/test_payment_instructions.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payment_instructions import PaymentInstructions @@ -38,13 +37,19 @@ def make_instance(self, include_optional) -> PaymentInstructions: if include_optional: return PaymentInstructions( type = 'BLOCKCHAIN', - address = {"externalSubAccountId":"sub_acc_1234567890","accountId":"acc_1234567890"}, + address = fireblocks.models.pesonet_address.PesonetAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BPI', + account_number = '001234567890', ), reference_id = '' ) else: return PaymentInstructions( type = 'BLOCKCHAIN', - address = {"externalSubAccountId":"sub_acc_1234567890","accountId":"acc_1234567890"}, + address = fireblocks.models.pesonet_address.PesonetAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BPI', + account_number = '001234567890', ), ) """ diff --git a/test/test_payment_instructions_one_of.py b/test/test_payment_instructions_one_of.py index 7265b5e2..5a66d6cd 100644 --- a/test/test_payment_instructions_one_of.py +++ b/test/test_payment_instructions_one_of.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payment_instructions_one_of import PaymentInstructionsOneOf @@ -37,14 +36,20 @@ def make_instance(self, include_optional) -> PaymentInstructionsOneOf: model = PaymentInstructionsOneOf() if include_optional: return PaymentInstructionsOneOf( - type = 'INTERNAL_TRANSFER', - address = {"externalSubAccountId":"sub_acc_1234567890","accountId":"acc_1234567890"}, + type = 'PESONET', + address = fireblocks.models.pesonet_address.PesonetAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BPI', + account_number = '001234567890', ), reference_id = '' ) else: return PaymentInstructionsOneOf( - type = 'INTERNAL_TRANSFER', - address = {"externalSubAccountId":"sub_acc_1234567890","accountId":"acc_1234567890"}, + type = 'PESONET', + address = fireblocks.models.pesonet_address.PesonetAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BPI', + account_number = '001234567890', ), ) """ diff --git a/test/test_payment_redirect.py b/test/test_payment_redirect.py index 62b4dee0..ad578a8e 100644 --- a/test/test_payment_redirect.py +++ b/test/test_payment_redirect.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payment_redirect import PaymentRedirect diff --git a/test/test_payments_payout_api.py b/test/test_payments_payout_api.py index c19a9e26..240d6cbe 100644 --- a/test/test_payments_payout_api.py +++ b/test/test_payments_payout_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.payments_payout_api import PaymentsPayoutApi diff --git a/test/test_payout_init_method.py b/test/test_payout_init_method.py index 9d116bf5..f9060397 100644 --- a/test/test_payout_init_method.py +++ b/test/test_payout_init_method.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payout_init_method import PayoutInitMethod diff --git a/test/test_payout_instruction.py b/test/test_payout_instruction.py index 52d978c1..ce503d83 100644 --- a/test/test_payout_instruction.py +++ b/test/test_payout_instruction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payout_instruction import PayoutInstruction diff --git a/test/test_payout_instruction_response.py b/test/test_payout_instruction_response.py index 02d90f04..ca46ceff 100644 --- a/test/test_payout_instruction_response.py +++ b/test/test_payout_instruction_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payout_instruction_response import PayoutInstructionResponse diff --git a/test/test_payout_instruction_state.py b/test/test_payout_instruction_state.py index 2415cc36..a31add54 100644 --- a/test/test_payout_instruction_state.py +++ b/test/test_payout_instruction_state.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payout_instruction_state import PayoutInstructionState diff --git a/test/test_payout_response.py b/test/test_payout_response.py index 39f8b911..574a7db9 100644 --- a/test/test_payout_response.py +++ b/test/test_payout_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payout_response import PayoutResponse diff --git a/test/test_payout_state.py b/test/test_payout_state.py index b7bad112..bf179f5b 100644 --- a/test/test_payout_state.py +++ b/test/test_payout_state.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payout_state import PayoutState diff --git a/test/test_payout_status.py b/test/test_payout_status.py index 6aa02475..a21aafee 100644 --- a/test/test_payout_status.py +++ b/test/test_payout_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.payout_status import PayoutStatus diff --git a/test/test_peer_adapter_info.py b/test/test_peer_adapter_info.py index ea67a4da..2d45be6b 100644 --- a/test/test_peer_adapter_info.py +++ b/test/test_peer_adapter_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.peer_adapter_info import PeerAdapterInfo diff --git a/test/test_peer_type.py b/test/test_peer_type.py index 2947bfda..d5b44560 100644 --- a/test/test_peer_type.py +++ b/test/test_peer_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.peer_type import PeerType diff --git a/test/test_personal_entity_type_enum.py b/test/test_personal_entity_type_enum.py index ef81496e..21fbe49a 100644 --- a/test/test_personal_entity_type_enum.py +++ b/test/test_personal_entity_type_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.personal_entity_type_enum import PersonalEntityTypeEnum diff --git a/test/test_personal_identification.py b/test/test_personal_identification.py index a037c953..247a77ce 100644 --- a/test/test_personal_identification.py +++ b/test/test_personal_identification.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.personal_identification import PersonalIdentification diff --git a/test/test_personal_identification_document.py b/test/test_personal_identification_document.py index d8437ec4..f0c5aa10 100644 --- a/test/test_personal_identification_document.py +++ b/test/test_personal_identification_document.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.personal_identification_document import ( diff --git a/test/test_personal_identification_full_name.py b/test/test_personal_identification_full_name.py index 9aed2af0..2979a6a3 100644 --- a/test/test_personal_identification_full_name.py +++ b/test/test_personal_identification_full_name.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.personal_identification_full_name import ( diff --git a/test/test_personal_identification_type.py b/test/test_personal_identification_type.py index c440e75f..678c1c8a 100644 --- a/test/test_personal_identification_type.py +++ b/test/test_personal_identification_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.personal_identification_type import PersonalIdentificationType diff --git a/test/test_pesonet_address.py b/test/test_pesonet_address.py new file mode 100644 index 00000000..b57b292f --- /dev/null +++ b/test/test_pesonet_address.py @@ -0,0 +1,58 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.pesonet_address import PesonetAddress + + +class TestPesonetAddress(unittest.TestCase): + """PesonetAddress unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> PesonetAddress: + """Test PesonetAddress + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `PesonetAddress` + """ + model = PesonetAddress() + if include_optional: + return PesonetAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BPI', + account_number = '001234567890' + ) + else: + return PesonetAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BPI', + account_number = '001234567890', + ) + """ + + def testPesonetAddress(self): + """Test PesonetAddress""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_pesonet_destination.py b/test/test_pesonet_destination.py new file mode 100644 index 00000000..4c77fdcc --- /dev/null +++ b/test/test_pesonet_destination.py @@ -0,0 +1,62 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.pesonet_destination import PesonetDestination + + +class TestPesonetDestination(unittest.TestCase): + """PesonetDestination unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> PesonetDestination: + """Test PesonetDestination + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `PesonetDestination` + """ + model = PesonetDestination() + if include_optional: + return PesonetDestination( + type = 'PESONET', + address = fireblocks.models.pesonet_address.PesonetAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BPI', + account_number = '001234567890', ) + ) + else: + return PesonetDestination( + type = 'PESONET', + address = fireblocks.models.pesonet_address.PesonetAddress( + account_holder = {"name":"John Smith","city":"New York","country":"US","subdivision":"NY","address":"123 Wall Street, Apt 4B","postalCode":"10005"}, + bank_name = 'BPI', + account_number = '001234567890', ), + ) + """ + + def testPesonetDestination(self): + """Test PesonetDestination""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_pix_address.py b/test/test_pix_address.py index f745e225..c97cc8af 100644 --- a/test/test_pix_address.py +++ b/test/test_pix_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.pix_address import PixAddress diff --git a/test/test_pix_destination.py b/test/test_pix_destination.py index 0cd58521..1abbe7f1 100644 --- a/test/test_pix_destination.py +++ b/test/test_pix_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.pix_destination import PixDestination diff --git a/test/test_pix_payment_info.py b/test/test_pix_payment_info.py index 9d036645..7b3174f6 100644 --- a/test/test_pix_payment_info.py +++ b/test/test_pix_payment_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.pix_payment_info import PixPaymentInfo diff --git a/test/test_platform_account.py b/test/test_platform_account.py index 5c14cff1..cd2177fc 100644 --- a/test/test_platform_account.py +++ b/test/test_platform_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.platform_account import PlatformAccount diff --git a/test/test_platform_peer_type.py b/test/test_platform_peer_type.py index 81ad4a5c..0982d86d 100644 --- a/test/test_platform_peer_type.py +++ b/test/test_platform_peer_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.platform_peer_type import PlatformPeerType diff --git a/test/test_players.py b/test/test_players.py index 5f02efb7..0850ce06 100644 --- a/test/test_players.py +++ b/test/test_players.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.players import Players diff --git a/test/test_policy_and_validation_response.py b/test/test_policy_and_validation_response.py index 6a991b09..4bf3c4b3 100644 --- a/test/test_policy_and_validation_response.py +++ b/test/test_policy_and_validation_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_and_validation_response import PolicyAndValidationResponse diff --git a/test/test_policy_check_result.py b/test/test_policy_check_result.py index 97429549..c14af367 100644 --- a/test/test_policy_check_result.py +++ b/test/test_policy_check_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_check_result import PolicyCheckResult diff --git a/test/test_policy_currency.py b/test/test_policy_currency.py index 989a1572..e4fb255a 100644 --- a/test/test_policy_currency.py +++ b/test/test_policy_currency.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_currency import PolicyCurrency diff --git a/test/test_policy_editor_beta_api.py b/test/test_policy_editor_beta_api.py index 57218055..524d2a19 100644 --- a/test/test_policy_editor_beta_api.py +++ b/test/test_policy_editor_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.policy_editor_beta_api import PolicyEditorBetaApi diff --git a/test/test_policy_editor_v2_api.py b/test/test_policy_editor_v2_api.py index c7498b4f..00b44df0 100644 --- a/test/test_policy_editor_v2_api.py +++ b/test/test_policy_editor_v2_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.policy_editor_v2_api import PolicyEditorV2Api diff --git a/test/test_policy_editor_v2_beta_api.py b/test/test_policy_editor_v2_beta_api.py index 62cf2dc5..427867ea 100644 --- a/test/test_policy_editor_v2_beta_api.py +++ b/test/test_policy_editor_v2_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.policy_editor_v2_beta_api import PolicyEditorV2BetaApi diff --git a/test/test_policy_metadata_entry.py b/test/test_policy_metadata_entry.py index 24a16d96..cdf5588b 100644 --- a/test/test_policy_metadata_entry.py +++ b/test/test_policy_metadata_entry.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_metadata_entry import PolicyMetadataEntry diff --git a/test/test_policy_operator.py b/test/test_policy_operator.py index 8df83542..3edfcfa7 100644 --- a/test/test_policy_operator.py +++ b/test/test_policy_operator.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_operator import PolicyOperator diff --git a/test/test_policy_response.py b/test/test_policy_response.py index 9e9c85a5..01e3b4fa 100644 --- a/test/test_policy_response.py +++ b/test/test_policy_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_response import PolicyResponse diff --git a/test/test_policy_rule.py b/test/test_policy_rule.py index cba8758b..ec32de9a 100644 --- a/test/test_policy_rule.py +++ b/test/test_policy_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_rule import PolicyRule diff --git a/test/test_policy_rule_check_result.py b/test/test_policy_rule_check_result.py index b4ae10a4..9b79a3b2 100644 --- a/test/test_policy_rule_check_result.py +++ b/test/test_policy_rule_check_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_rule_check_result import PolicyRuleCheckResult diff --git a/test/test_policy_rule_error.py b/test/test_policy_rule_error.py index e607024e..d32dcea2 100644 --- a/test/test_policy_rule_error.py +++ b/test/test_policy_rule_error.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_rule_error import PolicyRuleError diff --git a/test/test_policy_rule_quota_participant.py b/test/test_policy_rule_quota_participant.py index ab5e4553..09de7537 100644 --- a/test/test_policy_rule_quota_participant.py +++ b/test/test_policy_rule_quota_participant.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_rule_quota_participant import PolicyRuleQuotaParticipant diff --git a/test/test_policy_rule_quota_request.py b/test/test_policy_rule_quota_request.py index 3a0039bb..9ef24599 100644 --- a/test/test_policy_rule_quota_request.py +++ b/test/test_policy_rule_quota_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_rule_quota_request import PolicyRuleQuotaRequest diff --git a/test/test_policy_rule_quota_response.py b/test/test_policy_rule_quota_response.py index 23115b2e..f7f6abb1 100644 --- a/test/test_policy_rule_quota_response.py +++ b/test/test_policy_rule_quota_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_rule_quota_response import PolicyRuleQuotaResponse diff --git a/test/test_policy_status.py b/test/test_policy_status.py index bb1c2ce1..852fc99d 100644 --- a/test/test_policy_status.py +++ b/test/test_policy_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_status import PolicyStatus diff --git a/test/test_policy_tag.py b/test/test_policy_tag.py index 2667dd28..ee985c00 100644 --- a/test/test_policy_tag.py +++ b/test/test_policy_tag.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_tag import PolicyTag diff --git a/test/test_policy_type.py b/test/test_policy_type.py index f952fff0..4909e664 100644 --- a/test/test_policy_type.py +++ b/test/test_policy_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_type import PolicyType diff --git a/test/test_policy_validation.py b/test/test_policy_validation.py index b40abc21..077fd334 100644 --- a/test/test_policy_validation.py +++ b/test/test_policy_validation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_validation import PolicyValidation diff --git a/test/test_policy_verdict_action_enum.py b/test/test_policy_verdict_action_enum.py index 6d47a540..fb4884fe 100644 --- a/test/test_policy_verdict_action_enum.py +++ b/test/test_policy_verdict_action_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_verdict_action_enum import PolicyVerdictActionEnum diff --git a/test/test_policy_verdict_action_enum2.py b/test/test_policy_verdict_action_enum2.py index 99d53271..45899975 100644 --- a/test/test_policy_verdict_action_enum2.py +++ b/test/test_policy_verdict_action_enum2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.policy_verdict_action_enum2 import PolicyVerdictActionEnum2 diff --git a/test/test_position.py b/test/test_position.py index bfc3eb89..f70d5079 100644 --- a/test/test_position.py +++ b/test/test_position.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.position import Position diff --git a/test/test_position2.py b/test/test_position2.py index 7baa8902..5f923e22 100644 --- a/test/test_position2.py +++ b/test/test_position2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.position2 import Position2 diff --git a/test/test_position_related_transaction.py b/test/test_position_related_transaction.py index fd480976..53f6fb27 100644 --- a/test/test_position_related_transaction.py +++ b/test/test_position_related_transaction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.position_related_transaction import PositionRelatedTransaction diff --git a/test/test_postal_address.py b/test/test_postal_address.py index 57552d9f..427573d4 100644 --- a/test/test_postal_address.py +++ b/test/test_postal_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.postal_address import PostalAddress diff --git a/test/test_pre_screening.py b/test/test_pre_screening.py index e9a00dcc..395d4bb0 100644 --- a/test/test_pre_screening.py +++ b/test/test_pre_screening.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.pre_screening import PreScreening diff --git a/test/test_prefunded_settlement.py b/test/test_prefunded_settlement.py index a91218b1..2b8abab0 100644 --- a/test/test_prefunded_settlement.py +++ b/test/test_prefunded_settlement.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.prefunded_settlement import PrefundedSettlement diff --git a/test/test_prefunded_settlement_type.py b/test/test_prefunded_settlement_type.py index b2bbb190..4eb33333 100644 --- a/test/test_prefunded_settlement_type.py +++ b/test/test_prefunded_settlement_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.prefunded_settlement_type import PrefundedSettlementType diff --git a/test/test_program_call_config.py b/test/test_program_call_config.py index 144ce928..51bb9ecf 100644 --- a/test/test_program_call_config.py +++ b/test/test_program_call_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.program_call_config import ProgramCallConfig diff --git a/test/test_program_call_decoded_data_item.py b/test/test_program_call_decoded_data_item.py index 7f6a2055..b0c256f8 100644 --- a/test/test_program_call_decoded_data_item.py +++ b/test/test_program_call_decoded_data_item.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.program_call_decoded_data_item import ProgramCallDecodedDataItem diff --git a/test/test_provider.py b/test/test_provider.py index 1cce71fd..111d4a67 100644 --- a/test/test_provider.py +++ b/test/test_provider.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.provider import Provider diff --git a/test/test_providers_list_response.py b/test/test_providers_list_response.py index e2eb266e..b0753e93 100644 --- a/test/test_providers_list_response.py +++ b/test/test_providers_list_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.providers_list_response import ProvidersListResponse diff --git a/test/test_public_key_information.py b/test/test_public_key_information.py index 0be92360..c21e5b68 100644 --- a/test/test_public_key_information.py +++ b/test/test_public_key_information.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.public_key_information import PublicKeyInformation diff --git a/test/test_publish_draft_request.py b/test/test_publish_draft_request.py index e21ddc57..31f3d8b0 100644 --- a/test/test_publish_draft_request.py +++ b/test/test_publish_draft_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.publish_draft_request import PublishDraftRequest diff --git a/test/test_publish_result.py b/test/test_publish_result.py index 997053dc..0af8979d 100644 --- a/test/test_publish_result.py +++ b/test/test_publish_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.publish_result import PublishResult diff --git a/test/test_quote.py b/test/test_quote.py index 92343b0d..73625259 100644 --- a/test/test_quote.py +++ b/test/test_quote.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.quote import Quote diff --git a/test/test_quote_execution_request_details.py b/test/test_quote_execution_request_details.py index 89505745..67ae200f 100644 --- a/test/test_quote_execution_request_details.py +++ b/test/test_quote_execution_request_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.quote_execution_request_details import ( diff --git a/test/test_quote_execution_step.py b/test/test_quote_execution_step.py index a8cc7f98..dafff7d7 100644 --- a/test/test_quote_execution_step.py +++ b/test/test_quote_execution_step.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.quote_execution_step import QuoteExecutionStep diff --git a/test/test_quote_execution_type_details.py b/test/test_quote_execution_type_details.py index 4e4233f6..30058cda 100644 --- a/test/test_quote_execution_type_details.py +++ b/test/test_quote_execution_type_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.quote_execution_type_details import QuoteExecutionTypeDetails diff --git a/test/test_quote_execution_type_enum.py b/test/test_quote_execution_type_enum.py index ea16291b..8f19dba1 100644 --- a/test/test_quote_execution_type_enum.py +++ b/test/test_quote_execution_type_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.quote_execution_type_enum import QuoteExecutionTypeEnum diff --git a/test/test_quote_execution_with_requote_request_details.py b/test/test_quote_execution_with_requote_request_details.py index f99423e9..bac72ccd 100644 --- a/test/test_quote_execution_with_requote_request_details.py +++ b/test/test_quote_execution_with_requote_request_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.quote_execution_with_requote_request_details import ( diff --git a/test/test_quote_execution_with_requote_response_details.py b/test/test_quote_execution_with_requote_response_details.py index ca6e0eb6..85b8d805 100644 --- a/test/test_quote_execution_with_requote_response_details.py +++ b/test/test_quote_execution_with_requote_response_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.quote_execution_with_requote_response_details import ( diff --git a/test/test_quote_offer.py b/test/test_quote_offer.py index b9ead3b8..5b8f73a8 100644 --- a/test/test_quote_offer.py +++ b/test/test_quote_offer.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.quote_offer import QuoteOffer diff --git a/test/test_quote_offer_type.py b/test/test_quote_offer_type.py index ddfbb332..cc02ad4a 100644 --- a/test/test_quote_offer_type.py +++ b/test/test_quote_offer_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.quote_offer_type import QuoteOfferType diff --git a/test/test_quotes_response.py b/test/test_quotes_response.py index b8b4cb61..60fb60c5 100644 --- a/test/test_quotes_response.py +++ b/test/test_quotes_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.quotes_response import QuotesResponse diff --git a/test/test_rate.py b/test/test_rate.py index 6b91cc5e..74fa4666 100644 --- a/test/test_rate.py +++ b/test/test_rate.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.rate import Rate diff --git a/test/test_rate_offer.py b/test/test_rate_offer.py index c5c2e623..04bc139d 100644 --- a/test/test_rate_offer.py +++ b/test/test_rate_offer.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.rate_offer import RateOffer diff --git a/test/test_rate_offer_type.py b/test/test_rate_offer_type.py index 56d47d5b..d10e7862 100644 --- a/test/test_rate_offer_type.py +++ b/test/test_rate_offer_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.rate_offer_type import RateOfferType diff --git a/test/test_rates_request.py b/test/test_rates_request.py index 4785ff91..772f9473 100644 --- a/test/test_rates_request.py +++ b/test/test_rates_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.rates_request import RatesRequest diff --git a/test/test_rates_response.py b/test/test_rates_response.py index 9d1a5421..b09e2501 100644 --- a/test/test_rates_response.py +++ b/test/test_rates_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.rates_response import RatesResponse diff --git a/test/test_re_quote_details.py b/test/test_re_quote_details.py index a08fc82c..e3ff1615 100644 --- a/test/test_re_quote_details.py +++ b/test/test_re_quote_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.re_quote_details import ReQuoteDetails diff --git a/test/test_re_quote_details_re_quote.py b/test/test_re_quote_details_re_quote.py index 2cfc828a..14a03c4a 100644 --- a/test/test_re_quote_details_re_quote.py +++ b/test/test_re_quote_details_re_quote.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.re_quote_details_re_quote import ReQuoteDetailsReQuote diff --git a/test/test_read_abi_function.py b/test/test_read_abi_function.py index a1cec73f..f33018b1 100644 --- a/test/test_read_abi_function.py +++ b/test/test_read_abi_function.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.read_abi_function import ReadAbiFunction diff --git a/test/test_read_call_function_dto.py b/test/test_read_call_function_dto.py index cd68747e..1ffeea54 100644 --- a/test/test_read_call_function_dto.py +++ b/test/test_read_call_function_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.read_call_function_dto import ReadCallFunctionDto diff --git a/test/test_read_call_function_dto_abi_function.py b/test/test_read_call_function_dto_abi_function.py index be68df67..84487774 100644 --- a/test/test_read_call_function_dto_abi_function.py +++ b/test/test_read_call_function_dto_abi_function.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.read_call_function_dto_abi_function import ( diff --git a/test/test_reason_for_payment_enum.py b/test/test_reason_for_payment_enum.py index 9219697b..4fa33fce 100644 --- a/test/test_reason_for_payment_enum.py +++ b/test/test_reason_for_payment_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.reason_for_payment_enum import ReasonForPaymentEnum diff --git a/test/test_recipient_handle.py b/test/test_recipient_handle.py index d55b339a..dd66396d 100644 --- a/test/test_recipient_handle.py +++ b/test/test_recipient_handle.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.recipient_handle import RecipientHandle diff --git a/test/test_redeem_funds_to_linked_dda_response.py b/test/test_redeem_funds_to_linked_dda_response.py index 62aa2c2e..02206dbc 100644 --- a/test/test_redeem_funds_to_linked_dda_response.py +++ b/test/test_redeem_funds_to_linked_dda_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.redeem_funds_to_linked_dda_response import ( diff --git a/test/test_register_legal_entity_request.py b/test/test_register_legal_entity_request.py index 96de0b82..dedb80ee 100644 --- a/test/test_register_legal_entity_request.py +++ b/test/test_register_legal_entity_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.register_legal_entity_request import RegisterLegalEntityRequest diff --git a/test/test_register_new_asset_request.py b/test/test_register_new_asset_request.py index 53591eaa..7f09e18a 100644 --- a/test/test_register_new_asset_request.py +++ b/test/test_register_new_asset_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.register_new_asset_request import RegisterNewAssetRequest diff --git a/test/test_reissue_multichain_token_request.py b/test/test_reissue_multichain_token_request.py index 66a93354..6170354a 100644 --- a/test/test_reissue_multichain_token_request.py +++ b/test/test_reissue_multichain_token_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.reissue_multichain_token_request import ( diff --git a/test/test_related_request.py b/test/test_related_request.py index d8aae296..407fee17 100644 --- a/test/test_related_request.py +++ b/test/test_related_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.related_request import RelatedRequest diff --git a/test/test_related_transaction.py b/test/test_related_transaction.py index 1a5088da..cffa65c5 100644 --- a/test/test_related_transaction.py +++ b/test/test_related_transaction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.related_transaction import RelatedTransaction diff --git a/test/test_remove_collateral_request_body.py b/test/test_remove_collateral_request_body.py index e9fe14a0..e468cf30 100644 --- a/test/test_remove_collateral_request_body.py +++ b/test/test_remove_collateral_request_body.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.remove_collateral_request_body import RemoveCollateralRequestBody diff --git a/test/test_remove_layer_zero_adapter_failed_result.py b/test/test_remove_layer_zero_adapter_failed_result.py index 8f67841d..7ad94b69 100644 --- a/test/test_remove_layer_zero_adapter_failed_result.py +++ b/test/test_remove_layer_zero_adapter_failed_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.remove_layer_zero_adapter_failed_result import ( diff --git a/test/test_remove_layer_zero_adapters_request.py b/test/test_remove_layer_zero_adapters_request.py index dd4b5bd8..018bf0ab 100644 --- a/test/test_remove_layer_zero_adapters_request.py +++ b/test/test_remove_layer_zero_adapters_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.remove_layer_zero_adapters_request import ( diff --git a/test/test_remove_layer_zero_adapters_response.py b/test/test_remove_layer_zero_adapters_response.py index e4b11493..891dfa05 100644 --- a/test/test_remove_layer_zero_adapters_response.py +++ b/test/test_remove_layer_zero_adapters_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.remove_layer_zero_adapters_response import ( diff --git a/test/test_remove_layer_zero_peers_request.py b/test/test_remove_layer_zero_peers_request.py index 6b2303d2..cd2ea1f6 100644 --- a/test/test_remove_layer_zero_peers_request.py +++ b/test/test_remove_layer_zero_peers_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.remove_layer_zero_peers_request import ( diff --git a/test/test_remove_layer_zero_peers_response.py b/test/test_remove_layer_zero_peers_response.py index 52866c79..9f516d2f 100644 --- a/test/test_remove_layer_zero_peers_response.py +++ b/test/test_remove_layer_zero_peers_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.remove_layer_zero_peers_response import ( diff --git a/test/test_rename_connected_account_request.py b/test/test_rename_connected_account_request.py index 10b048db..a7f18a94 100644 --- a/test/test_rename_connected_account_request.py +++ b/test/test_rename_connected_account_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.rename_connected_account_request import ( diff --git a/test/test_rename_connected_account_response.py b/test/test_rename_connected_account_response.py index 8d08c3e4..800f6fd7 100644 --- a/test/test_rename_connected_account_response.py +++ b/test/test_rename_connected_account_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.rename_connected_account_response import ( diff --git a/test/test_rename_cosigner.py b/test/test_rename_cosigner.py index e975be18..c2586b05 100644 --- a/test/test_rename_cosigner.py +++ b/test/test_rename_cosigner.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.rename_cosigner import RenameCosigner diff --git a/test/test_rename_vault_account_response.py b/test/test_rename_vault_account_response.py index 1c6e2c94..b8e04ec0 100644 --- a/test/test_rename_vault_account_response.py +++ b/test/test_rename_vault_account_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.rename_vault_account_response import RenameVaultAccountResponse diff --git a/test/test_report_conflict_response.py b/test/test_report_conflict_response.py index 4407662d..46156891 100644 --- a/test/test_report_conflict_response.py +++ b/test/test_report_conflict_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.report_conflict_response import ReportConflictResponse diff --git a/test/test_report_job.py b/test/test_report_job.py index aae253f8..e5730284 100644 --- a/test/test_report_job.py +++ b/test/test_report_job.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.report_job import ReportJob diff --git a/test/test_report_job_links.py b/test/test_report_job_links.py index d9e4f953..7487bf1c 100644 --- a/test/test_report_job_links.py +++ b/test/test_report_job_links.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.report_job_links import ReportJobLinks diff --git a/test/test_report_job_response.py b/test/test_report_job_response.py index bf67a683..3e2b1fbb 100644 --- a/test/test_report_job_response.py +++ b/test/test_report_job_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.report_job_response import ReportJobResponse diff --git a/test/test_report_list_response.py b/test/test_report_list_response.py index dcf85154..fe1f809d 100644 --- a/test/test_report_list_response.py +++ b/test/test_report_list_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.report_list_response import ReportListResponse diff --git a/test/test_report_output_format.py b/test/test_report_output_format.py index 6d18c5b4..f2f4da0a 100644 --- a/test/test_report_output_format.py +++ b/test/test_report_output_format.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.report_output_format import ReportOutputFormat diff --git a/test/test_report_status.py b/test/test_report_status.py index b74a034f..f54b0256 100644 --- a/test/test_report_status.py +++ b/test/test_report_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.report_status import ReportStatus diff --git a/test/test_report_type.py b/test/test_report_type.py index 52579a0f..bae5016d 100644 --- a/test/test_report_type.py +++ b/test/test_report_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.report_type import ReportType diff --git a/test/test_reports_beta_api.py b/test/test_reports_beta_api.py index 24171f2d..e7a70368 100644 --- a/test/test_reports_beta_api.py +++ b/test/test_reports_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.reports_beta_api import ReportsBetaApi diff --git a/test/test_rescreen_transaction_request.py b/test/test_rescreen_transaction_request.py index d7a6cdb2..ae44f8fb 100644 --- a/test/test_rescreen_transaction_request.py +++ b/test/test_rescreen_transaction_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.rescreen_transaction_request import RescreenTransactionRequest diff --git a/test/test_rescreen_transaction_response.py b/test/test_rescreen_transaction_response.py index af5daf3c..1e13533b 100644 --- a/test/test_rescreen_transaction_response.py +++ b/test/test_rescreen_transaction_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.rescreen_transaction_response import RescreenTransactionResponse diff --git a/test/test_resend_by_query_request.py b/test/test_resend_by_query_request.py index 3701da71..b3c8c2be 100644 --- a/test/test_resend_by_query_request.py +++ b/test/test_resend_by_query_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.resend_by_query_request import ResendByQueryRequest diff --git a/test/test_resend_by_query_response.py b/test/test_resend_by_query_response.py index cd3abf3b..00d7e799 100644 --- a/test/test_resend_by_query_response.py +++ b/test/test_resend_by_query_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.resend_by_query_response import ResendByQueryResponse diff --git a/test/test_resend_failed_notifications_job_status_response.py b/test/test_resend_failed_notifications_job_status_response.py index c2954288..0bad15a6 100644 --- a/test/test_resend_failed_notifications_job_status_response.py +++ b/test/test_resend_failed_notifications_job_status_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.resend_failed_notifications_job_status_response import ( diff --git a/test/test_resend_failed_notifications_request.py b/test/test_resend_failed_notifications_request.py index e6dfb058..7d9ec135 100644 --- a/test/test_resend_failed_notifications_request.py +++ b/test/test_resend_failed_notifications_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.resend_failed_notifications_request import ( diff --git a/test/test_resend_failed_notifications_response.py b/test/test_resend_failed_notifications_response.py index 1ee211cd..d7b6b28d 100644 --- a/test/test_resend_failed_notifications_response.py +++ b/test/test_resend_failed_notifications_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.resend_failed_notifications_response import ( diff --git a/test/test_resend_notifications_by_resource_id_request.py b/test/test_resend_notifications_by_resource_id_request.py index 0171522c..1cfb792c 100644 --- a/test/test_resend_notifications_by_resource_id_request.py +++ b/test/test_resend_notifications_by_resource_id_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.resend_notifications_by_resource_id_request import ( diff --git a/test/test_resend_transaction_webhooks_request.py b/test/test_resend_transaction_webhooks_request.py index 6be8190f..0ae093f2 100644 --- a/test/test_resend_transaction_webhooks_request.py +++ b/test/test_resend_transaction_webhooks_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.resend_transaction_webhooks_request import ( diff --git a/test/test_resend_webhooks_by_transaction_id_response.py b/test/test_resend_webhooks_by_transaction_id_response.py index 8b828639..f449ecdb 100644 --- a/test/test_resend_webhooks_by_transaction_id_response.py +++ b/test/test_resend_webhooks_by_transaction_id_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.resend_webhooks_by_transaction_id_response import ( diff --git a/test/test_resend_webhooks_response.py b/test/test_resend_webhooks_response.py index 4998c17e..3668629b 100644 --- a/test/test_resend_webhooks_response.py +++ b/test/test_resend_webhooks_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.resend_webhooks_response import ResendWebhooksResponse diff --git a/test/test_reset_device_api.py b/test/test_reset_device_api.py index 2572b150..b382983b 100644 --- a/test/test_reset_device_api.py +++ b/test/test_reset_device_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.reset_device_api import ResetDeviceApi diff --git a/test/test_respond_to_connection_request.py b/test/test_respond_to_connection_request.py index fa47883e..ea594228 100644 --- a/test/test_respond_to_connection_request.py +++ b/test/test_respond_to_connection_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.respond_to_connection_request import RespondToConnectionRequest diff --git a/test/test_retry_requote_request_details.py b/test/test_retry_requote_request_details.py index 1074aa52..ceb3a659 100644 --- a/test/test_retry_requote_request_details.py +++ b/test/test_retry_requote_request_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.retry_requote_request_details import RetryRequoteRequestDetails diff --git a/test/test_retry_requote_type_enum.py b/test/test_retry_requote_type_enum.py index 61bf53be..911ee819 100644 --- a/test/test_retry_requote_type_enum.py +++ b/test/test_retry_requote_type_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.retry_requote_type_enum import RetryRequoteTypeEnum diff --git a/test/test_reward_info.py b/test/test_reward_info.py index 8270d0d9..b85bd87f 100644 --- a/test/test_reward_info.py +++ b/test/test_reward_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.reward_info import RewardInfo diff --git a/test/test_rewards_info.py b/test/test_rewards_info.py index 544b6714..04fec672 100644 --- a/test/test_rewards_info.py +++ b/test/test_rewards_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.rewards_info import RewardsInfo diff --git a/test/test_role_details.py b/test/test_role_details.py index fe2bcc3e..8f2f0705 100644 --- a/test/test_role_details.py +++ b/test/test_role_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.role_details import RoleDetails diff --git a/test/test_role_details2.py b/test/test_role_details2.py index b3683c92..0cf931b9 100644 --- a/test/test_role_details2.py +++ b/test/test_role_details2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.role_details2 import RoleDetails2 diff --git a/test/test_role_grantee.py b/test/test_role_grantee.py index d5075389..601bafb0 100644 --- a/test/test_role_grantee.py +++ b/test/test_role_grantee.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.role_grantee import RoleGrantee diff --git a/test/test_save_automation_settings_response.py b/test/test_save_automation_settings_response.py index 9b194533..8dc66822 100644 --- a/test/test_save_automation_settings_response.py +++ b/test/test_save_automation_settings_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.save_automation_settings_response import ( diff --git a/test/test_scope_item.py b/test/test_scope_item.py index f146cb1c..6131a45a 100644 --- a/test/test_scope_item.py +++ b/test/test_scope_item.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.scope_item import ScopeItem diff --git a/test/test_scope_item_failure.py b/test/test_scope_item_failure.py index d86b24d0..b55ded5d 100644 --- a/test/test_scope_item_failure.py +++ b/test/test_scope_item_failure.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.scope_item_failure import ScopeItemFailure diff --git a/test/test_screening_alert_exposure_type_enum.py b/test/test_screening_alert_exposure_type_enum.py index f9eb0404..aca45bf9 100644 --- a/test/test_screening_alert_exposure_type_enum.py +++ b/test/test_screening_alert_exposure_type_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_alert_exposure_type_enum import ( diff --git a/test/test_screening_aml_alert.py b/test/test_screening_aml_alert.py index b23b5575..cf3178a9 100644 --- a/test/test_screening_aml_alert.py +++ b/test/test_screening_aml_alert.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_aml_alert import ScreeningAmlAlert diff --git a/test/test_screening_aml_matched_rule.py b/test/test_screening_aml_matched_rule.py index 38ed60c2..09945a9e 100644 --- a/test/test_screening_aml_matched_rule.py +++ b/test/test_screening_aml_matched_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_aml_matched_rule import ScreeningAmlMatchedRule diff --git a/test/test_screening_aml_result.py b/test/test_screening_aml_result.py index 73d13c4f..e5ea430e 100644 --- a/test/test_screening_aml_result.py +++ b/test/test_screening_aml_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_aml_result import ScreeningAmlResult diff --git a/test/test_screening_configurations_request.py b/test/test_screening_configurations_request.py index 2104775a..06e82625 100644 --- a/test/test_screening_configurations_request.py +++ b/test/test_screening_configurations_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_configurations_request import ( diff --git a/test/test_screening_metadata_config.py b/test/test_screening_metadata_config.py index d0aaf007..11839ddc 100644 --- a/test/test_screening_metadata_config.py +++ b/test/test_screening_metadata_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_metadata_config import ScreeningMetadataConfig diff --git a/test/test_screening_operation_execution.py b/test/test_screening_operation_execution.py index 41548e7f..103976e1 100644 --- a/test/test_screening_operation_execution.py +++ b/test/test_screening_operation_execution.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_operation_execution import ScreeningOperationExecution diff --git a/test/test_screening_operation_execution_output.py b/test/test_screening_operation_execution_output.py index 8b4186db..1060bc48 100644 --- a/test/test_screening_operation_execution_output.py +++ b/test/test_screening_operation_execution_output.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_operation_execution_output import ( diff --git a/test/test_screening_operation_failure.py b/test/test_screening_operation_failure.py index c62935d9..79783a94 100644 --- a/test/test_screening_operation_failure.py +++ b/test/test_screening_operation_failure.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_operation_failure import ScreeningOperationFailure diff --git a/test/test_screening_operation_type.py b/test/test_screening_operation_type.py index d5d0e297..9d1bd487 100644 --- a/test/test_screening_operation_type.py +++ b/test/test_screening_operation_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_operation_type import ScreeningOperationType diff --git a/test/test_screening_policy_amount.py b/test/test_screening_policy_amount.py index 76099c45..9a038fd2 100644 --- a/test/test_screening_policy_amount.py +++ b/test/test_screening_policy_amount.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_policy_amount import ScreeningPolicyAmount diff --git a/test/test_screening_policy_amount_range.py b/test/test_screening_policy_amount_range.py index 4889e782..7eeee9c4 100644 --- a/test/test_screening_policy_amount_range.py +++ b/test/test_screening_policy_amount_range.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_policy_amount_range import ScreeningPolicyAmountRange diff --git a/test/test_screening_policy_currency.py b/test/test_screening_policy_currency.py index abc14c59..6c38cefc 100644 --- a/test/test_screening_policy_currency.py +++ b/test/test_screening_policy_currency.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_policy_currency import ScreeningPolicyCurrency diff --git a/test/test_screening_policy_response.py b/test/test_screening_policy_response.py index bf5c88c0..e7a684ab 100644 --- a/test/test_screening_policy_response.py +++ b/test/test_screening_policy_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_policy_response import ScreeningPolicyResponse diff --git a/test/test_screening_provider_rules_configuration_response.py b/test/test_screening_provider_rules_configuration_response.py index 61da48cc..ba359f53 100644 --- a/test/test_screening_provider_rules_configuration_response.py +++ b/test/test_screening_provider_rules_configuration_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_provider_rules_configuration_response import ( diff --git a/test/test_screening_status_enum.py b/test/test_screening_status_enum.py index e2c6b3dc..058f9982 100644 --- a/test/test_screening_status_enum.py +++ b/test/test_screening_status_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_status_enum import ScreeningStatusEnum diff --git a/test/test_screening_tr_link_amount.py b/test/test_screening_tr_link_amount.py index 2396b2cf..599c6600 100644 --- a/test/test_screening_tr_link_amount.py +++ b/test/test_screening_tr_link_amount.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_tr_link_amount import ScreeningTRLinkAmount diff --git a/test/test_screening_tr_link_missing_trm_decision.py b/test/test_screening_tr_link_missing_trm_decision.py index ebac6ba5..92fe1be3 100644 --- a/test/test_screening_tr_link_missing_trm_decision.py +++ b/test/test_screening_tr_link_missing_trm_decision.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_tr_link_missing_trm_decision import ( diff --git a/test/test_screening_tr_link_missing_trm_rule.py b/test/test_screening_tr_link_missing_trm_rule.py index d6d957b7..ef2a001f 100644 --- a/test/test_screening_tr_link_missing_trm_rule.py +++ b/test/test_screening_tr_link_missing_trm_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_tr_link_missing_trm_rule import ( diff --git a/test/test_screening_tr_link_post_screening_rule.py b/test/test_screening_tr_link_post_screening_rule.py index d029ebbc..7938ccd5 100644 --- a/test/test_screening_tr_link_post_screening_rule.py +++ b/test/test_screening_tr_link_post_screening_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_tr_link_post_screening_rule import ( diff --git a/test/test_screening_tr_link_prescreening_rule.py b/test/test_screening_tr_link_prescreening_rule.py index d5ea92f8..46a89edd 100644 --- a/test/test_screening_tr_link_prescreening_rule.py +++ b/test/test_screening_tr_link_prescreening_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_tr_link_prescreening_rule import ( diff --git a/test/test_screening_tr_link_rule_base.py b/test/test_screening_tr_link_rule_base.py index cd4f85f8..5149ee86 100644 --- a/test/test_screening_tr_link_rule_base.py +++ b/test/test_screening_tr_link_rule_base.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_tr_link_rule_base import ScreeningTRLinkRuleBase diff --git a/test/test_screening_travel_rule_matched_rule.py b/test/test_screening_travel_rule_matched_rule.py index e7328db9..f48fa605 100644 --- a/test/test_screening_travel_rule_matched_rule.py +++ b/test/test_screening_travel_rule_matched_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_travel_rule_matched_rule import ( diff --git a/test/test_screening_travel_rule_prescreening_rule.py b/test/test_screening_travel_rule_prescreening_rule.py index c1982dc2..35cec008 100644 --- a/test/test_screening_travel_rule_prescreening_rule.py +++ b/test/test_screening_travel_rule_prescreening_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_travel_rule_prescreening_rule import ( diff --git a/test/test_screening_travel_rule_result.py b/test/test_screening_travel_rule_result.py index 49e3bd2a..1893c4cd 100644 --- a/test/test_screening_travel_rule_result.py +++ b/test/test_screening_travel_rule_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_travel_rule_result import ScreeningTravelRuleResult diff --git a/test/test_screening_update_configurations.py b/test/test_screening_update_configurations.py index ef763341..c8650fa4 100644 --- a/test/test_screening_update_configurations.py +++ b/test/test_screening_update_configurations.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_update_configurations import ( diff --git a/test/test_screening_validation_failure.py b/test/test_screening_validation_failure.py index e07fdf56..dd413ae6 100644 --- a/test/test_screening_validation_failure.py +++ b/test/test_screening_validation_failure.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_validation_failure import ScreeningValidationFailure diff --git a/test/test_screening_verdict.py b/test/test_screening_verdict.py index 037b2174..101490ed 100644 --- a/test/test_screening_verdict.py +++ b/test/test_screening_verdict.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_verdict import ScreeningVerdict diff --git a/test/test_screening_verdict_enum.py b/test/test_screening_verdict_enum.py index a9274de9..43b4c781 100644 --- a/test/test_screening_verdict_enum.py +++ b/test/test_screening_verdict_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_verdict_enum import ScreeningVerdictEnum diff --git a/test/test_screening_verdict_matched_rule.py b/test/test_screening_verdict_matched_rule.py index a0721971..a964a8f9 100644 --- a/test/test_screening_verdict_matched_rule.py +++ b/test/test_screening_verdict_matched_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.screening_verdict_matched_rule import ScreeningVerdictMatchedRule diff --git a/test/test_search_network_ids_response.py b/test/test_search_network_ids_response.py index 3c0c9bfe..a0998275 100644 --- a/test/test_search_network_ids_response.py +++ b/test/test_search_network_ids_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.search_network_ids_response import SearchNetworkIdsResponse diff --git a/test/test_sepa_address.py b/test/test_sepa_address.py index 7b9f99f0..9887e9c4 100644 --- a/test/test_sepa_address.py +++ b/test/test_sepa_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.sepa_address import SEPAAddress diff --git a/test/test_sepa_destination.py b/test/test_sepa_destination.py index 526a3762..4567264d 100644 --- a/test/test_sepa_destination.py +++ b/test/test_sepa_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.sepa_destination import SEPADestination diff --git a/test/test_sepa_payment_info.py b/test/test_sepa_payment_info.py index e9b98198..9aa9242a 100644 --- a/test/test_sepa_payment_info.py +++ b/test/test_sepa_payment_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.sepa_payment_info import SepaPaymentInfo diff --git a/test/test_session_dto.py b/test/test_session_dto.py index 8622c059..69b1ea76 100644 --- a/test/test_session_dto.py +++ b/test/test_session_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.session_dto import SessionDTO diff --git a/test/test_session_metadata.py b/test/test_session_metadata.py index 5d4a3aaf..0e7a6ccc 100644 --- a/test/test_session_metadata.py +++ b/test/test_session_metadata.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.session_metadata import SessionMetadata diff --git a/test/test_set_admin_quorum_threshold_request.py b/test/test_set_admin_quorum_threshold_request.py index 41946c5e..f88eaabe 100644 --- a/test/test_set_admin_quorum_threshold_request.py +++ b/test/test_set_admin_quorum_threshold_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_admin_quorum_threshold_request import ( diff --git a/test/test_set_admin_quorum_threshold_response.py b/test/test_set_admin_quorum_threshold_response.py index e188cc5a..d04af4b6 100644 --- a/test/test_set_admin_quorum_threshold_response.py +++ b/test/test_set_admin_quorum_threshold_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_admin_quorum_threshold_response import ( diff --git a/test/test_set_asset_price_request.py b/test/test_set_asset_price_request.py index a9ef470e..b8c63772 100644 --- a/test/test_set_asset_price_request.py +++ b/test/test_set_asset_price_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_asset_price_request import SetAssetPriceRequest diff --git a/test/test_set_auto_fuel_request.py b/test/test_set_auto_fuel_request.py index c8f039a4..f6dd2d51 100644 --- a/test/test_set_auto_fuel_request.py +++ b/test/test_set_auto_fuel_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_auto_fuel_request import SetAutoFuelRequest diff --git a/test/test_set_confirmations_threshold_request.py b/test/test_set_confirmations_threshold_request.py index ae7f130b..4ea945e4 100644 --- a/test/test_set_confirmations_threshold_request.py +++ b/test/test_set_confirmations_threshold_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_confirmations_threshold_request import ( diff --git a/test/test_set_confirmations_threshold_response.py b/test/test_set_confirmations_threshold_response.py index a873e1bd..36fee05b 100644 --- a/test/test_set_confirmations_threshold_response.py +++ b/test/test_set_confirmations_threshold_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_confirmations_threshold_response import ( diff --git a/test/test_set_customer_ref_id_for_address_request.py b/test/test_set_customer_ref_id_for_address_request.py index 5ad450d6..27115732 100644 --- a/test/test_set_customer_ref_id_for_address_request.py +++ b/test/test_set_customer_ref_id_for_address_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_customer_ref_id_for_address_request import ( diff --git a/test/test_set_customer_ref_id_request.py b/test/test_set_customer_ref_id_request.py index 9e12bc2e..58de39bc 100644 --- a/test/test_set_customer_ref_id_request.py +++ b/test/test_set_customer_ref_id_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_customer_ref_id_request import SetCustomerRefIdRequest diff --git a/test/test_set_layer_zero_dvn_config_request.py b/test/test_set_layer_zero_dvn_config_request.py index 5811920b..2678786a 100644 --- a/test/test_set_layer_zero_dvn_config_request.py +++ b/test/test_set_layer_zero_dvn_config_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_layer_zero_dvn_config_request import ( diff --git a/test/test_set_layer_zero_dvn_config_response.py b/test/test_set_layer_zero_dvn_config_response.py index d767c791..16eb5156 100644 --- a/test/test_set_layer_zero_dvn_config_response.py +++ b/test/test_set_layer_zero_dvn_config_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_layer_zero_dvn_config_response import ( diff --git a/test/test_set_layer_zero_peers_request.py b/test/test_set_layer_zero_peers_request.py index 2b81e7c6..9d642c96 100644 --- a/test/test_set_layer_zero_peers_request.py +++ b/test/test_set_layer_zero_peers_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_layer_zero_peers_request import SetLayerZeroPeersRequest diff --git a/test/test_set_layer_zero_peers_response.py b/test/test_set_layer_zero_peers_response.py index 1cee00c1..ea700a58 100644 --- a/test/test_set_layer_zero_peers_response.py +++ b/test/test_set_layer_zero_peers_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_layer_zero_peers_response import SetLayerZeroPeersResponse diff --git a/test/test_set_network_id_discoverability_request.py b/test/test_set_network_id_discoverability_request.py index 5aa1c38c..e60638bc 100644 --- a/test/test_set_network_id_discoverability_request.py +++ b/test/test_set_network_id_discoverability_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_network_id_discoverability_request import ( diff --git a/test/test_set_network_id_name_request.py b/test/test_set_network_id_name_request.py index 07bee337..6ffa73c0 100644 --- a/test/test_set_network_id_name_request.py +++ b/test/test_set_network_id_name_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_network_id_name_request import SetNetworkIdNameRequest diff --git a/test/test_set_network_id_response.py b/test/test_set_network_id_response.py index d7dd3400..8b80fe49 100644 --- a/test/test_set_network_id_response.py +++ b/test/test_set_network_id_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_network_id_response import SetNetworkIdResponse diff --git a/test/test_set_network_id_routing_policy_request.py b/test/test_set_network_id_routing_policy_request.py index 19a253c6..bdc0636d 100644 --- a/test/test_set_network_id_routing_policy_request.py +++ b/test/test_set_network_id_routing_policy_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_network_id_routing_policy_request import ( diff --git a/test/test_set_ota_status_request.py b/test/test_set_ota_status_request.py index 3a2b69fc..e62ec97d 100644 --- a/test/test_set_ota_status_request.py +++ b/test/test_set_ota_status_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_ota_status_request import SetOtaStatusRequest diff --git a/test/test_set_ota_status_response.py b/test/test_set_ota_status_response.py index 6af3e6ae..0d30da27 100644 --- a/test/test_set_ota_status_response.py +++ b/test/test_set_ota_status_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_ota_status_response import SetOtaStatusResponse diff --git a/test/test_set_ota_status_response_one_of.py b/test/test_set_ota_status_response_one_of.py index 2fcaa877..d1353f61 100644 --- a/test/test_set_ota_status_response_one_of.py +++ b/test/test_set_ota_status_response_one_of.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_ota_status_response_one_of import SetOtaStatusResponseOneOf diff --git a/test/test_set_routing_policy_request.py b/test/test_set_routing_policy_request.py index 651412fb..358cdd90 100644 --- a/test/test_set_routing_policy_request.py +++ b/test/test_set_routing_policy_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_routing_policy_request import SetRoutingPolicyRequest diff --git a/test/test_set_routing_policy_response.py b/test/test_set_routing_policy_response.py index 6efdfe05..40008fa5 100644 --- a/test/test_set_routing_policy_response.py +++ b/test/test_set_routing_policy_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.set_routing_policy_response import SetRoutingPolicyResponse diff --git a/test/test_settlement.py b/test/test_settlement.py index 49c47834..e9657974 100644 --- a/test/test_settlement.py +++ b/test/test_settlement.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.settlement import Settlement diff --git a/test/test_settlement_request_body.py b/test/test_settlement_request_body.py index e8694b18..c90240d2 100644 --- a/test/test_settlement_request_body.py +++ b/test/test_settlement_request_body.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.settlement_request_body import SettlementRequestBody diff --git a/test/test_settlement_response.py b/test/test_settlement_response.py index 4ef48dcd..101fc024 100644 --- a/test/test_settlement_response.py +++ b/test/test_settlement_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.settlement_response import SettlementResponse diff --git a/test/test_settlement_source_account.py b/test/test_settlement_source_account.py index a6b849cc..a9ea0847 100644 --- a/test/test_settlement_source_account.py +++ b/test/test_settlement_source_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.settlement_source_account import SettlementSourceAccount diff --git a/test/test_settlement_type_enum.py b/test/test_settlement_type_enum.py index 940ff287..52c12f81 100644 --- a/test/test_settlement_type_enum.py +++ b/test/test_settlement_type_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.settlement_type_enum import SettlementTypeEnum diff --git a/test/test_side.py b/test/test_side.py index 00fc8c7d..58ad8081 100644 --- a/test/test_side.py +++ b/test/test_side.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.side import Side diff --git a/test/test_signed_message.py b/test/test_signed_message.py index 7ba9202c..98b95672 100644 --- a/test/test_signed_message.py +++ b/test/test_signed_message.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.signed_message import SignedMessage diff --git a/test/test_signed_message_signature.py b/test/test_signed_message_signature.py index ddb0f16f..e5de2733 100644 --- a/test/test_signed_message_signature.py +++ b/test/test_signed_message_signature.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.signed_message_signature import SignedMessageSignature diff --git a/test/test_signing_key_dto.py b/test/test_signing_key_dto.py index c085e1a5..c238c319 100644 --- a/test/test_signing_key_dto.py +++ b/test/test_signing_key_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.signing_key_dto import SigningKeyDto diff --git a/test/test_smart_transfer_api.py b/test/test_smart_transfer_api.py index fd5a6ca7..1e489920 100644 --- a/test/test_smart_transfer_api.py +++ b/test/test_smart_transfer_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.smart_transfer_api import SmartTransferApi diff --git a/test/test_smart_transfer_approve_term.py b/test/test_smart_transfer_approve_term.py index 318ede4a..1f7e8024 100644 --- a/test/test_smart_transfer_approve_term.py +++ b/test/test_smart_transfer_approve_term.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_approve_term import SmartTransferApproveTerm diff --git a/test/test_smart_transfer_bad_request_response.py b/test/test_smart_transfer_bad_request_response.py index 800a5ee0..0e04edb9 100644 --- a/test/test_smart_transfer_bad_request_response.py +++ b/test/test_smart_transfer_bad_request_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_bad_request_response import ( diff --git a/test/test_smart_transfer_coin_statistic.py b/test/test_smart_transfer_coin_statistic.py index 0db2472c..68bbbaf8 100644 --- a/test/test_smart_transfer_coin_statistic.py +++ b/test/test_smart_transfer_coin_statistic.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_coin_statistic import SmartTransferCoinStatistic diff --git a/test/test_smart_transfer_create_ticket.py b/test/test_smart_transfer_create_ticket.py index ab1a237b..592d0019 100644 --- a/test/test_smart_transfer_create_ticket.py +++ b/test/test_smart_transfer_create_ticket.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_create_ticket import SmartTransferCreateTicket diff --git a/test/test_smart_transfer_create_ticket_term.py b/test/test_smart_transfer_create_ticket_term.py index a0e98166..368be72b 100644 --- a/test/test_smart_transfer_create_ticket_term.py +++ b/test/test_smart_transfer_create_ticket_term.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_create_ticket_term import ( diff --git a/test/test_smart_transfer_forbidden_response.py b/test/test_smart_transfer_forbidden_response.py index 751f8006..c57231c9 100644 --- a/test/test_smart_transfer_forbidden_response.py +++ b/test/test_smart_transfer_forbidden_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_forbidden_response import ( diff --git a/test/test_smart_transfer_fund_dvp_ticket.py b/test/test_smart_transfer_fund_dvp_ticket.py index f98336da..5a6e1143 100644 --- a/test/test_smart_transfer_fund_dvp_ticket.py +++ b/test/test_smart_transfer_fund_dvp_ticket.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_fund_dvp_ticket import SmartTransferFundDvpTicket diff --git a/test/test_smart_transfer_fund_term.py b/test/test_smart_transfer_fund_term.py index 209bc130..9761b9af 100644 --- a/test/test_smart_transfer_fund_term.py +++ b/test/test_smart_transfer_fund_term.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_fund_term import SmartTransferFundTerm diff --git a/test/test_smart_transfer_manually_fund_term.py b/test/test_smart_transfer_manually_fund_term.py index 59e4cef4..d2614960 100644 --- a/test/test_smart_transfer_manually_fund_term.py +++ b/test/test_smart_transfer_manually_fund_term.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_manually_fund_term import ( diff --git a/test/test_smart_transfer_not_found_response.py b/test/test_smart_transfer_not_found_response.py index a54cd5c0..91865736 100644 --- a/test/test_smart_transfer_not_found_response.py +++ b/test/test_smart_transfer_not_found_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_not_found_response import ( diff --git a/test/test_smart_transfer_set_ticket_expiration.py b/test/test_smart_transfer_set_ticket_expiration.py index e9783e7c..bea7d348 100644 --- a/test/test_smart_transfer_set_ticket_expiration.py +++ b/test/test_smart_transfer_set_ticket_expiration.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_set_ticket_expiration import ( diff --git a/test/test_smart_transfer_set_ticket_external_id.py b/test/test_smart_transfer_set_ticket_external_id.py index 2e954508..4aba5ec5 100644 --- a/test/test_smart_transfer_set_ticket_external_id.py +++ b/test/test_smart_transfer_set_ticket_external_id.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_set_ticket_external_id import ( diff --git a/test/test_smart_transfer_set_user_groups.py b/test/test_smart_transfer_set_user_groups.py index f53654c7..fc284e55 100644 --- a/test/test_smart_transfer_set_user_groups.py +++ b/test/test_smart_transfer_set_user_groups.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_set_user_groups import SmartTransferSetUserGroups diff --git a/test/test_smart_transfer_statistic.py b/test/test_smart_transfer_statistic.py index cd5099f2..74a491aa 100644 --- a/test/test_smart_transfer_statistic.py +++ b/test/test_smart_transfer_statistic.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_statistic import SmartTransferStatistic diff --git a/test/test_smart_transfer_statistic_inflow.py b/test/test_smart_transfer_statistic_inflow.py index 3e35885f..03a918e6 100644 --- a/test/test_smart_transfer_statistic_inflow.py +++ b/test/test_smart_transfer_statistic_inflow.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_statistic_inflow import ( diff --git a/test/test_smart_transfer_statistic_outflow.py b/test/test_smart_transfer_statistic_outflow.py index d2e1a78e..42d74959 100644 --- a/test/test_smart_transfer_statistic_outflow.py +++ b/test/test_smart_transfer_statistic_outflow.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_statistic_outflow import ( diff --git a/test/test_smart_transfer_submit_ticket.py b/test/test_smart_transfer_submit_ticket.py index 246491e9..e499617f 100644 --- a/test/test_smart_transfer_submit_ticket.py +++ b/test/test_smart_transfer_submit_ticket.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_submit_ticket import SmartTransferSubmitTicket diff --git a/test/test_smart_transfer_ticket.py b/test/test_smart_transfer_ticket.py index 4467e8c8..88a2f03c 100644 --- a/test/test_smart_transfer_ticket.py +++ b/test/test_smart_transfer_ticket.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_ticket import SmartTransferTicket diff --git a/test/test_smart_transfer_ticket_filtered_response.py b/test/test_smart_transfer_ticket_filtered_response.py index 7c7c2708..2c5cca4c 100644 --- a/test/test_smart_transfer_ticket_filtered_response.py +++ b/test/test_smart_transfer_ticket_filtered_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_ticket_filtered_response import ( diff --git a/test/test_smart_transfer_ticket_response.py b/test/test_smart_transfer_ticket_response.py index bef9c4a6..209bd405 100644 --- a/test/test_smart_transfer_ticket_response.py +++ b/test/test_smart_transfer_ticket_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_ticket_response import SmartTransferTicketResponse diff --git a/test/test_smart_transfer_ticket_term.py b/test/test_smart_transfer_ticket_term.py index 9644a233..81dc364a 100644 --- a/test/test_smart_transfer_ticket_term.py +++ b/test/test_smart_transfer_ticket_term.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_ticket_term import SmartTransferTicketTerm diff --git a/test/test_smart_transfer_ticket_term_response.py b/test/test_smart_transfer_ticket_term_response.py index b3cbe014..71025ba2 100644 --- a/test/test_smart_transfer_ticket_term_response.py +++ b/test/test_smart_transfer_ticket_term_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_ticket_term_response import ( diff --git a/test/test_smart_transfer_update_ticket_term.py b/test/test_smart_transfer_update_ticket_term.py index e24c2baa..b57726d3 100644 --- a/test/test_smart_transfer_update_ticket_term.py +++ b/test/test_smart_transfer_update_ticket_term.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_update_ticket_term import ( diff --git a/test/test_smart_transfer_user_groups.py b/test/test_smart_transfer_user_groups.py index 6c578735..7823e278 100644 --- a/test/test_smart_transfer_user_groups.py +++ b/test/test_smart_transfer_user_groups.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_user_groups import SmartTransferUserGroups diff --git a/test/test_smart_transfer_user_groups_response.py b/test/test_smart_transfer_user_groups_response.py index 9500fb76..3053c851 100644 --- a/test/test_smart_transfer_user_groups_response.py +++ b/test/test_smart_transfer_user_groups_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.smart_transfer_user_groups_response import ( diff --git a/test/test_sol_account.py b/test/test_sol_account.py index 196e7213..7ff18cbd 100644 --- a/test/test_sol_account.py +++ b/test/test_sol_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.sol_account import SOLAccount diff --git a/test/test_sol_account_with_value.py b/test/test_sol_account_with_value.py index 558946de..bfa86460 100644 --- a/test/test_sol_account_with_value.py +++ b/test/test_sol_account_with_value.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.sol_account_with_value import SOLAccountWithValue diff --git a/test/test_sol_parameter.py b/test/test_sol_parameter.py index 745febf3..c92f8284 100644 --- a/test/test_sol_parameter.py +++ b/test/test_sol_parameter.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.sol_parameter import SolParameter diff --git a/test/test_sol_parameter_with_value.py b/test/test_sol_parameter_with_value.py index ff809e11..a5b16cad 100644 --- a/test/test_sol_parameter_with_value.py +++ b/test/test_sol_parameter_with_value.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.sol_parameter_with_value import SolParameterWithValue diff --git a/test/test_solana_blockchain_data.py b/test/test_solana_blockchain_data.py index 53233ede..3c44d827 100644 --- a/test/test_solana_blockchain_data.py +++ b/test/test_solana_blockchain_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.solana_blockchain_data import SolanaBlockchainData @@ -39,7 +38,7 @@ def make_instance(self, include_optional) -> SolanaBlockchainData: return SolanaBlockchainData( stake_account_address = '3Ru67FyzMTcdENmmRL4Eve4dtPd6AdpuypR21q5EQCdq', stake_account_derivation_change_value = 7, - rewards_breakdown = {"issuance":"0.000856038","mev":"0.000123456","lastRewardSyncedAt":"2023-07-13T15:55:34.256Z"} + rewards_breakdown = {"inflation":"0.000856038","mev":"0.000123456","lastRewardSyncedAt":"2023-07-13T15:55:34.256Z"} ) else: return SolanaBlockchainData( diff --git a/test/test_solana_config.py b/test/test_solana_config.py index 7153d700..10815e43 100644 --- a/test/test_solana_config.py +++ b/test/test_solana_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.solana_config import SolanaConfig diff --git a/test/test_solana_instruction.py b/test/test_solana_instruction.py index 773d5bd9..f4415fc1 100644 --- a/test/test_solana_instruction.py +++ b/test/test_solana_instruction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.solana_instruction import SolanaInstruction diff --git a/test/test_solana_instruction_with_value.py b/test/test_solana_instruction_with_value.py index 7f96609d..b4109152 100644 --- a/test/test_solana_instruction_with_value.py +++ b/test/test_solana_instruction_with_value.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.solana_instruction_with_value import SolanaInstructionWithValue diff --git a/test/test_solana_rewards_breakdown.py b/test/test_solana_rewards_breakdown.py index 0c4ad4c2..b2b2edf6 100644 --- a/test/test_solana_rewards_breakdown.py +++ b/test/test_solana_rewards_breakdown.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.solana_rewards_breakdown import SolanaRewardsBreakdown @@ -37,13 +36,13 @@ def make_instance(self, include_optional) -> SolanaRewardsBreakdown: model = SolanaRewardsBreakdown() if include_optional: return SolanaRewardsBreakdown( - issuance = '0.000856038', + inflation = '0.000856038', mev = '0.000123456', last_reward_synced_at = '2023-07-13T15:55:34.256Z' ) else: return SolanaRewardsBreakdown( - issuance = '0.000856038', + inflation = '0.000856038', mev = '0.000123456', last_reward_synced_at = '2023-07-13T15:55:34.256Z', ) diff --git a/test/test_solana_simple_create_params.py b/test/test_solana_simple_create_params.py index 2bf65e58..0094d1d4 100644 --- a/test/test_solana_simple_create_params.py +++ b/test/test_solana_simple_create_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.solana_simple_create_params import SolanaSimpleCreateParams diff --git a/test/test_source_config.py b/test/test_source_config.py index 419750a4..9694004d 100644 --- a/test/test_source_config.py +++ b/test/test_source_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.source_config import SourceConfig diff --git a/test/test_source_of_funds.py b/test/test_source_of_funds.py index bc42d5bc..a001f8a9 100644 --- a/test/test_source_of_funds.py +++ b/test/test_source_of_funds.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.source_of_funds import SourceOfFunds diff --git a/test/test_source_transfer_peer_path.py b/test/test_source_transfer_peer_path.py index 719983ae..46c644a7 100644 --- a/test/test_source_transfer_peer_path.py +++ b/test/test_source_transfer_peer_path.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.source_transfer_peer_path import SourceTransferPeerPath diff --git a/test/test_source_transfer_peer_path_response.py b/test/test_source_transfer_peer_path_response.py index 630add48..46a80528 100644 --- a/test/test_source_transfer_peer_path_response.py +++ b/test/test_source_transfer_peer_path_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.source_transfer_peer_path_response import ( diff --git a/test/test_spam_ownership_response.py b/test/test_spam_ownership_response.py index 7090599d..7b437602 100644 --- a/test/test_spam_ownership_response.py +++ b/test/test_spam_ownership_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.spam_ownership_response import SpamOwnershipResponse diff --git a/test/test_spam_token_response.py b/test/test_spam_token_response.py index a542e720..7e5b5f56 100644 --- a/test/test_spam_token_response.py +++ b/test/test_spam_token_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.spam_token_response import SpamTokenResponse diff --git a/test/test_spei_address.py b/test/test_spei_address.py index b8478205..a73ff5db 100644 --- a/test/test_spei_address.py +++ b/test/test_spei_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.spei_address import SpeiAddress diff --git a/test/test_spei_advanced_payment_info.py b/test/test_spei_advanced_payment_info.py index cf13afa3..b1cc32d4 100644 --- a/test/test_spei_advanced_payment_info.py +++ b/test/test_spei_advanced_payment_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.spei_advanced_payment_info import SpeiAdvancedPaymentInfo diff --git a/test/test_spei_basic_payment_info.py b/test/test_spei_basic_payment_info.py index 4dfe3a50..36564612 100644 --- a/test/test_spei_basic_payment_info.py +++ b/test/test_spei_basic_payment_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.spei_basic_payment_info import SpeiBasicPaymentInfo diff --git a/test/test_spei_destination.py b/test/test_spei_destination.py index 22c8a37c..8b73f942 100644 --- a/test/test_spei_destination.py +++ b/test/test_spei_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.spei_destination import SpeiDestination diff --git a/test/test_split_request.py b/test/test_split_request.py index be8ee3d8..fcbaf447 100644 --- a/test/test_split_request.py +++ b/test/test_split_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.split_request import SplitRequest diff --git a/test/test_split_response.py b/test/test_split_response.py index a7f0f2cf..9c204d86 100644 --- a/test/test_split_response.py +++ b/test/test_split_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.split_response import SplitResponse diff --git a/test/test_st_eth_blockchain_data.py b/test/test_st_eth_blockchain_data.py index c20068eb..2137e7ea 100644 --- a/test/test_st_eth_blockchain_data.py +++ b/test/test_st_eth_blockchain_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.st_eth_blockchain_data import StEthBlockchainData diff --git a/test/test_stake_request.py b/test/test_stake_request.py index a875a965..432a86d8 100644 --- a/test/test_stake_request.py +++ b/test/test_stake_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.stake_request import StakeRequest diff --git a/test/test_stake_response.py b/test/test_stake_response.py index 6f2b06d6..46ed1613 100644 --- a/test/test_stake_response.py +++ b/test/test_stake_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.stake_response import StakeResponse diff --git a/test/test_staking_api.py b/test/test_staking_api.py index 4a6ba5c8..ae7bb408 100644 --- a/test/test_staking_api.py +++ b/test/test_staking_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.staking_api import StakingApi diff --git a/test/test_staking_error_schema.py b/test/test_staking_error_schema.py index 46258c64..e11a49b0 100644 --- a/test/test_staking_error_schema.py +++ b/test/test_staking_error_schema.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.staking_error_schema import StakingErrorSchema diff --git a/test/test_staking_position_related_transactions_paginated_response.py b/test/test_staking_position_related_transactions_paginated_response.py index eb58e212..915ceba9 100644 --- a/test/test_staking_position_related_transactions_paginated_response.py +++ b/test/test_staking_position_related_transactions_paginated_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.staking_position_related_transactions_paginated_response import ( diff --git a/test/test_staking_positions_paginated_response.py b/test/test_staking_positions_paginated_response.py index e3969577..0d752db9 100644 --- a/test/test_staking_positions_paginated_response.py +++ b/test/test_staking_positions_paginated_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.staking_positions_paginated_response import ( diff --git a/test/test_staking_provider.py b/test/test_staking_provider.py index 3476b9d0..d0954fb0 100644 --- a/test/test_staking_provider.py +++ b/test/test_staking_provider.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.staking_provider import StakingProvider diff --git a/test/test_status.py b/test/test_status.py index 0fce7cdd..9a852366 100644 --- a/test/test_status.py +++ b/test/test_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.status import Status diff --git a/test/test_stellar_ripple_create_params_dto.py b/test/test_stellar_ripple_create_params_dto.py index fcd1f51b..1420cdac 100644 --- a/test/test_stellar_ripple_create_params_dto.py +++ b/test/test_stellar_ripple_create_params_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.stellar_ripple_create_params_dto import ( diff --git a/test/test_submit_order_requirement_request.py b/test/test_submit_order_requirement_request.py index 1c2af84e..0acbd3a2 100644 --- a/test/test_submit_order_requirement_request.py +++ b/test/test_submit_order_requirement_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.submit_order_requirement_request import ( diff --git a/test/test_supported_block_chains_response.py b/test/test_supported_block_chains_response.py index db7f47e2..9e5fb773 100644 --- a/test/test_supported_block_chains_response.py +++ b/test/test_supported_block_chains_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.supported_block_chains_response import ( diff --git a/test/test_supported_blockchain.py b/test/test_supported_blockchain.py index 12406ffe..00b6c7ec 100644 --- a/test/test_supported_blockchain.py +++ b/test/test_supported_blockchain.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.supported_blockchain import SupportedBlockchain diff --git a/test/test_swift_address.py b/test/test_swift_address.py index b0cb588f..3d37dc42 100644 --- a/test/test_swift_address.py +++ b/test/test_swift_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.swift_address import SwiftAddress diff --git a/test/test_swift_destination.py b/test/test_swift_destination.py index 7c9e08c9..528db28b 100644 --- a/test/test_swift_destination.py +++ b/test/test_swift_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.swift_destination import SwiftDestination diff --git a/test/test_system_message_info.py b/test/test_system_message_info.py index c086e79c..5b95c211 100644 --- a/test/test_system_message_info.py +++ b/test/test_system_message_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.system_message_info import SystemMessageInfo diff --git a/test/test_tag.py b/test/test_tag.py index d056e103..04c238cd 100644 --- a/test/test_tag.py +++ b/test/test_tag.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tag import Tag diff --git a/test/test_tag_attachment_operation_action.py b/test/test_tag_attachment_operation_action.py index 353d5b69..c4aa2f6e 100644 --- a/test/test_tag_attachment_operation_action.py +++ b/test/test_tag_attachment_operation_action.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tag_attachment_operation_action import ( diff --git a/test/test_tag_type.py b/test/test_tag_type.py index feb7edea..fbb7811b 100644 --- a/test/test_tag_type.py +++ b/test/test_tag_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tag_type import TagType diff --git a/test/test_tags_api.py b/test/test_tags_api.py index 9b2e760c..9f814f94 100644 --- a/test/test_tags_api.py +++ b/test/test_tags_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.tags_api import TagsApi diff --git a/test/test_tags_paged_response.py b/test/test_tags_paged_response.py index eca1169b..d3d2e541 100644 --- a/test/test_tags_paged_response.py +++ b/test/test_tags_paged_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tags_paged_response import TagsPagedResponse diff --git a/test/test_templates_paginated_response.py b/test/test_templates_paginated_response.py index a9b3afea..c2d2fe22 100644 --- a/test/test_templates_paginated_response.py +++ b/test/test_templates_paginated_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.templates_paginated_response import TemplatesPaginatedResponse diff --git a/test/test_third_party_routing.py b/test/test_third_party_routing.py index d8a6cfee..b55da1f5 100644 --- a/test/test_third_party_routing.py +++ b/test/test_third_party_routing.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.third_party_routing import ThirdPartyRouting diff --git a/test/test_time_based_trigger.py b/test/test_time_based_trigger.py index b597dc1f..49fae508 100644 --- a/test/test_time_based_trigger.py +++ b/test/test_time_based_trigger.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.time_based_trigger import TimeBasedTrigger diff --git a/test/test_time_period_config.py b/test/test_time_period_config.py index b9750373..c73bcf33 100644 --- a/test/test_time_period_config.py +++ b/test/test_time_period_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.time_period_config import TimePeriodConfig diff --git a/test/test_time_period_match_type.py b/test/test_time_period_match_type.py index 31d47148..e02c84bc 100644 --- a/test/test_time_period_match_type.py +++ b/test/test_time_period_match_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.time_period_match_type import TimePeriodMatchType diff --git a/test/test_to_collateral_transaction.py b/test/test_to_collateral_transaction.py index a223c89c..4600cc92 100644 --- a/test/test_to_collateral_transaction.py +++ b/test/test_to_collateral_transaction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.to_collateral_transaction import ToCollateralTransaction diff --git a/test/test_to_exchange_transaction.py b/test/test_to_exchange_transaction.py index 9c51945e..be558486 100644 --- a/test/test_to_exchange_transaction.py +++ b/test/test_to_exchange_transaction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.to_exchange_transaction import ToExchangeTransaction diff --git a/test/test_token_collection_response.py b/test/test_token_collection_response.py index fc22e290..800b5e10 100644 --- a/test/test_token_collection_response.py +++ b/test/test_token_collection_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.token_collection_response import TokenCollectionResponse diff --git a/test/test_token_contract_summary_response.py b/test/test_token_contract_summary_response.py index f250c404..cc92255b 100644 --- a/test/test_token_contract_summary_response.py +++ b/test/test_token_contract_summary_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.token_contract_summary_response import ( diff --git a/test/test_token_info_not_found_error_response.py b/test/test_token_info_not_found_error_response.py index 606af792..fd7455c0 100644 --- a/test/test_token_info_not_found_error_response.py +++ b/test/test_token_info_not_found_error_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.token_info_not_found_error_response import ( diff --git a/test/test_token_link_dto.py b/test/test_token_link_dto.py index a6470781..63d9af3a 100644 --- a/test/test_token_link_dto.py +++ b/test/test_token_link_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.token_link_dto import TokenLinkDto diff --git a/test/test_token_link_dto_token_metadata.py b/test/test_token_link_dto_token_metadata.py index da21e703..7f0dbd49 100644 --- a/test/test_token_link_dto_token_metadata.py +++ b/test/test_token_link_dto_token_metadata.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.token_link_dto_token_metadata import TokenLinkDtoTokenMetadata diff --git a/test/test_token_link_exists_http_error.py b/test/test_token_link_exists_http_error.py index 9568f2f3..59f77859 100644 --- a/test/test_token_link_exists_http_error.py +++ b/test/test_token_link_exists_http_error.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.token_link_exists_http_error import TokenLinkExistsHttpError diff --git a/test/test_token_link_not_multichain_compatible_http_error.py b/test/test_token_link_not_multichain_compatible_http_error.py index 0ce7b1cf..e8bf3494 100644 --- a/test/test_token_link_not_multichain_compatible_http_error.py +++ b/test/test_token_link_not_multichain_compatible_http_error.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.token_link_not_multichain_compatible_http_error import ( diff --git a/test/test_token_link_request_dto.py b/test/test_token_link_request_dto.py index 167abf0e..96b7fcb9 100644 --- a/test/test_token_link_request_dto.py +++ b/test/test_token_link_request_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.token_link_request_dto import TokenLinkRequestDto diff --git a/test/test_token_ownership_response.py b/test/test_token_ownership_response.py index f5a94e89..dc53a7a7 100644 --- a/test/test_token_ownership_response.py +++ b/test/test_token_ownership_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.token_ownership_response import TokenOwnershipResponse diff --git a/test/test_token_ownership_spam_update_payload.py b/test/test_token_ownership_spam_update_payload.py index f0f61346..63fc0620 100644 --- a/test/test_token_ownership_spam_update_payload.py +++ b/test/test_token_ownership_spam_update_payload.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.token_ownership_spam_update_payload import ( diff --git a/test/test_token_ownership_status_update_payload.py b/test/test_token_ownership_status_update_payload.py index c8b0ec90..fcc4ab12 100644 --- a/test/test_token_ownership_status_update_payload.py +++ b/test/test_token_ownership_status_update_payload.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.token_ownership_status_update_payload import ( diff --git a/test/test_token_response.py b/test/test_token_response.py index 1624fc5d..7997c449 100644 --- a/test/test_token_response.py +++ b/test/test_token_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.token_response import TokenResponse diff --git a/test/test_tokenization_api.py b/test/test_tokenization_api.py index 6f2e8d70..29b42186 100644 --- a/test/test_tokenization_api.py +++ b/test/test_tokenization_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.tokenization_api import TokenizationApi diff --git a/test/test_tokens_paginated_response.py b/test/test_tokens_paginated_response.py index a77fa9fb..eb4043af 100644 --- a/test/test_tokens_paginated_response.py +++ b/test/test_tokens_paginated_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tokens_paginated_response import TokensPaginatedResponse diff --git a/test/test_total_supply_item_dto.py b/test/test_total_supply_item_dto.py index f33c3d6f..8b1a4c98 100644 --- a/test/test_total_supply_item_dto.py +++ b/test/test_total_supply_item_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.total_supply_item_dto import TotalSupplyItemDto diff --git a/test/test_total_supply_paged_response.py b/test/test_total_supply_paged_response.py index ef341921..913fb95e 100644 --- a/test/test_total_supply_paged_response.py +++ b/test/test_total_supply_paged_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.total_supply_paged_response import TotalSupplyPagedResponse diff --git a/test/test_total_supply_paged_response2.py b/test/test_total_supply_paged_response2.py index e4a86d3d..baf757f7 100644 --- a/test/test_total_supply_paged_response2.py +++ b/test/test_total_supply_paged_response2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.total_supply_paged_response2 import TotalSupplyPagedResponse2 diff --git a/test/test_tr_link_amount.py b/test/test_tr_link_amount.py index 2266ba17..9bf8b99f 100644 --- a/test/test_tr_link_amount.py +++ b/test/test_tr_link_amount.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_amount import TRLinkAmount diff --git a/test/test_tr_link_api.py b/test/test_tr_link_api.py index 8b939993..839e3888 100644 --- a/test/test_tr_link_api.py +++ b/test/test_tr_link_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.tr_link_api import TRLinkApi diff --git a/test/test_tr_link_api_paged_response.py b/test/test_tr_link_api_paged_response.py index 33cad368..e44cd21c 100644 --- a/test/test_tr_link_api_paged_response.py +++ b/test/test_tr_link_api_paged_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_api_paged_response import TRLinkAPIPagedResponse diff --git a/test/test_tr_link_assess_travel_rule_request.py b/test/test_tr_link_assess_travel_rule_request.py index 55118bc5..8d4bca58 100644 --- a/test/test_tr_link_assess_travel_rule_request.py +++ b/test/test_tr_link_assess_travel_rule_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_assess_travel_rule_request import ( diff --git a/test/test_tr_link_assess_travel_rule_response.py b/test/test_tr_link_assess_travel_rule_response.py index d7494dcd..26998199 100644 --- a/test/test_tr_link_assess_travel_rule_response.py +++ b/test/test_tr_link_assess_travel_rule_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_assess_travel_rule_response import ( diff --git a/test/test_tr_link_assessment_decision.py b/test/test_tr_link_assessment_decision.py index 0cc08734..9b050e99 100644 --- a/test/test_tr_link_assessment_decision.py +++ b/test/test_tr_link_assessment_decision.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_assessment_decision import TRLinkAssessmentDecision diff --git a/test/test_tr_link_asset.py b/test/test_tr_link_asset.py index fb8f91be..0b1153b5 100644 --- a/test/test_tr_link_asset.py +++ b/test/test_tr_link_asset.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_asset import TRLinkAsset diff --git a/test/test_tr_link_asset_data.py b/test/test_tr_link_asset_data.py index 36a23e50..a8eb1f62 100644 --- a/test/test_tr_link_asset_data.py +++ b/test/test_tr_link_asset_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_asset_data import TRLinkAssetData diff --git a/test/test_tr_link_asset_format.py b/test/test_tr_link_asset_format.py index 850045aa..afbd16bf 100644 --- a/test/test_tr_link_asset_format.py +++ b/test/test_tr_link_asset_format.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_asset_format import TRLinkAssetFormat diff --git a/test/test_tr_link_assets_list_paged_response.py b/test/test_tr_link_assets_list_paged_response.py index 305fbf60..2c02ed14 100644 --- a/test/test_tr_link_assets_list_paged_response.py +++ b/test/test_tr_link_assets_list_paged_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_assets_list_paged_response import ( diff --git a/test/test_tr_link_beneficiary_pii.py b/test/test_tr_link_beneficiary_pii.py index cfdc2270..aaf81abb 100644 --- a/test/test_tr_link_beneficiary_pii.py +++ b/test/test_tr_link_beneficiary_pii.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_beneficiary_pii import TRLinkBeneficiaryPii diff --git a/test/test_tr_link_cancel_trm_request.py b/test/test_tr_link_cancel_trm_request.py index 5477e2b9..c4894213 100644 --- a/test/test_tr_link_cancel_trm_request.py +++ b/test/test_tr_link_cancel_trm_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_cancel_trm_request import TRLinkCancelTrmRequest diff --git a/test/test_tr_link_connect_integration_request.py b/test/test_tr_link_connect_integration_request.py index 421caa6f..68b703d3 100644 --- a/test/test_tr_link_connect_integration_request.py +++ b/test/test_tr_link_connect_integration_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_connect_integration_request import ( diff --git a/test/test_tr_link_create_customer_request.py b/test/test_tr_link_create_customer_request.py index 716a7e2a..88dae69b 100644 --- a/test/test_tr_link_create_customer_request.py +++ b/test/test_tr_link_create_customer_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_create_customer_request import ( diff --git a/test/test_tr_link_create_integration_request.py b/test/test_tr_link_create_integration_request.py index c29962a6..607d8de4 100644 --- a/test/test_tr_link_create_integration_request.py +++ b/test/test_tr_link_create_integration_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_create_integration_request import ( diff --git a/test/test_tr_link_create_trm_request.py b/test/test_tr_link_create_trm_request.py index 49a348dd..8390ed24 100644 --- a/test/test_tr_link_create_trm_request.py +++ b/test/test_tr_link_create_trm_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_create_trm_request import TRLinkCreateTrmRequest diff --git a/test/test_tr_link_customer_integration_response.py b/test/test_tr_link_customer_integration_response.py index 15bd44b4..f53892c9 100644 --- a/test/test_tr_link_customer_integration_response.py +++ b/test/test_tr_link_customer_integration_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_customer_integration_response import ( diff --git a/test/test_tr_link_customer_response.py b/test/test_tr_link_customer_response.py index e3d60e45..84cbee38 100644 --- a/test/test_tr_link_customer_response.py +++ b/test/test_tr_link_customer_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_customer_response import TRLinkCustomerResponse diff --git a/test/test_tr_link_destination_transfer_peer_path.py b/test/test_tr_link_destination_transfer_peer_path.py index d8d19985..07ed1208 100644 --- a/test/test_tr_link_destination_transfer_peer_path.py +++ b/test/test_tr_link_destination_transfer_peer_path.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_destination_transfer_peer_path import ( diff --git a/test/test_tr_link_discoverable_status.py b/test/test_tr_link_discoverable_status.py index cda14bdf..8a38d444 100644 --- a/test/test_tr_link_discoverable_status.py +++ b/test/test_tr_link_discoverable_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_discoverable_status import TRLinkDiscoverableStatus diff --git a/test/test_tr_link_fiat_value.py b/test/test_tr_link_fiat_value.py index 125b4d29..4dbb9b7f 100644 --- a/test/test_tr_link_fiat_value.py +++ b/test/test_tr_link_fiat_value.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_fiat_value import TRLinkFiatValue diff --git a/test/test_tr_link_geographic_address_request.py b/test/test_tr_link_geographic_address_request.py index 5f71e825..4b1dbcfe 100644 --- a/test/test_tr_link_geographic_address_request.py +++ b/test/test_tr_link_geographic_address_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_geographic_address_request import ( diff --git a/test/test_tr_link_get_required_actions_response.py b/test/test_tr_link_get_required_actions_response.py index 387262b5..18a3a875 100644 --- a/test/test_tr_link_get_required_actions_response.py +++ b/test/test_tr_link_get_required_actions_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_get_required_actions_response import ( diff --git a/test/test_tr_link_get_supported_asset_response.py b/test/test_tr_link_get_supported_asset_response.py index e734ad16..73afbe4d 100644 --- a/test/test_tr_link_get_supported_asset_response.py +++ b/test/test_tr_link_get_supported_asset_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_get_supported_asset_response import ( diff --git a/test/test_tr_link_ivms.py b/test/test_tr_link_ivms.py index 7bdea8bd..d69ec410 100644 --- a/test/test_tr_link_ivms.py +++ b/test/test_tr_link_ivms.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_ivms import TRLinkIvms diff --git a/test/test_tr_link_ivms_response.py b/test/test_tr_link_ivms_response.py index 595d1b45..f541f4d7 100644 --- a/test/test_tr_link_ivms_response.py +++ b/test/test_tr_link_ivms_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_ivms_response import TRLinkIvmsResponse diff --git a/test/test_tr_link_jwk_public_key.py b/test/test_tr_link_jwk_public_key.py index c0e44fc9..c29618df 100644 --- a/test/test_tr_link_jwk_public_key.py +++ b/test/test_tr_link_jwk_public_key.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_jwk_public_key import TRLinkJwkPublicKey diff --git a/test/test_tr_link_manual_decision_action.py b/test/test_tr_link_manual_decision_action.py index 64c748c3..20de8259 100644 --- a/test/test_tr_link_manual_decision_action.py +++ b/test/test_tr_link_manual_decision_action.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_manual_decision_action import TRLinkManualDecisionAction diff --git a/test/test_tr_link_manual_decision_destination_detail.py b/test/test_tr_link_manual_decision_destination_detail.py index 3f2ebc09..dea717d3 100644 --- a/test/test_tr_link_manual_decision_destination_detail.py +++ b/test/test_tr_link_manual_decision_destination_detail.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_manual_decision_destination_detail import ( diff --git a/test/test_tr_link_manual_decision_request.py b/test/test_tr_link_manual_decision_request.py index 6ac30140..f91ab35a 100644 --- a/test/test_tr_link_manual_decision_request.py +++ b/test/test_tr_link_manual_decision_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_manual_decision_request import ( diff --git a/test/test_tr_link_manual_decision_response.py b/test/test_tr_link_manual_decision_response.py index eab87d75..2f5c8d6d 100644 --- a/test/test_tr_link_manual_decision_response.py +++ b/test/test_tr_link_manual_decision_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_manual_decision_response import ( diff --git a/test/test_tr_link_manual_decision_source.py b/test/test_tr_link_manual_decision_source.py index e51f9c78..967aa817 100644 --- a/test/test_tr_link_manual_decision_source.py +++ b/test/test_tr_link_manual_decision_source.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_manual_decision_source import TRLinkManualDecisionSource diff --git a/test/test_tr_link_missing_trm_action.py b/test/test_tr_link_missing_trm_action.py index 4796e9cf..8b9edd9e 100644 --- a/test/test_tr_link_missing_trm_action.py +++ b/test/test_tr_link_missing_trm_action.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_missing_trm_action import TRLinkMissingTrmAction diff --git a/test/test_tr_link_missing_trm_action2.py b/test/test_tr_link_missing_trm_action2.py index d6239b3f..61b16e04 100644 --- a/test/test_tr_link_missing_trm_action2.py +++ b/test/test_tr_link_missing_trm_action2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_missing_trm_action2 import TRLinkMissingTrmAction2 diff --git a/test/test_tr_link_missing_trm_action_enum.py b/test/test_tr_link_missing_trm_action_enum.py index 6814a9fd..7d828ecc 100644 --- a/test/test_tr_link_missing_trm_action_enum.py +++ b/test/test_tr_link_missing_trm_action_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_missing_trm_action_enum import TRLinkMissingTrmActionEnum diff --git a/test/test_tr_link_missing_trm_decision.py b/test/test_tr_link_missing_trm_decision.py index a54c6016..28b035cf 100644 --- a/test/test_tr_link_missing_trm_decision.py +++ b/test/test_tr_link_missing_trm_decision.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_missing_trm_decision import TRLinkMissingTrmDecision diff --git a/test/test_tr_link_missing_trm_rule.py b/test/test_tr_link_missing_trm_rule.py index 15773911..77a7f150 100644 --- a/test/test_tr_link_missing_trm_rule.py +++ b/test/test_tr_link_missing_trm_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_missing_trm_rule import TRLinkMissingTrmRule diff --git a/test/test_tr_link_missing_trm_rule2.py b/test/test_tr_link_missing_trm_rule2.py index dd281e51..75e993e7 100644 --- a/test/test_tr_link_missing_trm_rule2.py +++ b/test/test_tr_link_missing_trm_rule2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_missing_trm_rule2 import TRLinkMissingTrmRule2 diff --git a/test/test_tr_link_one_time_address.py b/test/test_tr_link_one_time_address.py index 3cc96122..bedb90a1 100644 --- a/test/test_tr_link_one_time_address.py +++ b/test/test_tr_link_one_time_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_one_time_address import TRLinkOneTimeAddress diff --git a/test/test_tr_link_paging.py b/test/test_tr_link_paging.py index 8333f166..e1679573 100644 --- a/test/test_tr_link_paging.py +++ b/test/test_tr_link_paging.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_paging import TRLinkPaging diff --git a/test/test_tr_link_partner_response.py b/test/test_tr_link_partner_response.py index 71a195dc..550f0f6a 100644 --- a/test/test_tr_link_partner_response.py +++ b/test/test_tr_link_partner_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_partner_response import TRLinkPartnerResponse diff --git a/test/test_tr_link_policy_response.py b/test/test_tr_link_policy_response.py index e3fb205f..22852811 100644 --- a/test/test_tr_link_policy_response.py +++ b/test/test_tr_link_policy_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_policy_response import TRLinkPolicyResponse diff --git a/test/test_tr_link_post_screening_action.py b/test/test_tr_link_post_screening_action.py index 3e64b3bd..88907ccf 100644 --- a/test/test_tr_link_post_screening_action.py +++ b/test/test_tr_link_post_screening_action.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_post_screening_action import TRLinkPostScreeningAction diff --git a/test/test_tr_link_post_screening_rule.py b/test/test_tr_link_post_screening_rule.py index 93269c32..cad2653a 100644 --- a/test/test_tr_link_post_screening_rule.py +++ b/test/test_tr_link_post_screening_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_post_screening_rule import TRLinkPostScreeningRule diff --git a/test/test_tr_link_post_screening_rule2.py b/test/test_tr_link_post_screening_rule2.py index 6d2ba715..59531516 100644 --- a/test/test_tr_link_post_screening_rule2.py +++ b/test/test_tr_link_post_screening_rule2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_post_screening_rule2 import TRLinkPostScreeningRule2 diff --git a/test/test_tr_link_pre_screening_action.py b/test/test_tr_link_pre_screening_action.py index 87c885cf..81139e90 100644 --- a/test/test_tr_link_pre_screening_action.py +++ b/test/test_tr_link_pre_screening_action.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_pre_screening_action import TRLinkPreScreeningAction diff --git a/test/test_tr_link_pre_screening_action2.py b/test/test_tr_link_pre_screening_action2.py index 498f81af..03f595d4 100644 --- a/test/test_tr_link_pre_screening_action2.py +++ b/test/test_tr_link_pre_screening_action2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_pre_screening_action2 import TRLinkPreScreeningAction2 diff --git a/test/test_tr_link_pre_screening_action_enum.py b/test/test_tr_link_pre_screening_action_enum.py index 7c0965cf..dd4c82f4 100644 --- a/test/test_tr_link_pre_screening_action_enum.py +++ b/test/test_tr_link_pre_screening_action_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_pre_screening_action_enum import ( diff --git a/test/test_tr_link_pre_screening_rule.py b/test/test_tr_link_pre_screening_rule.py index 6b26eab6..1fe40ee5 100644 --- a/test/test_tr_link_pre_screening_rule.py +++ b/test/test_tr_link_pre_screening_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_pre_screening_rule import TRLinkPreScreeningRule diff --git a/test/test_tr_link_pre_screening_rule2.py b/test/test_tr_link_pre_screening_rule2.py index 17ccf8e0..6cb515f8 100644 --- a/test/test_tr_link_pre_screening_rule2.py +++ b/test/test_tr_link_pre_screening_rule2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_pre_screening_rule2 import TRLinkPreScreeningRule2 diff --git a/test/test_tr_link_provider_data.py b/test/test_tr_link_provider_data.py index a4123ac9..dd44d829 100644 --- a/test/test_tr_link_provider_data.py +++ b/test/test_tr_link_provider_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_provider_data import TRLinkProviderData diff --git a/test/test_tr_link_provider_result.py b/test/test_tr_link_provider_result.py index 492b4d54..8fc5b432 100644 --- a/test/test_tr_link_provider_result.py +++ b/test/test_tr_link_provider_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_provider_result import TRLinkProviderResult diff --git a/test/test_tr_link_provider_result_with_rule.py b/test/test_tr_link_provider_result_with_rule.py index 3339b0c7..bb55e83a 100644 --- a/test/test_tr_link_provider_result_with_rule.py +++ b/test/test_tr_link_provider_result_with_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_provider_result_with_rule import ( diff --git a/test/test_tr_link_provider_result_with_rule2.py b/test/test_tr_link_provider_result_with_rule2.py index e6c3b3b5..a2968adc 100644 --- a/test/test_tr_link_provider_result_with_rule2.py +++ b/test/test_tr_link_provider_result_with_rule2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_provider_result_with_rule2 import ( diff --git a/test/test_tr_link_public_asset_info.py b/test/test_tr_link_public_asset_info.py index 2ea743ac..fab789db 100644 --- a/test/test_tr_link_public_asset_info.py +++ b/test/test_tr_link_public_asset_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_public_asset_info import TRLinkPublicAssetInfo diff --git a/test/test_tr_link_public_key_response.py b/test/test_tr_link_public_key_response.py index b49dc93f..3f111d88 100644 --- a/test/test_tr_link_public_key_response.py +++ b/test/test_tr_link_public_key_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_public_key_response import TRLinkPublicKeyResponse diff --git a/test/test_tr_link_redirect_trm_request.py b/test/test_tr_link_redirect_trm_request.py index 029d426a..3fc012eb 100644 --- a/test/test_tr_link_redirect_trm_request.py +++ b/test/test_tr_link_redirect_trm_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_redirect_trm_request import TRLinkRedirectTrmRequest diff --git a/test/test_tr_link_registration_result.py b/test/test_tr_link_registration_result.py index 0577327c..358b015c 100644 --- a/test/test_tr_link_registration_result.py +++ b/test/test_tr_link_registration_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_registration_result import TRLinkRegistrationResult diff --git a/test/test_tr_link_registration_result_full_payload.py b/test/test_tr_link_registration_result_full_payload.py index 4fd8ad9b..eb59d9b1 100644 --- a/test/test_tr_link_registration_result_full_payload.py +++ b/test/test_tr_link_registration_result_full_payload.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_registration_result_full_payload import ( diff --git a/test/test_tr_link_registration_status.py b/test/test_tr_link_registration_status.py index d14df499..14e8bfa6 100644 --- a/test/test_tr_link_registration_status.py +++ b/test/test_tr_link_registration_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_registration_status import TRLinkRegistrationStatus diff --git a/test/test_tr_link_registration_status_enum.py b/test/test_tr_link_registration_status_enum.py index 10460e0a..e8f4dd96 100644 --- a/test/test_tr_link_registration_status_enum.py +++ b/test/test_tr_link_registration_status_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_registration_status_enum import ( diff --git a/test/test_tr_link_required_action.py b/test/test_tr_link_required_action.py index 49609f56..5eb41ea8 100644 --- a/test/test_tr_link_required_action.py +++ b/test/test_tr_link_required_action.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_required_action import TRLinkRequiredAction diff --git a/test/test_tr_link_required_action_data.py b/test/test_tr_link_required_action_data.py index f63d42cf..5b7df563 100644 --- a/test/test_tr_link_required_action_data.py +++ b/test/test_tr_link_required_action_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_required_action_data import TRLinkRequiredActionData diff --git a/test/test_tr_link_required_field.py b/test/test_tr_link_required_field.py index 26cd3c6d..cd8f8f9a 100644 --- a/test/test_tr_link_required_field.py +++ b/test/test_tr_link_required_field.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_required_field import TRLinkRequiredField diff --git a/test/test_tr_link_resolve_action_data.py b/test/test_tr_link_resolve_action_data.py index 846f4db3..009574ff 100644 --- a/test/test_tr_link_resolve_action_data.py +++ b/test/test_tr_link_resolve_action_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_resolve_action_data import TRLinkResolveActionData diff --git a/test/test_tr_link_resolve_action_request.py b/test/test_tr_link_resolve_action_request.py index 0ea8a335..0b4e26ae 100644 --- a/test/test_tr_link_resolve_action_request.py +++ b/test/test_tr_link_resolve_action_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_resolve_action_request import TRLinkResolveActionRequest diff --git a/test/test_tr_link_result.py b/test/test_tr_link_result.py index f8cb3974..870aa625 100644 --- a/test/test_tr_link_result.py +++ b/test/test_tr_link_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_result import TRLinkResult diff --git a/test/test_tr_link_result_full_payload.py b/test/test_tr_link_result_full_payload.py index 3687f99a..9836b068 100644 --- a/test/test_tr_link_result_full_payload.py +++ b/test/test_tr_link_result_full_payload.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_result_full_payload import TRLinkResultFullPayload diff --git a/test/test_tr_link_rule_base.py b/test/test_tr_link_rule_base.py index 1147ade8..5929ee79 100644 --- a/test/test_tr_link_rule_base.py +++ b/test/test_tr_link_rule_base.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_rule_base import TRLinkRuleBase diff --git a/test/test_tr_link_set_destination_travel_rule_message_id_request.py b/test/test_tr_link_set_destination_travel_rule_message_id_request.py index a9e14212..ff9998c7 100644 --- a/test/test_tr_link_set_destination_travel_rule_message_id_request.py +++ b/test/test_tr_link_set_destination_travel_rule_message_id_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_set_destination_travel_rule_message_id_request import ( diff --git a/test/test_tr_link_set_destination_travel_rule_message_id_response.py b/test/test_tr_link_set_destination_travel_rule_message_id_response.py index d185f6ec..eb356fa5 100644 --- a/test/test_tr_link_set_destination_travel_rule_message_id_response.py +++ b/test/test_tr_link_set_destination_travel_rule_message_id_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_set_destination_travel_rule_message_id_response import ( diff --git a/test/test_tr_link_set_transaction_travel_rule_message_id_request.py b/test/test_tr_link_set_transaction_travel_rule_message_id_request.py index 027a6d37..3302d7c3 100644 --- a/test/test_tr_link_set_transaction_travel_rule_message_id_request.py +++ b/test/test_tr_link_set_transaction_travel_rule_message_id_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_set_transaction_travel_rule_message_id_request import ( diff --git a/test/test_tr_link_set_transaction_travel_rule_message_id_response.py b/test/test_tr_link_set_transaction_travel_rule_message_id_response.py index 61a705d9..2fc9e1bb 100644 --- a/test/test_tr_link_set_transaction_travel_rule_message_id_response.py +++ b/test/test_tr_link_set_transaction_travel_rule_message_id_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_set_transaction_travel_rule_message_id_response import ( diff --git a/test/test_tr_link_source_transfer_peer_path.py b/test/test_tr_link_source_transfer_peer_path.py index 253b960d..594d4e6f 100644 --- a/test/test_tr_link_source_transfer_peer_path.py +++ b/test/test_tr_link_source_transfer_peer_path.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_source_transfer_peer_path import ( diff --git a/test/test_tr_link_test_connection_response.py b/test/test_tr_link_test_connection_response.py index d6c7c243..e2675c17 100644 --- a/test/test_tr_link_test_connection_response.py +++ b/test/test_tr_link_test_connection_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_test_connection_response import ( diff --git a/test/test_tr_link_thresholds.py b/test/test_tr_link_thresholds.py index 70b977e1..42a68a38 100644 --- a/test/test_tr_link_thresholds.py +++ b/test/test_tr_link_thresholds.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_thresholds import TRLinkThresholds diff --git a/test/test_tr_link_transaction_direction.py b/test/test_tr_link_transaction_direction.py index 648b5b54..181bc531 100644 --- a/test/test_tr_link_transaction_direction.py +++ b/test/test_tr_link_transaction_direction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_transaction_direction import TRLinkTransactionDirection diff --git a/test/test_tr_link_transfer_peer_path.py b/test/test_tr_link_transfer_peer_path.py index b3d5aef2..0a41420d 100644 --- a/test/test_tr_link_transfer_peer_path.py +++ b/test/test_tr_link_transfer_peer_path.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_transfer_peer_path import TRLinkTransferPeerPath diff --git a/test/test_tr_link_trm_direction.py b/test/test_tr_link_trm_direction.py index 4bc9e281..1a4778bd 100644 --- a/test/test_tr_link_trm_direction.py +++ b/test/test_tr_link_trm_direction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_trm_direction import TRLinkTrmDirection diff --git a/test/test_tr_link_trm_info_response.py b/test/test_tr_link_trm_info_response.py index 411c82aa..3976b70a 100644 --- a/test/test_tr_link_trm_info_response.py +++ b/test/test_tr_link_trm_info_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_trm_info_response import TRLinkTrmInfoResponse diff --git a/test/test_tr_link_trm_screening_status.py b/test/test_tr_link_trm_screening_status.py index 770fe331..826e7eb0 100644 --- a/test/test_tr_link_trm_screening_status.py +++ b/test/test_tr_link_trm_screening_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_trm_screening_status import TRLinkTrmScreeningStatus diff --git a/test/test_tr_link_trm_screening_status_enum.py b/test/test_tr_link_trm_screening_status_enum.py index ee167f85..c6a531bc 100644 --- a/test/test_tr_link_trm_screening_status_enum.py +++ b/test/test_tr_link_trm_screening_status_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_trm_screening_status_enum import ( diff --git a/test/test_tr_link_trm_status.py b/test/test_tr_link_trm_status.py index 250a8542..39418213 100644 --- a/test/test_tr_link_trm_status.py +++ b/test/test_tr_link_trm_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_trm_status import TRLinkTrmStatus diff --git a/test/test_tr_link_txn_info.py b/test/test_tr_link_txn_info.py index f5278ebd..5d2a340a 100644 --- a/test/test_tr_link_txn_info.py +++ b/test/test_tr_link_txn_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_txn_info import TRLinkTxnInfo diff --git a/test/test_tr_link_update_customer_request.py b/test/test_tr_link_update_customer_request.py index f99f4f0d..9f61806f 100644 --- a/test/test_tr_link_update_customer_request.py +++ b/test/test_tr_link_update_customer_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_update_customer_request import ( diff --git a/test/test_tr_link_vasp_dto.py b/test/test_tr_link_vasp_dto.py index 9f7f7521..e630e63a 100644 --- a/test/test_tr_link_vasp_dto.py +++ b/test/test_tr_link_vasp_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_vasp_dto import TRLinkVaspDto diff --git a/test/test_tr_link_vasp_geographic_address.py b/test/test_tr_link_vasp_geographic_address.py index b5e31b02..2ba712e5 100644 --- a/test/test_tr_link_vasp_geographic_address.py +++ b/test/test_tr_link_vasp_geographic_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_vasp_geographic_address import ( diff --git a/test/test_tr_link_vasp_list_dto.py b/test/test_tr_link_vasp_list_dto.py index 3430cd6f..5cb77234 100644 --- a/test/test_tr_link_vasp_list_dto.py +++ b/test/test_tr_link_vasp_list_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_vasp_list_dto import TRLinkVaspListDto diff --git a/test/test_tr_link_vasp_national_identification.py b/test/test_tr_link_vasp_national_identification.py index a9f22229..fc6e0118 100644 --- a/test/test_tr_link_vasp_national_identification.py +++ b/test/test_tr_link_vasp_national_identification.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_vasp_national_identification import ( diff --git a/test/test_tr_link_verdict.py b/test/test_tr_link_verdict.py index 0dfdc4df..92b9eb94 100644 --- a/test/test_tr_link_verdict.py +++ b/test/test_tr_link_verdict.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_verdict import TRLinkVerdict diff --git a/test/test_tr_link_verdict_enum.py b/test/test_tr_link_verdict_enum.py index 2cff322e..7faeb56e 100644 --- a/test/test_tr_link_verdict_enum.py +++ b/test/test_tr_link_verdict_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tr_link_verdict_enum import TRLinkVerdictEnum diff --git a/test/test_trading_account_type.py b/test/test_trading_account_type.py index 13eb0c28..edafe42a 100644 --- a/test/test_trading_account_type.py +++ b/test/test_trading_account_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.trading_account_type import TradingAccountType diff --git a/test/test_trading_beta_api.py b/test/test_trading_beta_api.py index 9c742b15..3c25258c 100644 --- a/test/test_trading_beta_api.py +++ b/test/test_trading_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.trading_beta_api import TradingBetaApi diff --git a/test/test_trading_error_schema.py b/test/test_trading_error_schema.py index e9785db6..fd3f024f 100644 --- a/test/test_trading_error_schema.py +++ b/test/test_trading_error_schema.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.trading_error_schema import TradingErrorSchema diff --git a/test/test_trading_provider.py b/test/test_trading_provider.py index c80ded2b..3a3ea242 100644 --- a/test/test_trading_provider.py +++ b/test/test_trading_provider.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.trading_provider import TradingProvider diff --git a/test/test_transaction.py b/test/test_transaction.py index d4c173a7..aafad46f 100644 --- a/test/test_transaction.py +++ b/test/test_transaction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction import Transaction diff --git a/test/test_transaction_configurations.py b/test/test_transaction_configurations.py index 70e5b385..a8f4f260 100644 --- a/test/test_transaction_configurations.py +++ b/test/test_transaction_configurations.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_configurations import TransactionConfigurations diff --git a/test/test_transaction_direction.py b/test/test_transaction_direction.py index d3001fee..4fc6bdd6 100644 --- a/test/test_transaction_direction.py +++ b/test/test_transaction_direction.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_direction import TransactionDirection diff --git a/test/test_transaction_fee.py b/test/test_transaction_fee.py index 58f260c8..8a5c011e 100644 --- a/test/test_transaction_fee.py +++ b/test/test_transaction_fee.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_fee import TransactionFee diff --git a/test/test_transaction_operation.py b/test/test_transaction_operation.py index b2fc37d0..b027ce3d 100644 --- a/test/test_transaction_operation.py +++ b/test/test_transaction_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_operation import TransactionOperation diff --git a/test/test_transaction_operation_enum.py b/test/test_transaction_operation_enum.py index ac8f1c0e..8a29d85a 100644 --- a/test/test_transaction_operation_enum.py +++ b/test/test_transaction_operation_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_operation_enum import TransactionOperationEnum diff --git a/test/test_transaction_receipt_response.py b/test/test_transaction_receipt_response.py index 27366b03..f195f397 100644 --- a/test/test_transaction_receipt_response.py +++ b/test/test_transaction_receipt_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_receipt_response import TransactionReceiptResponse diff --git a/test/test_transaction_request.py b/test/test_transaction_request.py index 450b7a2c..ed1ede1c 100644 --- a/test/test_transaction_request.py +++ b/test/test_transaction_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_request import TransactionRequest diff --git a/test/test_transaction_request_amount.py b/test/test_transaction_request_amount.py index 40adf2ad..ba0c3f5d 100644 --- a/test/test_transaction_request_amount.py +++ b/test/test_transaction_request_amount.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_request_amount import TransactionRequestAmount diff --git a/test/test_transaction_request_destination.py b/test/test_transaction_request_destination.py index 4bb4ff02..d5dc15c7 100644 --- a/test/test_transaction_request_destination.py +++ b/test/test_transaction_request_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_request_destination import ( diff --git a/test/test_transaction_request_fee.py b/test/test_transaction_request_fee.py index 4a3ca4c2..40b4318b 100644 --- a/test/test_transaction_request_fee.py +++ b/test/test_transaction_request_fee.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_request_fee import TransactionRequestFee diff --git a/test/test_transaction_request_gas_limit.py b/test/test_transaction_request_gas_limit.py index 4a6ca79c..902e341d 100644 --- a/test/test_transaction_request_gas_limit.py +++ b/test/test_transaction_request_gas_limit.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_request_gas_limit import TransactionRequestGasLimit diff --git a/test/test_transaction_request_gas_price.py b/test/test_transaction_request_gas_price.py index 9cc3cca9..cb97f82a 100644 --- a/test/test_transaction_request_gas_price.py +++ b/test/test_transaction_request_gas_price.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_request_gas_price import TransactionRequestGasPrice diff --git a/test/test_transaction_request_network_fee.py b/test/test_transaction_request_network_fee.py index 5c55fa58..8983b9da 100644 --- a/test/test_transaction_request_network_fee.py +++ b/test/test_transaction_request_network_fee.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_request_network_fee import ( diff --git a/test/test_transaction_request_network_staking.py b/test/test_transaction_request_network_staking.py index 98e5f6ad..9b4c1858 100644 --- a/test/test_transaction_request_network_staking.py +++ b/test/test_transaction_request_network_staking.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_request_network_staking import ( diff --git a/test/test_transaction_request_priority_fee.py b/test/test_transaction_request_priority_fee.py index 320251f0..a011cad7 100644 --- a/test/test_transaction_request_priority_fee.py +++ b/test/test_transaction_request_priority_fee.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_request_priority_fee import ( diff --git a/test/test_transaction_response.py b/test/test_transaction_response.py index 52930c18..d7706073 100644 --- a/test/test_transaction_response.py +++ b/test/test_transaction_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_response import TransactionResponse diff --git a/test/test_transaction_response_contract_call_decoded_data.py b/test/test_transaction_response_contract_call_decoded_data.py index 8001761b..160b10ac 100644 --- a/test/test_transaction_response_contract_call_decoded_data.py +++ b/test/test_transaction_response_contract_call_decoded_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_response_contract_call_decoded_data import ( diff --git a/test/test_transaction_response_destination.py b/test/test_transaction_response_destination.py index c66b98e2..d68499c6 100644 --- a/test/test_transaction_response_destination.py +++ b/test/test_transaction_response_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_response_destination import ( diff --git a/test/test_transaction_tag.py b/test/test_transaction_tag.py index c67d2664..8f543a86 100644 --- a/test/test_transaction_tag.py +++ b/test/test_transaction_tag.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transaction_tag import TransactionTag diff --git a/test/test_transactions_api.py b/test/test_transactions_api.py index 7dd1f085..b9dfaa30 100644 --- a/test/test_transactions_api.py +++ b/test/test_transactions_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.transactions_api import TransactionsApi diff --git a/test/test_transfer_config_operation.py b/test/test_transfer_config_operation.py index 63d283ec..2170bfa5 100644 --- a/test/test_transfer_config_operation.py +++ b/test/test_transfer_config_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_config_operation import TransferConfigOperation diff --git a/test/test_transfer_operation_config_params.py b/test/test_transfer_operation_config_params.py index 3e4c4a70..a0dadad3 100644 --- a/test/test_transfer_operation_config_params.py +++ b/test/test_transfer_operation_config_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_operation_config_params import ( diff --git a/test/test_transfer_operation_execution.py b/test/test_transfer_operation_execution.py index 7d3f4149..e8d09d06 100644 --- a/test/test_transfer_operation_execution.py +++ b/test/test_transfer_operation_execution.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_operation_execution import TransferOperationExecution diff --git a/test/test_transfer_operation_execution_output.py b/test/test_transfer_operation_execution_output.py index ef44ec50..19fa4e57 100644 --- a/test/test_transfer_operation_execution_output.py +++ b/test/test_transfer_operation_execution_output.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_operation_execution_output import ( diff --git a/test/test_transfer_operation_execution_params.py b/test/test_transfer_operation_execution_params.py index a868f237..0149fd78 100644 --- a/test/test_transfer_operation_execution_params.py +++ b/test/test_transfer_operation_execution_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_operation_execution_params import ( diff --git a/test/test_transfer_operation_execution_params_execution_params.py b/test/test_transfer_operation_execution_params_execution_params.py index 1dcc5ce3..887dfc30 100644 --- a/test/test_transfer_operation_execution_params_execution_params.py +++ b/test/test_transfer_operation_execution_params_execution_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_operation_execution_params_execution_params import ( diff --git a/test/test_transfer_operation_failure.py b/test/test_transfer_operation_failure.py index 3333d970..6a84be0e 100644 --- a/test/test_transfer_operation_failure.py +++ b/test/test_transfer_operation_failure.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_operation_failure import TransferOperationFailure diff --git a/test/test_transfer_operation_failure_data.py b/test/test_transfer_operation_failure_data.py index 6a437f23..02f6cccd 100644 --- a/test/test_transfer_operation_failure_data.py +++ b/test/test_transfer_operation_failure_data.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_operation_failure_data import ( diff --git a/test/test_transfer_operation_preview.py b/test/test_transfer_operation_preview.py index dd8cdba4..34ab3443 100644 --- a/test/test_transfer_operation_preview.py +++ b/test/test_transfer_operation_preview.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_operation_preview import TransferOperationPreview diff --git a/test/test_transfer_operation_preview_output.py b/test/test_transfer_operation_preview_output.py index d6c55a21..14b365d2 100644 --- a/test/test_transfer_operation_preview_output.py +++ b/test/test_transfer_operation_preview_output.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_operation_preview_output import ( diff --git a/test/test_transfer_operation_type.py b/test/test_transfer_operation_type.py index 500dd8f0..a6eb413e 100644 --- a/test/test_transfer_operation_type.py +++ b/test/test_transfer_operation_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_operation_type import TransferOperationType diff --git a/test/test_transfer_peer_path_sub_type.py b/test/test_transfer_peer_path_sub_type.py index addf5051..78b3bd46 100644 --- a/test/test_transfer_peer_path_sub_type.py +++ b/test/test_transfer_peer_path_sub_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_peer_path_sub_type import TransferPeerPathSubType diff --git a/test/test_transfer_peer_path_type.py b/test/test_transfer_peer_path_type.py index c751f5a0..822738a1 100644 --- a/test/test_transfer_peer_path_type.py +++ b/test/test_transfer_peer_path_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_peer_path_type import TransferPeerPathType diff --git a/test/test_transfer_peer_sub_type_enum.py b/test/test_transfer_peer_sub_type_enum.py index ac914faf..755cb2b6 100644 --- a/test/test_transfer_peer_sub_type_enum.py +++ b/test/test_transfer_peer_sub_type_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_peer_sub_type_enum import TransferPeerSubTypeEnum diff --git a/test/test_transfer_peer_type_enum.py b/test/test_transfer_peer_type_enum.py index f33f432e..afe3bb2b 100644 --- a/test/test_transfer_peer_type_enum.py +++ b/test/test_transfer_peer_type_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_peer_type_enum import TransferPeerTypeEnum diff --git a/test/test_transfer_peer_type_enum2.py b/test/test_transfer_peer_type_enum2.py index 990f3299..712d71a2 100644 --- a/test/test_transfer_peer_type_enum2.py +++ b/test/test_transfer_peer_type_enum2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_peer_type_enum2 import TransferPeerTypeEnum2 diff --git a/test/test_transfer_rail.py b/test/test_transfer_rail.py index de14639d..b729e739 100644 --- a/test/test_transfer_rail.py +++ b/test/test_transfer_rail.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_rail import TransferRail diff --git a/test/test_transfer_receipt.py b/test/test_transfer_receipt.py index 71978ec4..c92e91ca 100644 --- a/test/test_transfer_receipt.py +++ b/test/test_transfer_receipt.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_receipt import TransferReceipt diff --git a/test/test_transfer_validation_failure.py b/test/test_transfer_validation_failure.py index 180a5cd5..362a4408 100644 --- a/test/test_transfer_validation_failure.py +++ b/test/test_transfer_validation_failure.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.transfer_validation_failure import TransferValidationFailure diff --git a/test/test_travel_rule_action_enum.py b/test/test_travel_rule_action_enum.py index bfa629f9..a5663797 100644 --- a/test/test_travel_rule_action_enum.py +++ b/test/test_travel_rule_action_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_action_enum import TravelRuleActionEnum diff --git a/test/test_travel_rule_address.py b/test/test_travel_rule_address.py index 5f61b23a..899200f3 100644 --- a/test/test_travel_rule_address.py +++ b/test/test_travel_rule_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_address import TravelRuleAddress diff --git a/test/test_travel_rule_api.py b/test/test_travel_rule_api.py index 3ff7d154..d9b65903 100644 --- a/test/test_travel_rule_api.py +++ b/test/test_travel_rule_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.travel_rule_api import TravelRuleApi diff --git a/test/test_travel_rule_create_transaction_request.py b/test/test_travel_rule_create_transaction_request.py index 425d9e73..8163f6ba 100644 --- a/test/test_travel_rule_create_transaction_request.py +++ b/test/test_travel_rule_create_transaction_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_create_transaction_request import ( diff --git a/test/test_travel_rule_date_and_place_of_birth.py b/test/test_travel_rule_date_and_place_of_birth.py index 6aada9ac..01fc0fa6 100644 --- a/test/test_travel_rule_date_and_place_of_birth.py +++ b/test/test_travel_rule_date_and_place_of_birth.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_date_and_place_of_birth import ( diff --git a/test/test_travel_rule_direction_enum.py b/test/test_travel_rule_direction_enum.py index e4624b36..1c4a8fc2 100644 --- a/test/test_travel_rule_direction_enum.py +++ b/test/test_travel_rule_direction_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_direction_enum import TravelRuleDirectionEnum diff --git a/test/test_travel_rule_geographic_address.py b/test/test_travel_rule_geographic_address.py index cffda667..e5cf0133 100644 --- a/test/test_travel_rule_geographic_address.py +++ b/test/test_travel_rule_geographic_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_geographic_address import TravelRuleGeographicAddress diff --git a/test/test_travel_rule_get_all_vasps_response.py b/test/test_travel_rule_get_all_vasps_response.py index a113abd2..1839b503 100644 --- a/test/test_travel_rule_get_all_vasps_response.py +++ b/test/test_travel_rule_get_all_vasps_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_get_all_vasps_response import ( diff --git a/test/test_travel_rule_issuer.py b/test/test_travel_rule_issuer.py index 81b4edbe..6c85b12e 100644 --- a/test/test_travel_rule_issuer.py +++ b/test/test_travel_rule_issuer.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_issuer import TravelRuleIssuer diff --git a/test/test_travel_rule_issuers.py b/test/test_travel_rule_issuers.py index bcbd5d0b..52b7632b 100644 --- a/test/test_travel_rule_issuers.py +++ b/test/test_travel_rule_issuers.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_issuers import TravelRuleIssuers diff --git a/test/test_travel_rule_legal_person.py b/test/test_travel_rule_legal_person.py index aa86a1b7..72a0a719 100644 --- a/test/test_travel_rule_legal_person.py +++ b/test/test_travel_rule_legal_person.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_legal_person import TravelRuleLegalPerson diff --git a/test/test_travel_rule_legal_person_name_identifier.py b/test/test_travel_rule_legal_person_name_identifier.py index 2037d649..577f0dd7 100644 --- a/test/test_travel_rule_legal_person_name_identifier.py +++ b/test/test_travel_rule_legal_person_name_identifier.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_legal_person_name_identifier import ( diff --git a/test/test_travel_rule_matched_rule.py b/test/test_travel_rule_matched_rule.py index aa7290c1..eeb8805a 100644 --- a/test/test_travel_rule_matched_rule.py +++ b/test/test_travel_rule_matched_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_matched_rule import TravelRuleMatchedRule diff --git a/test/test_travel_rule_national_identification.py b/test/test_travel_rule_national_identification.py index fabd7f3f..95bf7645 100644 --- a/test/test_travel_rule_national_identification.py +++ b/test/test_travel_rule_national_identification.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_national_identification import ( diff --git a/test/test_travel_rule_natural_name_identifier.py b/test/test_travel_rule_natural_name_identifier.py index 68a3b000..b6dd4838 100644 --- a/test/test_travel_rule_natural_name_identifier.py +++ b/test/test_travel_rule_natural_name_identifier.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_natural_name_identifier import ( diff --git a/test/test_travel_rule_natural_person.py b/test/test_travel_rule_natural_person.py index 8e8b01eb..23b117e8 100644 --- a/test/test_travel_rule_natural_person.py +++ b/test/test_travel_rule_natural_person.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_natural_person import TravelRuleNaturalPerson diff --git a/test/test_travel_rule_natural_person_name_identifier.py b/test/test_travel_rule_natural_person_name_identifier.py index cdbefc5e..8d71d344 100644 --- a/test/test_travel_rule_natural_person_name_identifier.py +++ b/test/test_travel_rule_natural_person_name_identifier.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_natural_person_name_identifier import ( diff --git a/test/test_travel_rule_ownership_proof.py b/test/test_travel_rule_ownership_proof.py index b47099b8..3cc99d89 100644 --- a/test/test_travel_rule_ownership_proof.py +++ b/test/test_travel_rule_ownership_proof.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_ownership_proof import TravelRuleOwnershipProof diff --git a/test/test_travel_rule_person.py b/test/test_travel_rule_person.py index 63f45d2a..ccd2dedf 100644 --- a/test/test_travel_rule_person.py +++ b/test/test_travel_rule_person.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_person import TravelRulePerson diff --git a/test/test_travel_rule_pii_ivms.py b/test/test_travel_rule_pii_ivms.py index f315559e..e5ee723d 100644 --- a/test/test_travel_rule_pii_ivms.py +++ b/test/test_travel_rule_pii_ivms.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_pii_ivms import TravelRulePiiIVMS diff --git a/test/test_travel_rule_policy_rule_response.py b/test/test_travel_rule_policy_rule_response.py index b93e8fa1..c2c6c155 100644 --- a/test/test_travel_rule_policy_rule_response.py +++ b/test/test_travel_rule_policy_rule_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_policy_rule_response import ( diff --git a/test/test_travel_rule_prescreening_rule.py b/test/test_travel_rule_prescreening_rule.py index c52e357b..a1f8eb74 100644 --- a/test/test_travel_rule_prescreening_rule.py +++ b/test/test_travel_rule_prescreening_rule.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_prescreening_rule import TravelRulePrescreeningRule diff --git a/test/test_travel_rule_provider.py b/test/test_travel_rule_provider.py index 5915c1ea..059d8a10 100644 --- a/test/test_travel_rule_provider.py +++ b/test/test_travel_rule_provider.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_provider import TravelRuleProvider diff --git a/test/test_travel_rule_result.py b/test/test_travel_rule_result.py index 75d9ea50..bb44ad21 100644 --- a/test/test_travel_rule_result.py +++ b/test/test_travel_rule_result.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_result import TravelRuleResult diff --git a/test/test_travel_rule_status_enum.py b/test/test_travel_rule_status_enum.py index 4cd58e4f..add37db0 100644 --- a/test/test_travel_rule_status_enum.py +++ b/test/test_travel_rule_status_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_status_enum import TravelRuleStatusEnum diff --git a/test/test_travel_rule_transaction_blockchain_info.py b/test/test_travel_rule_transaction_blockchain_info.py index 80ad3b13..34264a6c 100644 --- a/test/test_travel_rule_transaction_blockchain_info.py +++ b/test/test_travel_rule_transaction_blockchain_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_transaction_blockchain_info import ( diff --git a/test/test_travel_rule_update_vasp_details.py b/test/test_travel_rule_update_vasp_details.py index ce97ddb2..edf2de6e 100644 --- a/test/test_travel_rule_update_vasp_details.py +++ b/test/test_travel_rule_update_vasp_details.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_update_vasp_details import ( diff --git a/test/test_travel_rule_validate_date_and_place_of_birth.py b/test/test_travel_rule_validate_date_and_place_of_birth.py index aebc4240..ecad9e33 100644 --- a/test/test_travel_rule_validate_date_and_place_of_birth.py +++ b/test/test_travel_rule_validate_date_and_place_of_birth.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_validate_date_and_place_of_birth import ( diff --git a/test/test_travel_rule_validate_full_transaction_request.py b/test/test_travel_rule_validate_full_transaction_request.py index 967c0da4..93e41f1c 100644 --- a/test/test_travel_rule_validate_full_transaction_request.py +++ b/test/test_travel_rule_validate_full_transaction_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_validate_full_transaction_request import ( diff --git a/test/test_travel_rule_validate_geographic_address.py b/test/test_travel_rule_validate_geographic_address.py index 00297000..46b9cd10 100644 --- a/test/test_travel_rule_validate_geographic_address.py +++ b/test/test_travel_rule_validate_geographic_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_validate_geographic_address import ( diff --git a/test/test_travel_rule_validate_legal_person.py b/test/test_travel_rule_validate_legal_person.py index 81a9082f..e7474de2 100644 --- a/test/test_travel_rule_validate_legal_person.py +++ b/test/test_travel_rule_validate_legal_person.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_validate_legal_person import ( diff --git a/test/test_travel_rule_validate_legal_person_name_identifier.py b/test/test_travel_rule_validate_legal_person_name_identifier.py index bc6a05cd..fa37c641 100644 --- a/test/test_travel_rule_validate_legal_person_name_identifier.py +++ b/test/test_travel_rule_validate_legal_person_name_identifier.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_validate_legal_person_name_identifier import ( diff --git a/test/test_travel_rule_validate_national_identification.py b/test/test_travel_rule_validate_national_identification.py index 222f60a7..fcda7c82 100644 --- a/test/test_travel_rule_validate_national_identification.py +++ b/test/test_travel_rule_validate_national_identification.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_validate_national_identification import ( diff --git a/test/test_travel_rule_validate_natural_name_identifier.py b/test/test_travel_rule_validate_natural_name_identifier.py index d8bc65c4..4294aeac 100644 --- a/test/test_travel_rule_validate_natural_name_identifier.py +++ b/test/test_travel_rule_validate_natural_name_identifier.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_validate_natural_name_identifier import ( diff --git a/test/test_travel_rule_validate_natural_person.py b/test/test_travel_rule_validate_natural_person.py index 4f547e01..21c584f9 100644 --- a/test/test_travel_rule_validate_natural_person.py +++ b/test/test_travel_rule_validate_natural_person.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_validate_natural_person import ( diff --git a/test/test_travel_rule_validate_natural_person_name_identifier.py b/test/test_travel_rule_validate_natural_person_name_identifier.py index 7f4773ec..076b4808 100644 --- a/test/test_travel_rule_validate_natural_person_name_identifier.py +++ b/test/test_travel_rule_validate_natural_person_name_identifier.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_validate_natural_person_name_identifier import ( diff --git a/test/test_travel_rule_validate_person.py b/test/test_travel_rule_validate_person.py index 0640c62b..4abc7e0b 100644 --- a/test/test_travel_rule_validate_person.py +++ b/test/test_travel_rule_validate_person.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_validate_person import TravelRuleValidatePerson diff --git a/test/test_travel_rule_validate_pii_ivms.py b/test/test_travel_rule_validate_pii_ivms.py index 03d296ab..409e50dc 100644 --- a/test/test_travel_rule_validate_pii_ivms.py +++ b/test/test_travel_rule_validate_pii_ivms.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_validate_pii_ivms import TravelRuleValidatePiiIVMS diff --git a/test/test_travel_rule_validate_transaction_request.py b/test/test_travel_rule_validate_transaction_request.py index 0b2aa710..b9e7aad7 100644 --- a/test/test_travel_rule_validate_transaction_request.py +++ b/test/test_travel_rule_validate_transaction_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_validate_transaction_request import ( diff --git a/test/test_travel_rule_validate_transaction_response.py b/test/test_travel_rule_validate_transaction_response.py index 2a2e6239..c83ec1b4 100644 --- a/test/test_travel_rule_validate_transaction_response.py +++ b/test/test_travel_rule_validate_transaction_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_validate_transaction_response import ( diff --git a/test/test_travel_rule_vasp.py b/test/test_travel_rule_vasp.py index 17a6ce7f..37be2cab 100644 --- a/test/test_travel_rule_vasp.py +++ b/test/test_travel_rule_vasp.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_vasp import TravelRuleVASP diff --git a/test/test_travel_rule_vasp_for_vault.py b/test/test_travel_rule_vasp_for_vault.py index 29974d6b..f61d9be0 100644 --- a/test/test_travel_rule_vasp_for_vault.py +++ b/test/test_travel_rule_vasp_for_vault.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_vasp_for_vault import TravelRuleVaspForVault diff --git a/test/test_travel_rule_verdict_enum.py b/test/test_travel_rule_verdict_enum.py index 669e3434..7c2ec221 100644 --- a/test/test_travel_rule_verdict_enum.py +++ b/test/test_travel_rule_verdict_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.travel_rule_verdict_enum import TravelRuleVerdictEnum diff --git a/test/test_trigger_validation_flow_response.py b/test/test_trigger_validation_flow_response.py index 8fb477d6..761cf71a 100644 --- a/test/test_trigger_validation_flow_response.py +++ b/test/test_trigger_validation_flow_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.trigger_validation_flow_response import ( diff --git a/test/test_trust_proof_of_address_create_response.py b/test/test_trust_proof_of_address_create_response.py index bd798770..1e6ee715 100644 --- a/test/test_trust_proof_of_address_create_response.py +++ b/test/test_trust_proof_of_address_create_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.trust_proof_of_address_create_response import ( diff --git a/test/test_trust_proof_of_address_request.py b/test/test_trust_proof_of_address_request.py index 0bdfee24..bae4bd4c 100644 --- a/test/test_trust_proof_of_address_request.py +++ b/test/test_trust_proof_of_address_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.trust_proof_of_address_request import TrustProofOfAddressRequest diff --git a/test/test_trust_proof_of_address_response.py b/test/test_trust_proof_of_address_response.py index 559298a1..2c15161c 100644 --- a/test/test_trust_proof_of_address_response.py +++ b/test/test_trust_proof_of_address_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.trust_proof_of_address_response import ( diff --git a/test/test_tx_log.py b/test/test_tx_log.py index 15ec5ed2..8cc812bc 100644 --- a/test/test_tx_log.py +++ b/test/test_tx_log.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.tx_log import TxLog diff --git a/test/test_typed_message_transaction_status_enum.py b/test/test_typed_message_transaction_status_enum.py index 1853a66e..e53a03d7 100644 --- a/test/test_typed_message_transaction_status_enum.py +++ b/test/test_typed_message_transaction_status_enum.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.typed_message_transaction_status_enum import ( diff --git a/test/test_unfreeze_transaction_response.py b/test/test_unfreeze_transaction_response.py index b2656cbf..be147c68 100644 --- a/test/test_unfreeze_transaction_response.py +++ b/test/test_unfreeze_transaction_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.unfreeze_transaction_response import UnfreezeTransactionResponse diff --git a/test/test_unmanaged_wallet.py b/test/test_unmanaged_wallet.py index 5d639be2..b60d4afc 100644 --- a/test/test_unmanaged_wallet.py +++ b/test/test_unmanaged_wallet.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.unmanaged_wallet import UnmanagedWallet diff --git a/test/test_unspent_input.py b/test/test_unspent_input.py index 1eb24355..4853bfd7 100644 --- a/test/test_unspent_input.py +++ b/test/test_unspent_input.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.unspent_input import UnspentInput diff --git a/test/test_unspent_inputs_response.py b/test/test_unspent_inputs_response.py index 0ec0ac16..6446e24b 100644 --- a/test/test_unspent_inputs_response.py +++ b/test/test_unspent_inputs_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.unspent_inputs_response import UnspentInputsResponse diff --git a/test/test_unstake_request.py b/test/test_unstake_request.py index 81ed77b9..b38ef0a5 100644 --- a/test/test_unstake_request.py +++ b/test/test_unstake_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.unstake_request import UnstakeRequest diff --git a/test/test_update_asset_user_metadata_request.py b/test/test_update_asset_user_metadata_request.py index 382fa701..41c2c8e4 100644 --- a/test/test_update_asset_user_metadata_request.py +++ b/test/test_update_asset_user_metadata_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.update_asset_user_metadata_request import ( diff --git a/test/test_update_automation_settings_request.py b/test/test_update_automation_settings_request.py index b2ac5ce1..30862e91 100644 --- a/test/test_update_automation_settings_request.py +++ b/test/test_update_automation_settings_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.update_automation_settings_request import ( diff --git a/test/test_update_blockchain_response.py b/test/test_update_blockchain_response.py index 947027c5..a9e62d88 100644 --- a/test/test_update_blockchain_response.py +++ b/test/test_update_blockchain_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.update_blockchain_response import UpdateBlockchainResponse diff --git a/test/test_update_callback_handler_request.py b/test/test_update_callback_handler_request.py index 35c9eb0a..4d8ebf94 100644 --- a/test/test_update_callback_handler_request.py +++ b/test/test_update_callback_handler_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.update_callback_handler_request import ( diff --git a/test/test_update_callback_handler_response.py b/test/test_update_callback_handler_response.py index ccff656b..20b456ee 100644 --- a/test/test_update_callback_handler_response.py +++ b/test/test_update_callback_handler_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.update_callback_handler_response import ( diff --git a/test/test_update_counterparty_group_request.py b/test/test_update_counterparty_group_request.py index 0414ccb0..dece4343 100644 --- a/test/test_update_counterparty_group_request.py +++ b/test/test_update_counterparty_group_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.update_counterparty_group_request import ( diff --git a/test/test_update_draft_request.py b/test/test_update_draft_request.py index e8248e90..9d630bcb 100644 --- a/test/test_update_draft_request.py +++ b/test/test_update_draft_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.update_draft_request import UpdateDraftRequest diff --git a/test/test_update_legal_entity_request.py b/test/test_update_legal_entity_request.py index 958f65e5..fe1d21b9 100644 --- a/test/test_update_legal_entity_request.py +++ b/test/test_update_legal_entity_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.update_legal_entity_request import UpdateLegalEntityRequest diff --git a/test/test_update_tag_request.py b/test/test_update_tag_request.py index e24f7a98..17a511cc 100644 --- a/test/test_update_tag_request.py +++ b/test/test_update_tag_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.update_tag_request import UpdateTagRequest diff --git a/test/test_update_token_ownership_status_dto.py b/test/test_update_token_ownership_status_dto.py index 5f0fff78..a06ec92b 100644 --- a/test/test_update_token_ownership_status_dto.py +++ b/test/test_update_token_ownership_status_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.update_token_ownership_status_dto import ( diff --git a/test/test_update_vault_account_asset_address_request.py b/test/test_update_vault_account_asset_address_request.py index e6158e26..aa13101c 100644 --- a/test/test_update_vault_account_asset_address_request.py +++ b/test/test_update_vault_account_asset_address_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.update_vault_account_asset_address_request import ( diff --git a/test/test_update_vault_account_request.py b/test/test_update_vault_account_request.py index d8e17ddf..7826eeb4 100644 --- a/test/test_update_vault_account_request.py +++ b/test/test_update_vault_account_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.update_vault_account_request import UpdateVaultAccountRequest diff --git a/test/test_update_webhook_request.py b/test/test_update_webhook_request.py index 42e6ac6c..81bd152f 100644 --- a/test/test_update_webhook_request.py +++ b/test/test_update_webhook_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.update_webhook_request import UpdateWebhookRequest @@ -44,7 +43,15 @@ def make_instance(self, include_optional) -> UpdateWebhookRequest: mtls = fireblocks.models.webhook_mtls.WebhookMtls( client_signed_cert = '-----BEGIN CERTIFICATE----- ... ------END CERTIFICATE-----', ) +-----END CERTIFICATE-----', ), + oauth = fireblocks.models.webhook_o_auth.WebhookOAuth( + client_id = 'my-client-id', + client_secret = 'my-client-secret', + url = 'https://auth.example.com/oauth/token', + mtls_client_signed_cert = '-----BEGIN CERTIFICATE----- +... +-----END CERTIFICATE-----', ), + custom_headers = {"X-Gateway-Key":"abc123","X-Region-Tag":null} ) else: return UpdateWebhookRequest( diff --git a/test/test_us_wire_address.py b/test/test_us_wire_address.py index 38dcb311..1e631bc1 100644 --- a/test/test_us_wire_address.py +++ b/test/test_us_wire_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.us_wire_address import USWireAddress diff --git a/test/test_us_wire_destination.py b/test/test_us_wire_destination.py index 9b45c7d5..d26bc4b9 100644 --- a/test/test_us_wire_destination.py +++ b/test/test_us_wire_destination.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.us_wire_destination import USWireDestination diff --git a/test/test_us_wire_payment_info.py b/test/test_us_wire_payment_info.py index 6c86acc3..a0e031c2 100644 --- a/test/test_us_wire_payment_info.py +++ b/test/test_us_wire_payment_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.us_wire_payment_info import UsWirePaymentInfo diff --git a/test/test_usdc_gateway_wallet_asset.py b/test/test_usdc_gateway_wallet_asset.py index a085965e..e9563068 100644 --- a/test/test_usdc_gateway_wallet_asset.py +++ b/test/test_usdc_gateway_wallet_asset.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.usdc_gateway_wallet_asset import UsdcGatewayWalletAsset diff --git a/test/test_usdc_gateway_wallet_info_response.py b/test/test_usdc_gateway_wallet_info_response.py index 904083ed..7f5f9250 100644 --- a/test/test_usdc_gateway_wallet_info_response.py +++ b/test/test_usdc_gateway_wallet_info_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.usdc_gateway_wallet_info_response import ( diff --git a/test/test_usdc_gateway_wallet_status_response.py b/test/test_usdc_gateway_wallet_status_response.py index a4085374..80da9bc8 100644 --- a/test/test_usdc_gateway_wallet_status_response.py +++ b/test/test_usdc_gateway_wallet_status_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.usdc_gateway_wallet_status_response import ( diff --git a/test/test_user_group_create_request.py b/test/test_user_group_create_request.py index 6969ba2e..67df2a1a 100644 --- a/test/test_user_group_create_request.py +++ b/test/test_user_group_create_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.user_group_create_request import UserGroupCreateRequest diff --git a/test/test_user_group_create_response.py b/test/test_user_group_create_response.py index 3d1c48a6..6da9331f 100644 --- a/test/test_user_group_create_response.py +++ b/test/test_user_group_create_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.user_group_create_response import UserGroupCreateResponse diff --git a/test/test_user_group_response.py b/test/test_user_group_response.py index 0013d1fc..03de4712 100644 --- a/test/test_user_group_response.py +++ b/test/test_user_group_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.user_group_response import UserGroupResponse diff --git a/test/test_user_group_update_request.py b/test/test_user_group_update_request.py index 979f299a..857bb3d6 100644 --- a/test/test_user_group_update_request.py +++ b/test/test_user_group_update_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.user_group_update_request import UserGroupUpdateRequest diff --git a/test/test_user_groups_beta_api.py b/test/test_user_groups_beta_api.py index 56c40b99..2cec7d4c 100644 --- a/test/test_user_groups_beta_api.py +++ b/test/test_user_groups_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.user_groups_beta_api import UserGroupsBetaApi diff --git a/test/test_user_response.py b/test/test_user_response.py index 3cab12f3..dde73901 100644 --- a/test/test_user_response.py +++ b/test/test_user_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.user_response import UserResponse diff --git a/test/test_user_role.py b/test/test_user_role.py index 6f316d8e..860d7ae3 100644 --- a/test/test_user_role.py +++ b/test/test_user_role.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.user_role import UserRole diff --git a/test/test_user_status.py b/test/test_user_status.py index 544c863e..32bdefc4 100644 --- a/test/test_user_status.py +++ b/test/test_user_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.user_status import UserStatus diff --git a/test/test_user_type.py b/test/test_user_type.py index 38013cd0..a490a3c0 100644 --- a/test/test_user_type.py +++ b/test/test_user_type.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.user_type import UserType diff --git a/test/test_users_api.py b/test/test_users_api.py index ca44f278..c39dbe0e 100644 --- a/test/test_users_api.py +++ b/test/test_users_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.users_api import UsersApi diff --git a/test/test_utxo_identifier.py b/test/test_utxo_identifier.py index 90a27a6d..446e09d3 100644 --- a/test/test_utxo_identifier.py +++ b/test/test_utxo_identifier.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.utxo_identifier import UtxoIdentifier diff --git a/test/test_utxo_input.py b/test/test_utxo_input.py index ee88ea37..aa2e82ac 100644 --- a/test/test_utxo_input.py +++ b/test/test_utxo_input.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.utxo_input import UtxoInput diff --git a/test/test_utxo_input2.py b/test/test_utxo_input2.py index 918ec747..0d422034 100644 --- a/test/test_utxo_input2.py +++ b/test/test_utxo_input2.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.utxo_input2 import UtxoInput2 diff --git a/test/test_utxo_input_selection.py b/test/test_utxo_input_selection.py index 8d64a827..f9fdfd3d 100644 --- a/test/test_utxo_input_selection.py +++ b/test/test_utxo_input_selection.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.utxo_input_selection import UtxoInputSelection diff --git a/test/test_utxo_management_beta_api.py b/test/test_utxo_management_beta_api.py index b1ff7cf4..a36b4d4e 100644 --- a/test/test_utxo_management_beta_api.py +++ b/test/test_utxo_management_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.utxo_management_beta_api import UTXOManagementBetaApi diff --git a/test/test_utxo_output.py b/test/test_utxo_output.py index 6908cbe1..7ded1c41 100644 --- a/test/test_utxo_output.py +++ b/test/test_utxo_output.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.utxo_output import UtxoOutput diff --git a/test/test_utxo_selection_filters.py b/test/test_utxo_selection_filters.py index 64834e48..c6d9ef60 100644 --- a/test/test_utxo_selection_filters.py +++ b/test/test_utxo_selection_filters.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.utxo_selection_filters import UtxoSelectionFilters diff --git a/test/test_utxo_selection_params.py b/test/test_utxo_selection_params.py index 561843de..e72e6319 100644 --- a/test/test_utxo_selection_params.py +++ b/test/test_utxo_selection_params.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.utxo_selection_params import UtxoSelectionParams diff --git a/test/test_validate_address_response.py b/test/test_validate_address_response.py index 6f27b964..9765b3a3 100644 --- a/test/test_validate_address_response.py +++ b/test/test_validate_address_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.validate_address_response import ValidateAddressResponse diff --git a/test/test_validate_layer_zero_channel_response.py b/test/test_validate_layer_zero_channel_response.py index 14fe281d..8ebff531 100644 --- a/test/test_validate_layer_zero_channel_response.py +++ b/test/test_validate_layer_zero_channel_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.validate_layer_zero_channel_response import ( diff --git a/test/test_validation_key_dto.py b/test/test_validation_key_dto.py index b7e4587a..f1cf1db0 100644 --- a/test/test_validation_key_dto.py +++ b/test/test_validation_key_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.validation_key_dto import ValidationKeyDto diff --git a/test/test_validator.py b/test/test_validator.py index cd279ade..ad732ff5 100644 --- a/test/test_validator.py +++ b/test/test_validator.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.validator import Validator diff --git a/test/test_vault_account.py b/test/test_vault_account.py index 5a037bfe..2d77f783 100644 --- a/test/test_vault_account.py +++ b/test/test_vault_account.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.vault_account import VaultAccount diff --git a/test/test_vault_account_tag_attachment_operation.py b/test/test_vault_account_tag_attachment_operation.py index b31605ab..8589cba5 100644 --- a/test/test_vault_account_tag_attachment_operation.py +++ b/test/test_vault_account_tag_attachment_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.vault_account_tag_attachment_operation import ( diff --git a/test/test_vault_account_tag_attachment_pending_operation.py b/test/test_vault_account_tag_attachment_pending_operation.py index 7cc0933e..64f6009a 100644 --- a/test/test_vault_account_tag_attachment_pending_operation.py +++ b/test/test_vault_account_tag_attachment_pending_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.vault_account_tag_attachment_pending_operation import ( diff --git a/test/test_vault_account_tag_attachment_rejected_operation.py b/test/test_vault_account_tag_attachment_rejected_operation.py index bbb63a8a..72615903 100644 --- a/test/test_vault_account_tag_attachment_rejected_operation.py +++ b/test/test_vault_account_tag_attachment_rejected_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.vault_account_tag_attachment_rejected_operation import ( diff --git a/test/test_vault_accounts_paged_response.py b/test/test_vault_accounts_paged_response.py index 9299ee4d..e58d088c 100644 --- a/test/test_vault_accounts_paged_response.py +++ b/test/test_vault_accounts_paged_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.vault_accounts_paged_response import VaultAccountsPagedResponse diff --git a/test/test_vault_accounts_paged_response_paging.py b/test/test_vault_accounts_paged_response_paging.py index 4535edf7..b0376177 100644 --- a/test/test_vault_accounts_paged_response_paging.py +++ b/test/test_vault_accounts_paged_response_paging.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.vault_accounts_paged_response_paging import ( diff --git a/test/test_vault_accounts_tag_attachment_operations_request.py b/test/test_vault_accounts_tag_attachment_operations_request.py index 6c61f648..f595179e 100644 --- a/test/test_vault_accounts_tag_attachment_operations_request.py +++ b/test/test_vault_accounts_tag_attachment_operations_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.vault_accounts_tag_attachment_operations_request import ( diff --git a/test/test_vault_accounts_tag_attachment_operations_response.py b/test/test_vault_accounts_tag_attachment_operations_response.py index af4cd6e9..43eb049a 100644 --- a/test/test_vault_accounts_tag_attachment_operations_response.py +++ b/test/test_vault_accounts_tag_attachment_operations_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.vault_accounts_tag_attachment_operations_response import ( diff --git a/test/test_vault_action_status.py b/test/test_vault_action_status.py index 331d2a96..05f59424 100644 --- a/test/test_vault_action_status.py +++ b/test/test_vault_action_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.vault_action_status import VaultActionStatus diff --git a/test/test_vault_asset.py b/test/test_vault_asset.py index eece6c46..f116e519 100644 --- a/test/test_vault_asset.py +++ b/test/test_vault_asset.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.vault_asset import VaultAsset diff --git a/test/test_vault_wallet_address.py b/test/test_vault_wallet_address.py index ac14b434..a50c6569 100644 --- a/test/test_vault_wallet_address.py +++ b/test/test_vault_wallet_address.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.vault_wallet_address import VaultWalletAddress diff --git a/test/test_vaults_api.py b/test/test_vaults_api.py index a3be00d2..0c92e303 100644 --- a/test/test_vaults_api.py +++ b/test/test_vaults_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.vaults_api import VaultsApi diff --git a/test/test_vendor_dto.py b/test/test_vendor_dto.py index f873ffed..98268ac7 100644 --- a/test/test_vendor_dto.py +++ b/test/test_vendor_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.vendor_dto import VendorDto diff --git a/test/test_verdict_config.py b/test/test_verdict_config.py index a4e833ed..0bec8bae 100644 --- a/test/test_verdict_config.py +++ b/test/test_verdict_config.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.verdict_config import VerdictConfig diff --git a/test/test_version_summary.py b/test/test_version_summary.py index a0de6f90..9a2aa420 100644 --- a/test/test_version_summary.py +++ b/test/test_version_summary.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.version_summary import VersionSummary diff --git a/test/test_wallet_asset.py b/test/test_wallet_asset.py index 737651a9..9486677f 100644 --- a/test/test_wallet_asset.py +++ b/test/test_wallet_asset.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.wallet_asset import WalletAsset diff --git a/test/test_wallet_asset_additional_info.py b/test/test_wallet_asset_additional_info.py index 85192885..d3442eba 100644 --- a/test/test_wallet_asset_additional_info.py +++ b/test/test_wallet_asset_additional_info.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.wallet_asset_additional_info import WalletAssetAdditionalInfo diff --git a/test/test_web3_connections_api.py b/test/test_web3_connections_api.py index 51fb0a40..f0bdfd02 100644 --- a/test/test_web3_connections_api.py +++ b/test/test_web3_connections_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.web3_connections_api import Web3ConnectionsApi diff --git a/test/test_webhook.py b/test/test_webhook.py index ede0774a..468760af 100644 --- a/test/test_webhook.py +++ b/test/test_webhook.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.webhook import Webhook @@ -47,7 +46,14 @@ def make_instance(self, include_optional) -> Webhook: mtls = fireblocks.models.webhook_mtls.WebhookMtls( client_signed_cert = '-----BEGIN CERTIFICATE----- ... ------END CERTIFICATE-----', ) +-----END CERTIFICATE-----', ), + oauth = fireblocks.models.webhook_o_auth_response.WebhookOAuthResponse( + client_id = 'my-client-id', + url = 'https://auth.example.com/oauth/token', + mtls_client_signed_cert = '-----BEGIN CERTIFICATE----- +... +-----END CERTIFICATE-----', ), + custom_headers = ["x-gateway-key","x-region-tag"] ) else: return Webhook( diff --git a/test/test_webhook_event.py b/test/test_webhook_event.py index c77f6c36..634d9351 100644 --- a/test/test_webhook_event.py +++ b/test/test_webhook_event.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.webhook_event import WebhookEvent diff --git a/test/test_webhook_metric.py b/test/test_webhook_metric.py index 0729e7ee..f96fcfd5 100644 --- a/test/test_webhook_metric.py +++ b/test/test_webhook_metric.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.webhook_metric import WebhookMetric diff --git a/test/test_webhook_mtls.py b/test/test_webhook_mtls.py index 96226775..c92f9cfb 100644 --- a/test/test_webhook_mtls.py +++ b/test/test_webhook_mtls.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.webhook_mtls import WebhookMtls diff --git a/test/test_webhook_mtls_csr_response.py b/test/test_webhook_mtls_csr_response.py index 5223155e..d01e210c 100644 --- a/test/test_webhook_mtls_csr_response.py +++ b/test/test_webhook_mtls_csr_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.webhook_mtls_csr_response import WebhookMtlsCsrResponse diff --git a/test/test_webhook_o_auth.py b/test/test_webhook_o_auth.py new file mode 100644 index 00000000..6791c088 --- /dev/null +++ b/test/test_webhook_o_auth.py @@ -0,0 +1,61 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.webhook_o_auth import WebhookOAuth + + +class TestWebhookOAuth(unittest.TestCase): + """WebhookOAuth unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> WebhookOAuth: + """Test WebhookOAuth + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `WebhookOAuth` + """ + model = WebhookOAuth() + if include_optional: + return WebhookOAuth( + client_id = 'my-client-id', + client_secret = 'my-client-secret', + url = 'https://auth.example.com/oauth/token', + mtls_client_signed_cert = '-----BEGIN CERTIFICATE----- +... +-----END CERTIFICATE-----' + ) + else: + return WebhookOAuth( + client_id = 'my-client-id', + client_secret = 'my-client-secret', + url = 'https://auth.example.com/oauth/token', + ) + """ + + def testWebhookOAuth(self): + """Test WebhookOAuth""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_webhook_o_auth_response.py b/test/test_webhook_o_auth_response.py new file mode 100644 index 00000000..d08511b6 --- /dev/null +++ b/test/test_webhook_o_auth_response.py @@ -0,0 +1,59 @@ +# coding: utf-8 + +""" +Fireblocks API + +Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com) + +The version of the OpenAPI document: 1.6.2 +Contact: developers@fireblocks.com +Generated by OpenAPI Generator (https://openapi-generator.tech) + +Do not edit the class manually. +""" # noqa: E501 + +import unittest + +from fireblocks.models.webhook_o_auth_response import WebhookOAuthResponse + + +class TestWebhookOAuthResponse(unittest.TestCase): + """WebhookOAuthResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> WebhookOAuthResponse: + """Test WebhookOAuthResponse + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included""" + # uncomment below to create an instance of `WebhookOAuthResponse` + """ + model = WebhookOAuthResponse() + if include_optional: + return WebhookOAuthResponse( + client_id = 'my-client-id', + url = 'https://auth.example.com/oauth/token', + mtls_client_signed_cert = '-----BEGIN CERTIFICATE----- +... +-----END CERTIFICATE-----' + ) + else: + return WebhookOAuthResponse( + client_id = 'my-client-id', + url = 'https://auth.example.com/oauth/token', + ) + """ + + def testWebhookOAuthResponse(self): + """Test WebhookOAuthResponse""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_webhook_paginated_response.py b/test/test_webhook_paginated_response.py index 60c07690..7772925a 100644 --- a/test/test_webhook_paginated_response.py +++ b/test/test_webhook_paginated_response.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.webhook_paginated_response import WebhookPaginatedResponse @@ -49,7 +48,14 @@ def make_instance(self, include_optional) -> WebhookPaginatedResponse: mtls = fireblocks.models.webhook_mtls.WebhookMtls( client_signed_cert = '-----BEGIN CERTIFICATE----- ... ------END CERTIFICATE-----', ), ) +-----END CERTIFICATE-----', ), + oauth = fireblocks.models.webhook_o_auth_response.WebhookOAuthResponse( + client_id = 'my-client-id', + url = 'https://auth.example.com/oauth/token', + mtls_client_signed_cert = '-----BEGIN CERTIFICATE----- +... +-----END CERTIFICATE-----', ), + custom_headers = ["x-gateway-key","x-region-tag"], ) ], next = 'eJ0eXAiOiJKV1QiLCJhbGcOiJIUzI1NiJ9' ) @@ -67,7 +73,14 @@ def make_instance(self, include_optional) -> WebhookPaginatedResponse: mtls = fireblocks.models.webhook_mtls.WebhookMtls( client_signed_cert = '-----BEGIN CERTIFICATE----- ... ------END CERTIFICATE-----', ), ) +-----END CERTIFICATE-----', ), + oauth = fireblocks.models.webhook_o_auth_response.WebhookOAuthResponse( + client_id = 'my-client-id', + url = 'https://auth.example.com/oauth/token', + mtls_client_signed_cert = '-----BEGIN CERTIFICATE----- +... +-----END CERTIFICATE-----', ), + custom_headers = ["x-gateway-key","x-region-tag"], ) ], ) """ diff --git a/test/test_webhooks_api.py b/test/test_webhooks_api.py index 9ab07c0e..83bf615d 100644 --- a/test/test_webhooks_api.py +++ b/test/test_webhooks_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.webhooks_api import WebhooksApi diff --git a/test/test_webhooks_v2_api.py b/test/test_webhooks_v2_api.py index 81081906..1f85e29f 100644 --- a/test/test_webhooks_v2_api.py +++ b/test/test_webhooks_v2_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.webhooks_v2_api import WebhooksV2Api diff --git a/test/test_whitelist_ip_addresses_api.py b/test/test_whitelist_ip_addresses_api.py index 31de0cd8..108390ce 100644 --- a/test/test_whitelist_ip_addresses_api.py +++ b/test/test_whitelist_ip_addresses_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.whitelist_ip_addresses_api import WhitelistIpAddressesApi diff --git a/test/test_withdraw_request.py b/test/test_withdraw_request.py index e3f74c83..a123fc64 100644 --- a/test/test_withdraw_request.py +++ b/test/test_withdraw_request.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.withdraw_request import WithdrawRequest diff --git a/test/test_workflow_config_status.py b/test/test_workflow_config_status.py index 689ee684..0196d046 100644 --- a/test/test_workflow_config_status.py +++ b/test/test_workflow_config_status.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.workflow_config_status import WorkflowConfigStatus diff --git a/test/test_workflow_configuration_id.py b/test/test_workflow_configuration_id.py index 4c7cc080..ae5b4054 100644 --- a/test/test_workflow_configuration_id.py +++ b/test/test_workflow_configuration_id.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.workflow_configuration_id import WorkflowConfigurationId diff --git a/test/test_workflow_execution_operation.py b/test/test_workflow_execution_operation.py index 1e2ac807..70b2ec85 100644 --- a/test/test_workflow_execution_operation.py +++ b/test/test_workflow_execution_operation.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.workflow_execution_operation import WorkflowExecutionOperation diff --git a/test/test_workspace.py b/test/test_workspace.py index 08909461..a8ba7494 100644 --- a/test/test_workspace.py +++ b/test/test_workspace.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.workspace import Workspace diff --git a/test/test_workspace_api.py b/test/test_workspace_api.py index 77f6502f..115cde62 100644 --- a/test/test_workspace_api.py +++ b/test/test_workspace_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.workspace_api import WorkspaceApi diff --git a/test/test_workspace_status_beta_api.py b/test/test_workspace_status_beta_api.py index c682261a..eebc21bc 100644 --- a/test/test_workspace_status_beta_api.py +++ b/test/test_workspace_status_beta_api.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.api.workspace_status_beta_api import WorkspaceStatusBetaApi diff --git a/test/test_write_abi_function.py b/test/test_write_abi_function.py index 3d8dddce..bf07d7f6 100644 --- a/test/test_write_abi_function.py +++ b/test/test_write_abi_function.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.write_abi_function import WriteAbiFunction diff --git a/test/test_write_call_function_dto.py b/test/test_write_call_function_dto.py index dc2fc2d6..3c7dd8e9 100644 --- a/test/test_write_call_function_dto.py +++ b/test/test_write_call_function_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.write_call_function_dto import WriteCallFunctionDto diff --git a/test/test_write_call_function_dto_abi_function.py b/test/test_write_call_function_dto_abi_function.py index d055ed5e..7edd9fa5 100644 --- a/test/test_write_call_function_dto_abi_function.py +++ b/test/test_write_call_function_dto_abi_function.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.write_call_function_dto_abi_function import ( diff --git a/test/test_write_call_function_response_dto.py b/test/test_write_call_function_response_dto.py index f6bb2b4f..f66f8539 100644 --- a/test/test_write_call_function_response_dto.py +++ b/test/test_write_call_function_response_dto.py @@ -12,7 +12,6 @@ Do not edit the class manually. """ # noqa: E501 - import unittest from fireblocks.models.write_call_function_response_dto import (