Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.41 KB

File metadata and controls

37 lines (28 loc) · 1.41 KB

DataExportDataUserProfile

Properties

Name Type Description Notes
user_id int [optional]
username str [optional]
email str [optional]
first_name str [optional]
last_name str [optional]
account_enabled bool [optional]
account_created datetime [optional]
last_updated datetime [optional]
user_settings object User preference settings (if any) [optional]

Example

from multiflexi_client.models.data_export_data_user_profile import DataExportDataUserProfile

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

# convert the object into a dict
data_export_data_user_profile_dict = data_export_data_user_profile_instance.to_dict()
# create an instance of DataExportDataUserProfile from a dict
data_export_data_user_profile_from_dict = DataExportDataUserProfile.from_dict(data_export_data_user_profile_dict)

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