jp.gopay.sdk.builders.exchangerate.AbstractExchangeRateBuilders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gopay-java-sdk Show documentation
Show all versions of gopay-java-sdk Show documentation
Official Gyro-n Payments Java SDK
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;
}
}
}