A Cors Object
| Name | Type | Description | Notes |
|---|---|---|---|
| pki_cors_id | int | The unique ID of the Cors | [optional] |
| fki_apikey_id | int | The unique ID of the Apikey | |
| s_cors_entryurl | str | The entryurl of the Cors |
from eZmaxApi.models.cors_request import CorsRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CorsRequest from a JSON string
cors_request_instance = CorsRequest.from_json(json)
# print the JSON string representation of the object
print(CorsRequest.to_json())
# convert the object into a dict
cors_request_dict = cors_request_instance.to_dict()
# create an instance of CorsRequest from a dict
cors_request_from_dict = CorsRequest.from_dict(cors_request_dict)