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

com.scayle.adminapi.model.ProductVariantStock Maven / Gradle / Ivy

There is a newer version: 1.24.0
Show newest version
package com.scayle.adminapi.model;

import java.util.List;
import java.util.Map;

import com.google.gson.annotations.SerializedName;

import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class ProductVariantStock implements ApiObjectInterface {
    /**
    * Current quantity of SKU.
    */
    @SerializedName("quantity")
    Integer quantity;

    /**
    * Reference key of warehouse for which the stock update is related to.
    */
    @SerializedName("warehouseReferenceKey")
    String warehouseReferenceKey;

    /**
    * Date time when the stock changed in Iso8601 format.
    */
    @SerializedName("changedAt")
    String changedAt;

    /**
    * Defines if the variant can be sold even when the available stock is 0.
    */
    @SerializedName("sellableWithoutStock")
    Boolean sellableWithoutStock;

    /**
    * A merchant reference key the stock belongs to.
    */
    @SerializedName("merchantReferenceKey")
    String merchantReferenceKey;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy