import { ApiError } from './apiError';
import { CurrencyCodeErrorReason } from './currencyCodeErrorReason';
export interface CurrencyCodeError extends ApiError {
    reason?: CurrencyCodeErrorReason;
}
