thousandeyes-sdk-python/streaming_api/docs/ApiErrorIntegrationLimits.md
2023-12-11 09:29:15 +00:00

1.1 KiB

ApiErrorIntegrationLimits

Properties

Name Type Description Notes
timestamp int [optional]
http_status str [optional]
errors List[str] [optional]
path str [optional]

Example

from streaming_api.models.api_error_integration_limits import ApiErrorIntegrationLimits

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

# convert the object into a dict
api_error_integration_limits_dict = api_error_integration_limits_instance.to_dict()
# create an instance of ApiErrorIntegrationLimits from a dict
api_error_integration_limits_form_dict = api_error_integration_limits.from_dict(api_error_integration_limits_dict)

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