Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 982 Bytes

File metadata and controls

29 lines (20 loc) · 982 Bytes

RemoveMemberPayload

Properties

Name Type Description Notes
email str The email of the user to be removed.

Example

from hyperstack.models.remove_member_payload import RemoveMemberPayload

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

# convert the object into a dict
remove_member_payload_dict = remove_member_payload_instance.to_dict()
# create an instance of RemoveMemberPayload from a dict
remove_member_payload_from_dict = RemoveMemberPayload.from_dict(remove_member_payload_dict)

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