Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.04 KB

File metadata and controls

34 lines (25 loc) · 1.04 KB

UserProfileVM

Properties

Name Type Description Notes
id str [optional]
name str [optional]
username str [optional]
email str [optional]
is_read_only bool [optional]
t str

Example

from fastreport_cloud_sdk.models.user_profile_vm import UserProfileVM

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

# convert the object into a dict
user_profile_vm_dict = user_profile_vm_instance.to_dict()
# create an instance of UserProfileVM from a dict
user_profile_vm_form_dict = user_profile_vm.from_dict(user_profile_vm_dict)

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