Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.38 KB

File metadata and controls

34 lines (27 loc) · 1.38 KB

CreateEndpointResponseData

Properties

Name Type Description Notes
endpointId string The unique ID of the endpoint. [default to undefined]
type EndpointTypeEnum [default to undefined]
status EndpointStatusEnum [default to undefined]
creationTimestamp string The time the endpoint was created. In ISO-8601 format. [default to undefined]
expirationTimestamp string The time the endpoint token will expire. In ISO-8601 format. Tokens last 24 hours. [default to undefined]
tag string A tag for the endpoint. [optional] [default to undefined]
devices Array<Device> [optional] [default to undefined]
token string The json web token specific to the endpoint. Used to authenticate the client with the media gateway. [default to undefined]

Example

import { CreateEndpointResponseData } from 'bandwidth-sdk';

const instance: CreateEndpointResponseData = {
    endpointId,
    type,
    status,
    creationTimestamp,
    expirationTimestamp,
    tag,
    devices,
    token,
};

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