com.notronix.etsy.impl.method.FindAllShopCouponsMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JEtsy Show documentation
Show all versions of JEtsy Show documentation
A Java implementation of a Java version of the Etsy API
package com.notronix.etsy.impl.method;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.notronix.etsy.impl.model.EtsyCoupon;
import java.util.List;
import static java.util.Objects.requireNonNull;
public class FindAllShopCouponsMethod extends AbstractEtsyMethod>
{
private String shopIdOrName;
@Override
String getURI() {
return "/shops/" + requireNonNull(shopIdOrName) + "/coupons";
}
@Override
public boolean requiresOAuth() {
return true;
}
@Override
public List getResponse(Gson gson, String jsonPayload) {
EtsyResponse> response =
gson.fromJson(jsonPayload, new TypeToken>>(){}.getType());
return response.getResults();
}
public String getShopIdOrName() {
return shopIdOrName;
}
public void setShopIdOrName(String shopIdOrName) {
this.shopIdOrName = shopIdOrName;
}
public FindAllShopCouponsMethod withShopIdOrName(String shopIdOrName) {
this.shopIdOrName = shopIdOrName;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy