| Name | Type | Description | Notes |
|---|---|---|---|
| links | List[Link] | ||
| page | Page | [optional] | |
| data | List[Endpoints] | ||
| errors | List[Error] |
from bandwidth.models.list_endpoints_response import ListEndpointsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListEndpointsResponse from a JSON string
list_endpoints_response_instance = ListEndpointsResponse.from_json(json)
# print the JSON string representation of the object
print(ListEndpointsResponse.to_json())
# convert the object into a dict
list_endpoints_response_dict = list_endpoints_response_instance.to_dict()
# create an instance of ListEndpointsResponse from a dict
list_endpoints_response_from_dict = ListEndpointsResponse.from_dict(list_endpoints_response_dict)