Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1004 Bytes

File metadata and controls

30 lines (21 loc) · 1004 Bytes

IdentityReference

Properties

Name Type Description Notes
user_id str Identity reference by user ID
group_id str Identity reference by group ID

Example

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]