Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1023 Bytes

File metadata and controls

29 lines (20 loc) · 1023 Bytes

CreateRequest200Response

Properties

Name Type Description Notes
id UUID [optional]

Example

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]