Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.11 KB

ManageUserArtifactRequest.md

File metadata and controls

29 lines (21 loc) · 1.11 KB

ManageUserArtifactRequest

Properties

Name Type Description Notes
artifact_id object The Id of the artifact.
action object The action to take on the artifact.

Example

from aim_platform_sdk.models.manage_user_artifact_request import ManageUserArtifactRequest

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

# convert the object into a dict
manage_user_artifact_request_dict = manage_user_artifact_request_instance.to_dict()
# create an instance of ManageUserArtifactRequest from a dict
manage_user_artifact_request_form_dict = manage_user_artifact_request.from_dict(manage_user_artifact_request_dict)

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