InboundRequestDto Data Type

The Class InboundRequestDto.

Implemented Interfaces
Serializable
Properties
name data type constraints description
contentLength number   The content length.
contentType string   The content type.
id number   The id.
protocol string   The protocol.
auditableField array of AuditableFieldDto  
scheme string   The scheme.
code string required The code
remoteAddr string   The remote addr.
remotePort number   The remote port.
method string   The method.
description string   The description
authType string   The auth type.
pathInfo string   The path info.
requestURI string   The request URI.
updatedCode string   The updated code.
responseContentType string   The response content type.
responseEncoding string   The response encoding.

Example

{
  "contentLength" : 12345,
  "contentType" : "...",
  "id" : 12345,
  "protocol" : "...",
  "auditableField" : [ {
    "entityClass" : "...",
    "fieldName" : "...",
    "id" : 12345,
    "changeOrigin" : "...",
    "auditableField" : [ { }, { } ],
    "originName" : "...",
    "code" : "...",
    "previousState" : "...",
    "currentState" : "...",
    "description" : "...",
    "created" : "...",
    "updatedCode" : "...",
    "actor" : "..."
  }, {
    "entityClass" : "...",
    "fieldName" : "...",
    "id" : 12345,
    "changeOrigin" : "...",
    "auditableField" : [ { }, { } ],
    "originName" : "...",
    "code" : "...",
    "previousState" : "...",
    "currentState" : "...",
    "description" : "...",
    "created" : "...",
    "updatedCode" : "...",
    "actor" : "..."
  } ],
  "scheme" : "...",
  "code" : "...",
  "remoteAddr" : "...",
  "remotePort" : 12345,
  "method" : "...",
  "description" : "...",
  "authType" : "...",
  "pathInfo" : "...",
  "requestURI" : "...",
  "updatedCode" : "...",
  "responseContentType" : "...",
  "responseEncoding" : "..."
}