Json Data Type

This data type has been deprecated. Do not use this type directly, it exists only for the Jackson-binding infrastructure

Utility type used to correctly read immutable object from JSON representation.

Implemented Interfaces
ExchangeRateDto
Properties
name data type description
currentRate boolean
fromDate number
exchangeRate number
tradingCurrency Resource
id number
code string
links array of Link

Example

{
  "currentRate" : true,
  "fromDate" : 12345,
  "exchangeRate" : 12345.0,
  "tradingCurrency" : {
    "code" : "...",
    "links" : {
      "href" : "...",
      "params" : {
        "property1" : { },
        "property2" : { }
      }
    },
    "id" : 12345
  },
  "id" : 12345,
  "code" : "...",
  "links" : [ {
    "type" : "...",
    "params" : {
      "property1" : "...",
      "property2" : "..."
    },
    "rels" : [ "...", "..." ],
    "rel" : "...",
    "uri" : "...",
    "title" : "...",
    "uriBuilder" : { }
  }, {
    "type" : "...",
    "params" : {
      "property1" : "...",
      "property2" : "..."
    },
    "rels" : [ "...", "..." ],
    "rel" : "...",
    "uri" : "...",
    "title" : "...",
    "uriBuilder" : { }
  } ]
}