OkResponse
Properties
| Name |
Type |
Description |
Notes |
| ok |
bool |
|
|
Example
from amgix_client.models.ok_response import OkResponse
# TODO update the JSON string below
json = "{}"
# create an instance of OkResponse from a JSON string
ok_response_instance = OkResponse.from_json(json)
# print the JSON string representation of the object
print(OkResponse.to_json())
# convert the object into a dict
ok_response_dict = ok_response_instance.to_dict()
# create an instance of OkResponse from a dict
ok_response_from_dict = OkResponse.from_dict(ok_response_dict)
[Back to Model list] [Back to API list] [Back to README]