com.dft.api.shopify.model.ShopifyLineItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shopify-admin-rest Show documentation
Show all versions of shopify-admin-rest Show documentation
Shopify Admin REST API using JDK 11 and Reactive Programming
package com.dft.api.shopify.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.databind.PropertyNamingStrategies;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
import lombok.Data;
import java.util.List;
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class)
public class ShopifyLineItem {
private String id;
private String variantId;
private String title;
private Long quantity;
private Double price;
private Long grams;
private String sku;
private String variantTitle;
private String vendor;
private String productId;
private Boolean requiresShipping;
private Boolean taxable;
private Boolean giftCard;
private String name;
private String variantInventoryManagement;
private Integer fulfillableQuantity;
private Double totalDiscount;
private String fulfillmentStatus;
private String fulfillmentService;
private String adminGraphqlApiId;
private Boolean productExists;
private String barcode;
private List discountAllocations;
private List appliedDiscounts;
private ShopifyOriginLocation originLocation;
private List taxLines;
private List duties;
private List properties;
private List discountCodes;
private ShopifyAmountSet priceSet;
private ShopifyAmountSet totalDiscountSet;
}