InboundRequestsDto Data Type

Implemented Interfaces
Serializable
Properties
name data type description
inboundRequest array of InboundRequestDto

Example

{
  "inboundRequest" : [ {
    "contentLength" : 12345,
    "contentType" : "...",
    "protocol" : "...",
    "scheme" : "...",
    "remoteAddr" : "...",
    "remotePort" : 12345,
    "method" : "...",
    "authType" : "...",
    "pathInfo" : "...",
    "requestURI" : "...",
    "responseContentType" : "...",
    "responseEncoding" : "..."
  }, {
    "contentLength" : 12345,
    "contentType" : "...",
    "protocol" : "...",
    "scheme" : "...",
    "remoteAddr" : "...",
    "remotePort" : 12345,
    "method" : "...",
    "authType" : "...",
    "pathInfo" : "...",
    "requestURI" : "...",
    "responseContentType" : "...",
    "responseEncoding" : "..."
  } ]
}