| Name |
Type |
Description |
Notes |
| id |
str |
The Fireblocks NFT asset id |
|
| token_id |
str |
Token id within the contract/collection |
|
| standard |
str |
ERC721 / ERC1155 |
|
| metadata_uri |
str |
URL of the original token JSON metadata |
[optional] |
| cached_metadata_uri |
str |
URL of the cached token JSON metadata |
[optional] |
| media |
List[MediaEntityResponse] |
Media items extracted from metadata JSON |
[optional] |
| spam |
SpamOwnershipResponse |
Owned Token's Spam status |
[optional] |
| collection |
TokenCollectionResponse |
Parent collection information |
[optional] |
| balance |
str |
|
|
| vault_account_id |
str |
|
[optional] |
| ownership_start_time |
float |
|
|
| ownership_last_update_time |
float |
|
|
| blockchain_descriptor |
str |
|
|
| description |
str |
|
[optional] |
| name |
str |
|
[optional] |
| ncw_id |
str |
Ownership Non-Custodial Wallet ID |
[optional] |
| ncw_account_id |
str |
Ownership Non-Custodial Wallet's account ID |
[optional] |
| status |
str |
Owned Token's status |
|
from fireblocks.models.token_ownership_response import TokenOwnershipResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TokenOwnershipResponse from a JSON string
token_ownership_response_instance = TokenOwnershipResponse.from_json(json)
# print the JSON string representation of the object
print(TokenOwnershipResponse.to_json())
# convert the object into a dict
token_ownership_response_dict = token_ownership_response_instance.to_dict()
# create an instance of TokenOwnershipResponse from a dict
token_ownership_response_from_dict = TokenOwnershipResponse.from_dict(token_ownership_response_dict)
[Back to Model list] [Back to API list] [Back to README]