in service/src/main/java/org/apache/fineract/cn/interoperation/service/internal/service/InteropService.java [170:178]
public InteropQuoteResponseData getQuote(@NotNull String transactionCode, @NotNull String quoteCode) {
InteropActionEntity action = validateAndGetAction(transactionCode, calcActionIdentifier(quoteCode, InteropActionType.QUOTE),
InteropActionType.QUOTE);
Currency currency = getCurrency(action);
return InteropQuoteResponseData.build(transactionCode, action.getState(), action.getExpirationDate(), quoteCode,
MoneyData.build(action.getFee(), currency), MoneyData.build(action.getCommission(), currency));
}