| Name |
Type |
Description |
Notes |
| message |
str |
|
[optional] |
from sensorbucket.models.revoke_api_key200_response import RevokeApiKey200Response
# TODO update the JSON string below
json = "{}"
# create an instance of RevokeApiKey200Response from a JSON string
revoke_api_key200_response_instance = RevokeApiKey200Response.from_json(json)
# print the JSON string representation of the object
print(RevokeApiKey200Response.to_json())
# convert the object into a dict
revoke_api_key200_response_dict = revoke_api_key200_response_instance.to_dict()
# create an instance of RevokeApiKey200Response from a dict
revoke_api_key200_response_from_dict = RevokeApiKey200Response.from_dict(revoke_api_key200_response_dict)
[Back to Model list] [Back to API list] [Back to README]