| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[EmbeddedWalletAssetResponse] | The data of the current page | |
| next | str | The ID of the next page | [optional] |
from fireblocks.models.embedded_wallet_paginated_assets_response import EmbeddedWalletPaginatedAssetsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of EmbeddedWalletPaginatedAssetsResponse from a JSON string
embedded_wallet_paginated_assets_response_instance = EmbeddedWalletPaginatedAssetsResponse.from_json(json)
# print the JSON string representation of the object
print(EmbeddedWalletPaginatedAssetsResponse.to_json())
# convert the object into a dict
embedded_wallet_paginated_assets_response_dict = embedded_wallet_paginated_assets_response_instance.to_dict()
# create an instance of EmbeddedWalletPaginatedAssetsResponse from a dict
embedded_wallet_paginated_assets_response_from_dict = EmbeddedWalletPaginatedAssetsResponse.from_dict(embedded_wallet_paginated_assets_response_dict)