Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 983 Bytes

File metadata and controls

29 lines (20 loc) · 983 Bytes

OrgInvitationUpdate

Properties

Name Type Description Notes
status InvitationStatus

Example

from saturn_api.models.org_invitation_update import OrgInvitationUpdate

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

# convert the object into a dict
org_invitation_update_dict = org_invitation_update_instance.to_dict()
# create an instance of OrgInvitationUpdate from a dict
org_invitation_update_from_dict = OrgInvitationUpdate.from_dict(org_invitation_update_dict)

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