Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 937 Bytes

File metadata and controls

29 lines (21 loc) · 937 Bytes

SpecialUser

Properties

Name Type Description Notes
is_special str [default to 'yes']
my_specials List[SPECIALCLAIM] [optional]

Example

from vcell_client.models.special_user import SpecialUser

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

# convert the object into a dict
special_user_dict = special_user_instance.to_dict()
# create an instance of SpecialUser from a dict
special_user_form_dict = special_user.from_dict(special_user_dict)

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