Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1011 Bytes

File metadata and controls

32 lines (23 loc) · 1011 Bytes

CreatorInfo

Information about who created or updated a resource.

Properties

Name Type Description Notes
user_id str User identifier
email str User email address [optional]
name str User display name [optional]

Example

from mixpeek.models.creator_info import CreatorInfo

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

# convert the object into a dict
creator_info_dict = creator_info_instance.to_dict()
# create an instance of CreatorInfo from a dict
creator_info_from_dict = CreatorInfo.from_dict(creator_info_dict)

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