Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.12 KB

UserRegistrationInfo.md

File metadata and controls

32 lines (24 loc) · 1.12 KB

UserRegistrationInfo

Properties

Name Type Description Notes
user_id str [optional]
title str [optional]
organization str [optional]
country str [optional]
email_notification bool [optional]

Example

from vcell_api_client.models.user_registration_info import UserRegistrationInfo

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

# convert the object into a dict
user_registration_info_dict = user_registration_info_instance.to_dict()
# create an instance of UserRegistrationInfo from a dict
user_registration_info_form_dict = user_registration_info.from_dict(user_registration_info_dict)

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