Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.34 KB

File metadata and controls

33 lines (24 loc) · 1.34 KB

CORSConfigurationResponse

Response model for CORS configuration operations.

Properties

Name Type Description Notes
success bool Whether the CORS configuration was successful
bucket str The object storage bucket name where CORS was configured
applied_configuration Dict[str, object] The CORS configuration that was applied to the bucket
message str Human-readable status message

Example

from mixpeek.models.cors_configuration_response import CORSConfigurationResponse

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

# convert the object into a dict
cors_configuration_response_dict = cors_configuration_response_instance.to_dict()
# create an instance of CORSConfigurationResponse from a dict
cors_configuration_response_from_dict = CORSConfigurationResponse.from_dict(cors_configuration_response_dict)

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