Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.43 KB

File metadata and controls

37 lines (30 loc) · 1.43 KB

EndpointEvent

An event that occurred on an endpoint.

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]
eventTime string The time the event occurred. In ISO-8601 format. [default to undefined]
eventType EndpointEventTypeEnum [default to undefined]
device Device [optional] [default to undefined]

Example

import { EndpointEvent } from 'bandwidth-sdk';

const instance: EndpointEvent = {
    endpointId,
    type,
    status,
    creationTimestamp,
    expirationTimestamp,
    tag,
    eventTime,
    eventType,
    device,
};

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