Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1021 Bytes

File metadata and controls

30 lines (21 loc) · 1021 Bytes

ViewerCreate

Properties

Name Type Description Notes
identity IdentityReference Reference to an identity.
route_id str Route ID to allow view access to. If null, all routes are granted. [optional]

Example

from saturn_api.models.viewer_create import ViewerCreate

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

# convert the object into a dict
viewer_create_dict = viewer_create_instance.to_dict()
# create an instance of ViewerCreate from a dict
viewer_create_from_dict = ViewerCreate.from_dict(viewer_create_dict)

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