com.notronix.etsy.impl.model.EtsyCartListing 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.CartListing;
import java.util.List;
import java.util.Map;
public class EtsyCartListing implements CartListing
{
@SerializedName(value = "listing_id")
private Long listingId;
@SerializedName(value = "purchase_quantity")
private Integer purchaseQuantity;
@SerializedName(value = "purchase_state")
private String purchaseState;
@SerializedName(value = "is_digital")
private Boolean isDigital;
@SerializedName(value = "file_data")
private String fileData;
@SerializedName(value = "listing_customization_id")
private Long listingCustomizationId;
@SerializedName(value = "variations_available")
private Boolean variationsAvailable;
@SerializedName(value = "has_variations")
private Boolean hasVariations;
@SerializedName(value = "selected_variations")
private List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy