/** * Magento Community * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 2.2 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { DirectoryDataCurrencyInformationExtensionInterface } from './directoryDataCurrencyInformationExtensionInterface'; import { DirectoryDataExchangeRateInterface } from './directoryDataExchangeRateInterface'; /** * Currency Information interface. */ export interface DirectoryDataCurrencyInformationInterface { /** * The base currency code for the store. */ baseCurrencyCode: string; /** * The currency symbol of the base currency for the store. */ baseCurrencySymbol: string; /** * The default display currency code for the store. */ defaultDisplayCurrencyCode: string; /** * The currency symbol of the default display currency for the store. */ defaultDisplayCurrencySymbol: string; /** * The list of allowed currency codes for the store. */ availableCurrencyCodes: Array; /** * The list of exchange rate information for the store. */ exchangeRates: Array; extensionAttributes?: DirectoryDataCurrencyInformationExtensionInterface; }