Package version:

Interface LivenessSessionAuditEntryOutput

Audit entry for a request in session.

interface LivenessSessionAuditEntryOutput {
    clientRequestId: string;
    digest: string;
    id: number;
    receivedDateTime: string;
    request: AuditRequestInfoOutput;
    requestId: string;
    response: AuditLivenessResponseInfoOutput;
    sessionId: string;
}

Properties

clientRequestId: string

The unique clientRequestId that is sent by the client in the 'client-request-id' header.

digest: string

The server calculated digest for this request. If the client reported digest differs from the server calculated digest, then the message integrity between the client and service has been compromised and the result should not be trusted. For more information, see how to guides on how to leverage this value to secure your end-to-end solution.

id: number

The unique id to refer to this audit request. Use this id with the 'start' query parameter to continue on to the next page of audit results.

receivedDateTime: string

The UTC DateTime that the request was received.

The request of this entry.

requestId: string

The unique requestId that is returned by the service to the client in the 'apim-request-id' header.

The response of this entry.

sessionId: string

The unique sessionId of the created session. It will expire 48 hours after it was created or may be deleted sooner using the corresponding session DELETE operation.