Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

AggregationAPIError

Properties

Name Type Description Notes
status APIStatus
reason str
code str
valid_resource_names List[str] [optional]

Example

from client.models.aggregation_api_error import AggregationAPIError

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

# convert the object into a dict
aggregation_api_error_dict = aggregation_api_error_instance.to_dict()
# create an instance of AggregationAPIError from a dict
aggregation_api_error_from_dict = AggregationAPIError.from_dict(aggregation_api_error_dict)

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