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

com.notronix.etsy.impl.model.EtsyListingVariationImage Maven / Gradle / Ivy

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