Information about who created or updated a resource.
| Name | Type | Description | Notes |
|---|---|---|---|
| user_id | str | User identifier | |
| str | User email address | [optional] | |
| name | str | User display name | [optional] |
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)