Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

CreateEndpointResponse

Properties

Name Type Description Notes
links List[Link]
data CreateEndpointResponseData
errors List[Error]

Example

from bandwidth.models.create_endpoint_response import CreateEndpointResponse

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

# convert the object into a dict
create_endpoint_response_dict = create_endpoint_response_instance.to_dict()
# create an instance of CreateEndpointResponse from a dict
create_endpoint_response_from_dict = CreateEndpointResponse.from_dict(create_endpoint_response_dict)

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