Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 844 Bytes

File metadata and controls

30 lines (21 loc) · 844 Bytes

Creators

Properties

Name Type Description Notes
user_id str [optional]
created_by str [optional]

Example

from boldsign.models.creators import Creators

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

# convert the object into a dict
creators_dict = creators_instance.to_dict()
# create an instance of Creators from a dict
creators_from_dict = Creators.from_dict(creators_dict)

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