Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 959 Bytes

File metadata and controls

30 lines (21 loc) · 959 Bytes

ArtifactList

Properties

Name Type Description Notes
artifacts List[Artifact] [optional]
pagination Pagination [optional]

Example

from ibutsu_client.models.artifact_list import ArtifactList

# TODO update the JSON string below
json = "{}"
# create an instance of ArtifactList from a JSON string
artifact_list_instance = ArtifactList.from_json(json)
# print the JSON string representation of the object
print(ArtifactList.to_json())

# convert the object into a dict
artifact_list_dict = artifact_list_instance.to_dict()
# create an instance of ArtifactList from a dict
artifact_list_from_dict = ArtifactList.from_dict(artifact_list_dict)

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