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

Latest commit

 

History

History
29 lines (21 loc) · 927 Bytes

MaterialUpdate.md

File metadata and controls

29 lines (21 loc) · 927 Bytes

MaterialUpdate

Properties

Name Type Description Notes
name str
public bool [optional] [default to False]

Example

from dream3d.models.material_update import MaterialUpdate

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

# convert the object into a dict
material_update_dict = material_update_instance.to_dict()
# create an instance of MaterialUpdate from a dict
material_update_form_dict = material_update.from_dict(material_update_dict)

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