Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

CorsResponseCompound.md

File metadata and controls

32 lines (23 loc) · 1.1 KB

CorsResponseCompound

A Cors Object

Properties

Name Type Description Notes
pki_cors_id int The unique ID of the Cors
fki_apikey_id int The unique ID of the Apikey
s_cors_entryurl str The entryurl of the Cors

Example

from eZmaxApi.models.cors_response_compound import CorsResponseCompound

# TODO update the JSON string below
json = "{}"
# create an instance of CorsResponseCompound from a JSON string
cors_response_compound_instance = CorsResponseCompound.from_json(json)
# print the JSON string representation of the object
print(CorsResponseCompound.to_json())

# convert the object into a dict
cors_response_compound_dict = cors_response_compound_instance.to_dict()
# create an instance of CorsResponseCompound from a dict
cors_response_compound_form_dict = cors_response_compound.from_dict(cors_response_compound_dict)

[Back to Model list] [Back to API list] [Back to README]