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

com.notronix.etsy.impl.shops.model.EtsyShopSection Maven / Gradle / Ivy

There is a newer version: 3.0.0014
Show newest version
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