All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scene7.ipsapi.MetadataUpdate Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.12.04 at 11:32:00 AM PST 
//


package com.scene7.ipsapi;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for MetadataUpdate complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="MetadataUpdate">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="fieldHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="boolVal" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="longVal" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="doubleVal" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="dateVal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="addTagValueArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}StringArray" minOccurs="0"/>
 *         <element name="setTagValueArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}StringArray" minOccurs="0"/>
 *         <element name="deleteTagValueArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}StringArray" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataUpdate", propOrder = { "fieldHandle", "value", "boolVal", "longVal", "doubleVal", "dateVal", "addTagValueArray", "setTagValueArray", "deleteTagValueArray" }) public class MetadataUpdate { @XmlElement(required = true) protected String fieldHandle; protected String value; protected Boolean boolVal; protected Long longVal; protected Double doubleVal; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dateVal; protected StringArray addTagValueArray; protected StringArray setTagValueArray; protected StringArray deleteTagValueArray; /** * Gets the value of the fieldHandle property. * * @return * possible object is * {@link String } * */ public String getFieldHandle() { return fieldHandle; } /** * Sets the value of the fieldHandle property. * * @param value * allowed object is * {@link String } * */ public void setFieldHandle(String value) { this.fieldHandle = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the boolVal property. * * @return * possible object is * {@link Boolean } * */ public Boolean isBoolVal() { return boolVal; } /** * Sets the value of the boolVal property. * * @param value * allowed object is * {@link Boolean } * */ public void setBoolVal(Boolean value) { this.boolVal = value; } /** * Gets the value of the longVal property. * * @return * possible object is * {@link Long } * */ public Long getLongVal() { return longVal; } /** * Sets the value of the longVal property. * * @param value * allowed object is * {@link Long } * */ public void setLongVal(Long value) { this.longVal = value; } /** * Gets the value of the doubleVal property. * * @return * possible object is * {@link Double } * */ public Double getDoubleVal() { return doubleVal; } /** * Sets the value of the doubleVal property. * * @param value * allowed object is * {@link Double } * */ public void setDoubleVal(Double value) { this.doubleVal = value; } /** * Gets the value of the dateVal property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDateVal() { return dateVal; } /** * Sets the value of the dateVal property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDateVal(XMLGregorianCalendar value) { this.dateVal = value; } /** * Gets the value of the addTagValueArray property. * * @return * possible object is * {@link StringArray } * */ public StringArray getAddTagValueArray() { return addTagValueArray; } /** * Sets the value of the addTagValueArray property. * * @param value * allowed object is * {@link StringArray } * */ public void setAddTagValueArray(StringArray value) { this.addTagValueArray = value; } /** * Gets the value of the setTagValueArray property. * * @return * possible object is * {@link StringArray } * */ public StringArray getSetTagValueArray() { return setTagValueArray; } /** * Sets the value of the setTagValueArray property. * * @param value * allowed object is * {@link StringArray } * */ public void setSetTagValueArray(StringArray value) { this.setTagValueArray = value; } /** * Gets the value of the deleteTagValueArray property. * * @return * possible object is * {@link StringArray } * */ public StringArray getDeleteTagValueArray() { return deleteTagValueArray; } /** * Sets the value of the deleteTagValueArray property. * * @param value * allowed object is * {@link StringArray } * */ public void setDeleteTagValueArray(StringArray value) { this.deleteTagValueArray = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy