Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.64 KB

File metadata and controls

36 lines (27 loc) · 1.64 KB

CreateEndpointResponseData

Properties

Name Type Description Notes
endpoint_id str The unique ID of the endpoint.
type EndpointTypeEnum
status EndpointStatusEnum
creation_timestamp datetime The time the endpoint was created. In ISO-8601 format.
expiration_timestamp datetime The time the endpoint token will expire. In ISO-8601 format. Tokens last 24 hours.
tag str A tag for the endpoint. [optional]
devices List[Device] [optional]
token str The json web token specific to the endpoint. Used to authenticate the client with the media gateway.

Example

from bandwidth.models.create_endpoint_response_data import CreateEndpointResponseData

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

# convert the object into a dict
create_endpoint_response_data_dict = create_endpoint_response_data_instance.to_dict()
# create an instance of CreateEndpointResponseData from a dict
create_endpoint_response_data_from_dict = CreateEndpointResponseData.from_dict(create_endpoint_response_data_dict)

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