AssetsListResponse
| Name | Type | Description | Notes |
|---|---|---|---|
| assets | List[AssetItem] | Array of asset objects containing complete metadata | |
| last_id | int | The ID of the last asset in the current page. Used as the last_id parameter for retrieving the next page. | |
| next_page | str | URL to retrieve the next page of assets. Null if there are no more assets. |
from hlconnect_client.models.assets_list_response import AssetsListResponse
# TODO update the JSON string below
json = "{}"
# create an instance of AssetsListResponse from a JSON string
assets_list_response_instance = AssetsListResponse.from_json(json)
# print the JSON string representation of the object
print(AssetsListResponse.to_json())
# convert the object into a dict
assets_list_response_dict = assets_list_response_instance.to_dict()
# create an instance of AssetsListResponse from a dict
assets_list_response_from_dict = AssetsListResponse.from_dict(assets_list_response_dict)