Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

AddTenantMember201Response

Properties

Name Type Description Notes
message str [optional]

Example

from sensorbucket.models.add_tenant_member201_response import AddTenantMember201Response

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

# convert the object into a dict
add_tenant_member201_response_dict = add_tenant_member201_response_instance.to_dict()
# create an instance of AddTenantMember201Response from a dict
add_tenant_member201_response_from_dict = AddTenantMember201Response.from_dict(add_tenant_member201_response_dict)

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