Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.34 KB

File metadata and controls

33 lines (24 loc) · 1.34 KB

CreateEndpointRequestBase

Properties

Name Type Description Notes
type EndpointTypeEnum
direction EndpointDirectionEnum
event_callback_url str The URL to send event callbacks to. [optional]
event_fallback_url str The URL to send event fallbacks to. [optional]
tag str A tag for the endpoint. [optional]

Example

from bandwidth.models.create_endpoint_request_base import CreateEndpointRequestBase

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

# convert the object into a dict
create_endpoint_request_base_dict = create_endpoint_request_base_instance.to_dict()
# create an instance of CreateEndpointRequestBase from a dict
create_endpoint_request_base_from_dict = CreateEndpointRequestBase.from_dict(create_endpoint_request_base_dict)

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