Name | Type | Description | Notes |
---|---|---|---|
name | str | ||
message | str | ||
http_status_code | float | ||
trace_id | str | ||
details | List[InvalidParameterErrorDetailsInner] | [optional] |
from affinidi_tdk_iota_client.models.resource_limit_exceeded_error import ResourceLimitExceededError
# TODO update the JSON string below
json = "{}"
# create an instance of ResourceLimitExceededError from a JSON string
resource_limit_exceeded_error_instance = ResourceLimitExceededError.from_json(json)
# print the JSON string representation of the object
print ResourceLimitExceededError.to_json()
# convert the object into a dict
resource_limit_exceeded_error_dict = resource_limit_exceeded_error_instance.to_dict()
# create an instance of ResourceLimitExceededError from a dict
resource_limit_exceeded_error_from_dict = ResourceLimitExceededError.from_dict(resource_limit_exceeded_error_dict)