thousandeyes-sdk-python/thousandeyes-sdk-streaming/docs/ApiErrorIntegrationLimits.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

1.2 KiB

ApiErrorIntegrationLimits

Properties

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

Example

from thousandeyes_sdk.streaming.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_from_dict = ApiErrorIntegrationLimits.from_dict(api_error_integration_limits_dict)

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