Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,12 @@ docs/ConnectedSingleAccount.md
docs/ConnectedSingleAccountResponse.md
docs/ConsoleUser.md
docs/ConsoleUserApi.md
docs/Contact.md
docs/ContactApprovalRequest.md
docs/ContactTag.md
docs/ContactTagAttachmentPending.md
docs/ContactsApi.md
docs/ContactsPagedResponse.md
docs/ContractAbiResponseDto.md
docs/ContractAbiResponseDtoAbiInner.md
docs/ContractAddressResponse.md
Expand Down Expand Up @@ -1266,6 +1272,7 @@ fireblocks/api/compliance_api.py
fireblocks/api/compliance_screening_configuration_api.py
fireblocks/api/connected_accounts_beta_api.py
fireblocks/api/console_user_api.py
fireblocks/api/contacts_api.py
fireblocks/api/contract_interactions_api.py
fireblocks/api/contract_templates_api.py
fireblocks/api/contracts_api.py
Expand Down Expand Up @@ -1542,6 +1549,11 @@ fireblocks/models/connected_accounts_response.py
fireblocks/models/connected_single_account.py
fireblocks/models/connected_single_account_response.py
fireblocks/models/console_user.py
fireblocks/models/contact.py
fireblocks/models/contact_approval_request.py
fireblocks/models/contact_tag.py
fireblocks/models/contact_tag_attachment_pending.py
fireblocks/models/contacts_paged_response.py
fireblocks/models/contract_abi_response_dto.py
fireblocks/models/contract_abi_response_dto_abi_inner.py
fireblocks/models/contract_address_response.py
Expand Down Expand Up @@ -2773,6 +2785,12 @@ test/test_connected_single_account.py
test/test_connected_single_account_response.py
test/test_console_user.py
test/test_console_user_api.py
test/test_contact.py
test/test_contact_approval_request.py
test/test_contact_tag.py
test/test_contact_tag_attachment_pending.py
test/test_contacts_api.py
test/test_contacts_paged_response.py
test/test_contract_abi_response_dto.py
test/test_contract_abi_response_dto_abi_inner.py
test/test_contract_address_response.py
Expand Down
290 changes: 0 additions & 290 deletions CHANGELOG.md

This file was deleted.

6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@ Class | Method | HTTP request | Description
*ConnectedAccountsBetaApi* | [**sync_connected_account_allowlist**](docs/ConnectedAccountsBetaApi.md#sync_connected_account_allowlist) | **POST** /connected_accounts/{accountId}/allowlist/sync | Sync allowlist for connected account
*ConsoleUserApi* | [**create_console_user**](docs/ConsoleUserApi.md#create_console_user) | **POST** /management/users | Create console user
*ConsoleUserApi* | [**get_console_users**](docs/ConsoleUserApi.md#get_console_users) | **GET** /management/users | Get console users
*ContactsApi* | [**get_contacts**](docs/ContactsApi.md#get_contacts) | **GET** /contacts | List contacts
*ContractInteractionsApi* | [**decode_contract_data**](docs/ContractInteractionsApi.md#decode_contract_data) | **POST** /contract_interactions/base_asset_id/{baseAssetId}/contract_address/{contractAddress}/decode | Decode a function call data, error, or event log
*ContractInteractionsApi* | [**get_contract_address**](docs/ContractInteractionsApi.md#get_contract_address) | **GET** /contract_interactions/base_asset_id/{baseAssetId}/tx_hash/{txHash} | Get contract address by transaction hash
*ContractInteractionsApi* | [**get_deployed_contract_abi**](docs/ContractInteractionsApi.md#get_deployed_contract_abi) | **GET** /contract_interactions/base_asset_id/{baseAssetId}/contract_address/{contractAddress}/functions | Return deployed contract's ABI
Expand Down Expand Up @@ -913,6 +914,11 @@ Class | Method | HTTP request | Description
- [ConnectedSingleAccount](docs/ConnectedSingleAccount.md)
- [ConnectedSingleAccountResponse](docs/ConnectedSingleAccountResponse.md)
- [ConsoleUser](docs/ConsoleUser.md)
- [Contact](docs/Contact.md)
- [ContactApprovalRequest](docs/ContactApprovalRequest.md)
- [ContactTag](docs/ContactTag.md)
- [ContactTagAttachmentPending](docs/ContactTagAttachmentPending.md)
- [ContactsPagedResponse](docs/ContactsPagedResponse.md)
- [ContractAbiResponseDto](docs/ContractAbiResponseDto.md)
- [ContractAbiResponseDtoAbiInner](docs/ContractAbiResponseDtoAbiInner.md)
- [ContractAddressResponse](docs/ContractAddressResponse.md)
Expand Down
40 changes: 40 additions & 0 deletions docs/Contact.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Contact

A contact in the workspace address book.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The unique identifier of the contact |
**name** | **str** | The contact name, unique across the workspace |
**type** | **str** | Whether the contact is an external party or an account the workspace owns elsewhere |
**access_control** | **str** | The access control applied to the contact. Absent when none is set. | [optional]
**notes** | **str** | Free-text notes on the contact. Absent when none are set. | [optional]
**external_ref_id** | **str** | A customer-supplied reference id for the contact. Absent when none is set. | [optional]
**container_id** | **str** | The container holding the contact. Absent when the contact sits at the root. | [optional]
**updated_at** | **datetime** | The date and time the contact was last modified, in ISO-8601 |
**archived_at** | **datetime** | The date and time the contact was archived, in ISO-8601. Absent for live contacts, so this only carries a value when the request passed archived=true. | [optional]
**tags** | [**List[ContactTag]**](ContactTag.md) | The tags attached to the contact |
**pending_approval_request** | [**ContactApprovalRequest**](ContactApprovalRequest.md) | |

## Example

```python
from fireblocks.models.contact import Contact

# TODO update the JSON string below
json = "{}"
# create an instance of Contact from a JSON string
contact_instance = Contact.from_json(json)
# print the JSON string representation of the object
print(Contact.to_json())

# convert the object into a dict
contact_dict = contact_instance.to_dict()
# create an instance of Contact from a dict
contact_from_dict = Contact.from_dict(contact_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)


Loading
Loading