Class InventoryAvailabilityRequest
- java.lang.Object
-
- com.broadleafcommerce.cartoperation.service.provider.external.domain.inventory.InventoryAvailabilityRequest
-
- All Implemented Interfaces:
Serializable
public class InventoryAvailabilityRequest extends Object implements Serializable
A request DTO to fetch the inventory availability status of a catalog item.- Author:
- Marie Standeven (mariestandeven)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InventoryAvailabilityRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)Map<String,Object>getAdditionalAttributes()Map holding any additional attributes passed in the request not matching any defined properties.intgetQuantity()The quantity being requested for this item.StringgetSku()This Stock Keeping Unit that uniquely identifies this item.inthashCode()voidsetAdditionalAttributes(Map<String,Object> additionalAttributes)Map holding any additional attributes passed in the request not matching any defined properties.voidsetQuantity(int quantity)The quantity being requested for this item.voidsetSku(String sku)This Stock Keeping Unit that uniquely identifies this item.StringtoString()
-
-
-
Method Detail
-
getSku
public String getSku()
This Stock Keeping Unit that uniquely identifies this item.
-
getQuantity
public int getQuantity()
The quantity being requested for this item.
-
getAdditionalAttributes
public Map<String,Object> getAdditionalAttributes()
Map holding any additional attributes passed in the request not matching any defined properties.
-
setSku
public void setSku(String sku)
This Stock Keeping Unit that uniquely identifies this item.
-
setQuantity
public void setQuantity(int quantity)
The quantity being requested for this item.
-
setAdditionalAttributes
public void setAdditionalAttributes(Map<String,Object> additionalAttributes)
Map holding any additional attributes passed in the request not matching any defined properties.
-
canEqual
protected boolean canEqual(Object other)
-
-