An event that occurred on an endpoint.
| 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] |
import { EndpointEvent } from 'bandwidth-sdk';
const instance: EndpointEvent = {
endpointId,
type,
status,
creationTimestamp,
expirationTimestamp,
tag,
eventTime,
eventType,
device,
};