Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 842 Bytes

Removemember.md

File metadata and controls

29 lines (20 loc) · 842 Bytes

Removemember

Properties

Name Type Description Notes
email str

Example

from hyperstack.models.removemember import Removemember

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

# convert the object into a dict
removemember_dict = removemember_instance.to_dict()
# create an instance of Removemember from a dict
removemember_form_dict = removemember.from_dict(removemember_dict)

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