Service - Currency
Jump to navigation
Jump to search
Overview
All currencies are user defined, simple structure that cannot be changed once created.
Repository
http://git.izara.io/IzaraCurrency-Currencies/IzaraCurrency-Currencies-Currency
Object Schemas
- Additional Information
- Per Service Schemas
objType
currency
{
objectType: "currency",
canDelete: false,
"addOnDataStructure": [],
storageResources: {
graph: {
storageType: "graph",
graphServerTag: "GraphHandler",
}
},
fieldNames: {
currencyId: {
type: "string",
randomOnCreate: true,
storageResourceTags: ['graph']
},
currencyName: {
type: "string",
requiredOnCreate: true,
storageResourceTags: ['graph']
},
},
identifiers: [
{
type: "identifier",
fieldName: "currencyId"
}
]
}