| Name |
Type |
Description |
Notes |
| user_id |
str |
Identity reference by user ID |
|
| group_id |
str |
Identity reference by group ID |
|
from saturn_api.models.identity_reference import IdentityReference
# TODO update the JSON string below
json = "{}"
# create an instance of IdentityReference from a JSON string
identity_reference_instance = IdentityReference.from_json(json)
# print the JSON string representation of the object
print(IdentityReference.to_json())
# convert the object into a dict
identity_reference_dict = identity_reference_instance.to_dict()
# create an instance of IdentityReference from a dict
identity_reference_from_dict = IdentityReference.from_dict(identity_reference_dict)
[Back to Model list] [Back to API list] [Back to README]