| Name | Type | Description | Notes |
|---|---|---|---|
| artifacts | List[Artifact] | [optional] | |
| pagination | Pagination | [optional] |
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)