/** *

Details on an event associated with a service.

*/ export interface _ServiceEvent { /** *

The ID string of the event.

*/ id?: string; /** *

The Unix timestamp for when the event was triggered.

*/ createdAt?: Date | string | number; /** *

The event message.

*/ message?: string; } export interface _UnmarshalledServiceEvent extends _ServiceEvent { /** *

The Unix timestamp for when the event was triggered.

*/ createdAt?: Date; }