TradingCurrenciesResponseDto Data Type

The Class TradingCurrenciesResponseDto.

Implemented Interfaces
Serializable
Properties
name data type description
currenciesDto CurrenciesDto The currencies DTO.
paging PagingAndFiltering The paging.
actionStatus ActionStatus The status response of the web service response.

Example

{
  "currenciesDto" : {
    "currency" : [ {
      "id" : 12345,
      "code" : "...",
      "auditableField" : [ { }, { } ],
      "description" : "...",
      "disabled" : true,
      "languageDescriptions" : [ { }, { } ],
      "symbol" : "...",
      "decimalPlaces" : 12345
    }, {
      "id" : 12345,
      "code" : "...",
      "auditableField" : [ { }, { } ],
      "description" : "...",
      "disabled" : true,
      "languageDescriptions" : [ { }, { } ],
      "symbol" : "...",
      "decimalPlaces" : 12345
    } ]
  },
  "paging" : {
    "fullTextFilter" : "...",
    "filters" : {
      "property1" : { },
      "property2" : { }
    },
    "fields" : "...",
    "offset" : 12345,
    "limit" : 12345,
    "sortBy" : "...",
    "sortOrder" : "DESCENDING",
    "multiSortOrder" : "...",
    "totalNumberOfRecords" : 12345,
    "loadReferenceDepth" : 12345
  },
  "actionStatus" : {
    "status" : "FAIL",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}