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

jp.gopay.sdk.builders.exchangerate.AbstractExchangeRateBuilders Maven / Gradle / Ivy

There is a newer version: 0.11.17
Show newest version
package jp.gopay.sdk.builders.exchangerate;

import jp.gopay.sdk.builders.IdempotentRetrofitRequestBuilder;
import jp.gopay.sdk.models.common.MoneyLike;
import retrofit2.Retrofit;

public abstract class AbstractExchangeRateBuilders {

    public static abstract class AbstractConvertMoneyBuilder
            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 - 2024 Weber Informatics LLC | Privacy Policy