All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.univapay.sdk.builders.exchangerate.AbstractExchangeRateBuilders Maven / Gradle / Ivy

There is a newer version: 0.2.35
Show newest version
package com.univapay.sdk.builders.exchangerate;

import com.univapay.sdk.builders.IdempotentRetrofitRequestBuilder;
import com.univapay.sdk.models.common.MoneyLike;
import retrofit2.Retrofit;

public abstract class AbstractExchangeRateBuilders {

  public abstract static class AbstractConvertMoneyBuilder<
          B extends AbstractConvertMoneyBuilder, R, M extends MoneyLike>
      extends IdempotentRetrofitRequestBuilder {

    protected MoneyLike moneyToConvert;
    protected String targetCurrency;

    public AbstractConvertMoneyBuilder(
        Retrofit retrofit, MoneyLike moneyToConvert, String targetCurrency) {
      super(retrofit);
      this.moneyToConvert = moneyToConvert;
      this.targetCurrency = targetCurrency;
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy