Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Latest commit

 

History

History
36 lines (28 loc) · 1.26 KB

ArtifactUpdate.md

File metadata and controls

36 lines (28 loc) · 1.26 KB

ArtifactUpdate

Properties

Name Type Description Notes
title str [optional]
public bool [optional]
status ArtifactStatus [optional]
type ArtifactType [optional]
views int [optional]
project_id str [optional]
parent_id str [optional]
is_template bool [optional]
payload RenderPayload [optional]

Example

from dream3d.models.artifact_update import ArtifactUpdate

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

# convert the object into a dict
artifact_update_dict = artifact_update_instance.to_dict()
# create an instance of ArtifactUpdate from a dict
artifact_update_form_dict = artifact_update.from_dict(artifact_update_dict)

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