/** *

The termination health details, including the source IP address and timestamp of the last successful SIP OPTIONS message from your SIP infrastructure.

*/ export interface _TerminationHealth { /** *

The timestamp, in ISO 8601 format.

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

The source IP address.

*/ Source?: string; } export interface _UnmarshalledTerminationHealth extends _TerminationHealth { /** *

The timestamp, in ISO 8601 format.

*/ Timestamp?: Date; }