Alokai
You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x

Currency

Representation of a Currency Currency

export interface Currency {
	'active'?: boolean;
	'isocode'?: string;
	'name'?: string;
	'symbol'?: string;
}

Properties

NameRequiredTypeDescription
activeOptionalbooleanBoolean flag whether currency is active {boolean} Currency
isocodeOptionalstringCode of the currency in iso format {string} Currency
nameOptionalstringName of the currency {string} Currency
symbolOptionalstringSymbol of the currency {string} Currency

On this page