Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 926 Bytes

ArtifactsResponse.md

File metadata and controls

28 lines (20 loc) · 926 Bytes

ArtifactsResponse

Properties

Name Type Description Notes
artifacts object

Example

from aim_platform_sdk.models.artifacts_response import ArtifactsResponse

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

# convert the object into a dict
artifacts_response_dict = artifacts_response_instance.to_dict()
# create an instance of ArtifactsResponse from a dict
artifacts_response_form_dict = artifacts_response.from_dict(artifacts_response_dict)

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