com.notronix.etsy.impl.model.EtsyTaxonomyPropertyScale 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.model;
import com.google.gson.annotations.SerializedName;
import com.notronix.etsy.api.model.TaxonomyPropertyScale;
public class EtsyTaxonomyPropertyScale implements TaxonomyPropertyScale
{
@SerializedName(value = "scale_id")
private Long scaleId;
@SerializedName(value = "display_name")
private String displayName;
private String description;
@Override
public Long getScaleId() {
return scaleId;
}
public void setScaleId(Long scaleId) {
this.scaleId = scaleId;
}
@Override
public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
@Override
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy