Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.31 KB

File metadata and controls

30 lines (21 loc) · 1.31 KB

EmbeddedWalletPaginatedAssetsResponse

Properties

Name Type Description Notes
data List[EmbeddedWalletAssetResponse] The data of the current page
next str The ID of the next page [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]