Class AssociatedItem
- java.lang.Object
-
- software.amazon.spapi.models.services.v1.AssociatedItem
-
public class AssociatedItem extends java.lang.Object
Information about an item associated with the service job.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AssociatedItem.ItemStatusEnum
The status of the item.
-
Constructor Summary
Constructors Constructor Description AssociatedItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AssociatedItem
asin(java.lang.String asin)
AssociatedItem
brandName(java.lang.String brandName)
boolean
equals(java.lang.Object o)
java.lang.String
getAsin()
The Amazon Standard Identification Number (ASIN) of the item.java.lang.String
getBrandName()
The brand name of the item.ItemDelivery
getItemDelivery()
Get itemDeliveryAssociatedItem.ItemStatusEnum
getItemStatus()
The status of the item.java.lang.String
getOrderId()
Get orderIdjava.lang.Integer
getQuantity()
The total number of items included in the order.java.lang.String
getTitle()
The title of the item.int
hashCode()
AssociatedItem
itemDelivery(ItemDelivery itemDelivery)
AssociatedItem
itemStatus(AssociatedItem.ItemStatusEnum itemStatus)
AssociatedItem
orderId(java.lang.String orderId)
AssociatedItem
quantity(java.lang.Integer quantity)
void
setAsin(java.lang.String asin)
void
setBrandName(java.lang.String brandName)
void
setItemDelivery(ItemDelivery itemDelivery)
void
setItemStatus(AssociatedItem.ItemStatusEnum itemStatus)
void
setOrderId(java.lang.String orderId)
void
setQuantity(java.lang.Integer quantity)
void
setTitle(java.lang.String title)
AssociatedItem
title(java.lang.String title)
java.lang.String
toString()
-
-
-
Method Detail
-
asin
public AssociatedItem asin(java.lang.String asin)
-
getAsin
public java.lang.String getAsin()
The Amazon Standard Identification Number (ASIN) of the item.- Returns:
- asin
-
setAsin
public void setAsin(java.lang.String asin)
-
title
public AssociatedItem title(java.lang.String title)
-
getTitle
public java.lang.String getTitle()
The title of the item.- Returns:
- title
-
setTitle
public void setTitle(java.lang.String title)
-
quantity
public AssociatedItem quantity(java.lang.Integer quantity)
-
getQuantity
public java.lang.Integer getQuantity()
The total number of items included in the order.- Returns:
- quantity
-
setQuantity
public void setQuantity(java.lang.Integer quantity)
-
orderId
public AssociatedItem orderId(java.lang.String orderId)
-
getOrderId
public java.lang.String getOrderId()
Get orderId- Returns:
- orderId
-
setOrderId
public void setOrderId(java.lang.String orderId)
-
itemStatus
public AssociatedItem itemStatus(AssociatedItem.ItemStatusEnum itemStatus)
-
getItemStatus
public AssociatedItem.ItemStatusEnum getItemStatus()
The status of the item.- Returns:
- itemStatus
-
setItemStatus
public void setItemStatus(AssociatedItem.ItemStatusEnum itemStatus)
-
brandName
public AssociatedItem brandName(java.lang.String brandName)
-
getBrandName
public java.lang.String getBrandName()
The brand name of the item.- Returns:
- brandName
-
setBrandName
public void setBrandName(java.lang.String brandName)
-
itemDelivery
public AssociatedItem itemDelivery(ItemDelivery itemDelivery)
-
getItemDelivery
public ItemDelivery getItemDelivery()
Get itemDelivery- Returns:
- itemDelivery
-
setItemDelivery
public void setItemDelivery(ItemDelivery itemDelivery)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-