| Name |
Type |
Description |
Notes |
| id |
UUID |
|
[optional] |
from opal_security.models.create_request200_response import CreateRequest200Response
# TODO update the JSON string below
json = "{}"
# create an instance of CreateRequest200Response from a JSON string
create_request200_response_instance = CreateRequest200Response.from_json(json)
# print the JSON string representation of the object
print(CreateRequest200Response.to_json())
# convert the object into a dict
create_request200_response_dict = create_request200_response_instance.to_dict()
# create an instance of CreateRequest200Response from a dict
create_request200_response_from_dict = CreateRequest200Response.from_dict(create_request200_response_dict)
[Back to Model list] [Back to API list] [Back to README]