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

com.univapay.sdk.builders.qrcode.AbstractQrCodeMerchantBuilders Maven / Gradle / Ivy

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

import com.univapay.sdk.builders.RetrofitRequestBuilder;
import com.univapay.sdk.models.common.ChargeId;
import com.univapay.sdk.models.common.StoreId;
import com.univapay.sdk.models.response.QrCode;
import retrofit2.Retrofit;

public class AbstractQrCodeMerchantBuilders {

  public abstract static class AbstractGetQrCodeRequestBuilder<
          B extends AbstractGetQrCodeRequestBuilder, R, M extends QrCode>
      extends RetrofitRequestBuilder {

    protected StoreId storeId;
    protected ChargeId chargeId;

    public AbstractGetQrCodeRequestBuilder(Retrofit retrofit, StoreId storeId, ChargeId chargeId) {
      super(retrofit);
      this.storeId = storeId;
      this.chargeId = chargeId;
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy