package com.ECS.client.jax;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://webservices.amazon.com/AWSECommerceService/2010-11-01}Item" minOccurs="0"/>
* <element name="HasPartCompatibility" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element ref="{http://webservices.amazon.com/AWSECommerceService/2010-11-01}VehiclePartFit" minOccurs="0"/>
* <element ref="{http://webservices.amazon.com/AWSECommerceService/2010-11-01}Fitments" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"item",
"hasPartCompatibility",
"vehiclePartFit",
"fitments"
})
@XmlRootElement(name = "Part")
public class Part {
@XmlElement(name = "Item")
protected Item item;
@XmlElement(name = "HasPartCompatibility")
protected Boolean hasPartCompatibility;
@XmlElement(name = "VehiclePartFit")
protected VehiclePartFit vehiclePartFit;
@XmlElement(name = "Fitments")
protected Fitments fitments;
/**
* Gets the value of the item property.
*
* @return
* possible object is
* {@link Item }
*
*/
public Item getItem() {
return item;
}
/**
* Sets the value of the item property.
*
* @param value
* allowed object is
* {@link Item }
*
*/
public void setItem(Item value) {
this.item = value;
}
/**
* Gets the value of the hasPartCompatibility property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isHasPartCompatibility() {
return hasPartCompatibility;
}
/**
* Sets the value of the hasPartCompatibility property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setHasPartCompatibility(Boolean value) {
this.hasPartCompatibility = value;
}
/**
* Gets the value of the vehiclePartFit property.
*
* @return
* possible object is
* {@link VehiclePartFit }
*
*/
public VehiclePartFit getVehiclePartFit() {
return vehiclePartFit;
}
/**
* Sets the value of the vehiclePartFit property.
*
* @param value
* allowed object is
* {@link VehiclePartFit }
*
*/
public void setVehiclePartFit(VehiclePartFit value) {
this.vehiclePartFit = value;
}
/**
* Gets the value of the fitments property.
*
* @return
* possible object is
* {@link Fitments }
*
*/
public Fitments getFitments() {
return fitments;
}
/**
* Sets the value of the fitments property.
*
* @param value
* allowed object is
* {@link Fitments }
*
*/
public void setFitments(Fitments value) {
this.fitments = value;
}
}