package com.ECS.client.jax; import java.math.BigInteger; 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.XmlSchemaType; 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 name="ModelName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ModelId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/> * <element name="IsValid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element ref="{http://webservices.amazon.com/AWSECommerceService/2010-11-01}VehicleTrims" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "modelName", "modelId", "isValid", "vehicleTrims" }) @XmlRootElement(name = "VehicleModel") public class VehicleModel { @XmlElement(name = "ModelName") protected String modelName; @XmlElement(name = "ModelId", required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger modelId; @XmlElement(name = "IsValid") protected String isValid; @XmlElement(name = "VehicleTrims") protected VehicleTrims vehicleTrims; /** * Gets the value of the modelName property. * * @return * possible object is * {@link String } * */ public String getModelName() { return modelName; } /** * Sets the value of the modelName property. * * @param value * allowed object is * {@link String } * */ public void setModelName(String value) { this.modelName = value; } /** * Gets the value of the modelId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getModelId() { return modelId; } /** * Sets the value of the modelId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setModelId(BigInteger value) { this.modelId = value; } /** * Gets the value of the isValid property. * * @return * possible object is * {@link String } * */ public String getIsValid() { return isValid; } /** * Sets the value of the isValid property. * * @param value * allowed object is * {@link String } * */ public void setIsValid(String value) { this.isValid = value; } /** * Gets the value of the vehicleTrims property. * * @return * possible object is * {@link VehicleTrims } * */ public VehicleTrims getVehicleTrims() { return vehicleTrims; } /** * Sets the value of the vehicleTrims property. * * @param value * allowed object is * {@link VehicleTrims } * */ public void setVehicleTrims(VehicleTrims value) { this.vehicleTrims = value; } }