| Name | Type | Description | Notes |
|---|---|---|---|
| links | List[Link] | ||
| data | Endpoint | ||
| errors | List[Error] |
from bandwidth.models.endpoint_response import EndpointResponse
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointResponse from a JSON string
endpoint_response_instance = EndpointResponse.from_json(json)
# print the JSON string representation of the object
print(EndpointResponse.to_json())
# convert the object into a dict
endpoint_response_dict = endpoint_response_instance.to_dict()
# create an instance of EndpointResponse from a dict
endpoint_response_from_dict = EndpointResponse.from_dict(endpoint_response_dict)