You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The json web token specific to the endpoint. Used to authenticate the client with the media gateway.
Example
frombandwidth.models.create_endpoint_response_dataimportCreateEndpointResponseData# TODO update the JSON string belowjson="{}"# create an instance of CreateEndpointResponseData from a JSON stringcreate_endpoint_response_data_instance=CreateEndpointResponseData.from_json(json)
# print the JSON string representation of the objectprint(CreateEndpointResponseData.to_json())
# convert the object into a dictcreate_endpoint_response_data_dict=create_endpoint_response_data_instance.to_dict()
# create an instance of CreateEndpointResponseData from a dictcreate_endpoint_response_data_from_dict=CreateEndpointResponseData.from_dict(create_endpoint_response_data_dict)