com.notronix.etsy.impl.model.EtsyListingVariationImage 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.ListingVariationImage;
public class EtsyListingVariationImage implements ListingVariationImage
{
@SerializedName(value = "property_id")
private Long propertyId;
@SerializedName(value = "value_id")
private Long valueId;
@SerializedName(value = "image_id")
private Long imageId;
@Override
public Long getPropertyId() {
return propertyId;
}
public void setPropertyId(Long propertyId) {
this.propertyId = propertyId;
}
@Override
public Long getValueId() {
return valueId;
}
public void setValueId(Long valueId) {
this.valueId = valueId;
}
@Override
public Long getImageId() {
return imageId;
}
public void setImageId(Long imageId) {
this.imageId = imageId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy