Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

File metadata and controls

32 lines (23 loc) · 1.25 KB

AssetsListResponse

AssetsListResponse

Properties

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.

Example

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)

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