com.notronix.etsy.impl.shops.model.EtsyShopSection 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.shops.model;
import com.google.gson.annotations.SerializedName;
import com.notronix.etsy.api.shops.model.ShopSection;
public class EtsyShopSection implements ShopSection
{
@SerializedName("shop_section_id")
private Long id;
private String title;
private Integer rank;
@SerializedName("user_id")
private Long userId;
@SerializedName("active_listing_count")
private Integer activeListingCount;
@Override
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
@Override
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
@Override
public Integer getRank() {
return rank;
}
public void setRank(Integer rank) {
this.rank = rank;
}
@Override
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
@Override
public Integer getActiveListingCount() {
return activeListingCount;
}
public void setActiveListingCount(Integer activeListingCount) {
this.activeListingCount = activeListingCount;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy