Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 906 Bytes

File metadata and controls

30 lines (21 loc) · 906 Bytes

InvitedUser

Properties

Name Type Description Notes
user_id str [optional]
invited_at datetime [optional]

Example

from fastreport_cloud_sdk.models.invited_user import InvitedUser

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

# convert the object into a dict
invited_user_dict = invited_user_instance.to_dict()
# create an instance of InvitedUser from a dict
invited_user_form_dict = invited_user.from_dict(invited_user_dict)

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