Interface ProductVariantAvailability
The InventoryEntry information of the Product Variant. If there is a supply Channel for the InventoryEntry, then channels
is returned. If not, then isOnStock
, restockableInDays
, and quantityOnStock
are returned.
Example to create an instance using the builder pattern
ProductVariantAvailability productVariantAvailability = ProductVariantAvailability.builder()
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ProductVariantAvailabilitybuilder
(ProductVariantAvailability template) create builder for ProductVariantAvailability instancestatic ProductVariantAvailability
deepCopy
(ProductVariantAvailability template) factory method to create a deep copy of ProductVariantAvailabilityNumber of items of the Product Variant that are in stock.For each InventoryEntry with a supply Channel, an entry is added tochannels
.getId()
Unique identifier of the InventoryEntry.Indicates whether a Product Variant is in stock.Number of days to restock a Product Variant once it is out of stock.Current version of the InventoryEntry.static ProductVariantAvailability
of()
factory methodstatic ProductVariantAvailability
of
(ProductVariantAvailability template) factory method to create a shallow copy ProductVariantAvailabilityvoid
setAvailableQuantity
(Long availableQuantity) Number of items of the Product Variant that are in stock.void
For each InventoryEntry with a supply Channel, an entry is added tochannels
.void
Unique identifier of the InventoryEntry.void
setIsOnStock
(Boolean isOnStock) Indicates whether a Product Variant is in stock.void
setRestockableInDays
(Long restockableInDays) Number of days to restock a Product Variant once it is out of stock.void
setVersion
(Long version) Current version of the InventoryEntry.static com.fasterxml.jackson.core.type.TypeReference<ProductVariantAvailability>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map function
-
Method Details
-
getChannels
For each InventoryEntry with a supply Channel, an entry is added to
channels
.- Returns:
- channels
-
getIsOnStock
Boolean getIsOnStock()Indicates whether a Product Variant is in stock.
- Returns:
- isOnStock
-
getRestockableInDays
Long getRestockableInDays()Number of days to restock a Product Variant once it is out of stock.
- Returns:
- restockableInDays
-
getAvailableQuantity
Long getAvailableQuantity()Number of items of the Product Variant that are in stock.
- Returns:
- availableQuantity
-
getId
String getId()Unique identifier of the InventoryEntry.
- Returns:
- id
-
getVersion
Long getVersion()Current version of the InventoryEntry.
- Returns:
- version
-
setChannels
For each InventoryEntry with a supply Channel, an entry is added to
channels
.- Parameters:
channels
- value to be set
-
setIsOnStock
Indicates whether a Product Variant is in stock.
- Parameters:
isOnStock
- value to be set
-
setRestockableInDays
Number of days to restock a Product Variant once it is out of stock.
- Parameters:
restockableInDays
- value to be set
-
setAvailableQuantity
Number of items of the Product Variant that are in stock.
- Parameters:
availableQuantity
- value to be set
-
setId
Unique identifier of the InventoryEntry.
- Parameters:
id
- value to be set
-
setVersion
Current version of the InventoryEntry.
- Parameters:
version
- value to be set
-
of
factory method- Returns:
- instance of ProductVariantAvailability
-
of
factory method to create a shallow copy ProductVariantAvailability- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of ProductVariantAvailability- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductVariantAvailability- Returns:
- builder
-
builder
create builder for ProductVariantAvailability instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withProductVariantAvailability
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-