Currency
Representation of a Currency Currency
export interface Currency {
'active'?: boolean;
'isocode'?: string;
'name'?: string;
'symbol'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
active | Optional | boolean | Boolean flag whether currency is active {boolean} Currency |
isocode | Optional | string | Code of the currency in iso format {string} Currency |
name | Optional | string | Name of the currency {string} Currency |
symbol | Optional | string | Symbol of the currency {string} Currency |