wallee
Version:
TypeScript/JavaScript client for wallee
31 lines (30 loc) • 776 B
TypeScript
declare class RestCurrency {
/**
* The currency's three-letter code (ISO 4217 format).
*/
'currencyCode'?: string;
/**
* The currency's number of decimals. When calculating amounts in this currency, the fraction digits determine the accuracy.
*/
'fractionDigits'?: number;
/**
* The name of the currency.
*/
'name'?: string;
/**
* The currency's three-digit code (ISO 4217 format).
*/
'numericCode'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { RestCurrency };