The Class CurrencyDto.
name | data type | description |
---|---|---|
id | number | |
code | string | Currency code |
auditableField | array of AuditableFieldDto | |
description | string | Description |
disabled | boolean | Is entity disabled. Value is ignored in Update action - use enable/disable API instead. |
|
|
|
languageDescriptions | array of LanguageDescriptionDto | The language descriptions. |
symbol | string | trading currency symbol. |
decimalPlaces | number | trading currency symbol. |
Example
{ "id" : 12345, "code" : "...", "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" : "..." } ], "description" : "...", "disabled" : true, "languageDescriptions" : [ { "languageCode" : "...", "description" : "..." }, { "languageCode" : "...", "description" : "..." } ], "symbol" : "...", "decimalPlaces" : 12345 }