Package version:

Interface AuditLivenessResponseInfoOutput

Audit entry for a response in the session.

interface AuditLivenessResponseInfoOutput {
    body: LivenessResponseBodyOutput;
    latencyInMilliseconds: number;
    statusCode: number;
}

Properties

The response body. The schema of this field will depend on the request.url and request.method used by the client.

latencyInMilliseconds: number

The server measured latency for this request in milliseconds.

statusCode: number

The HTTP status code returned to the client.