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

com.scene7.ipsapi.SubAsset 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for SubAsset complex type. * *

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

 * <complexType name="SubAsset">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="subAssetHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="subType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="created" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="createUser" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="lastModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="lastModifyUser" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="userDataArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}UserDataArray" minOccurs="0"/>
 *         <element name="metadataArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}MetadataArray" minOccurs="0"/>
 *         <element name="smartCrop" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}SmartCrop" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SubAsset", propOrder = { "subAssetHandle", "type", "subType", "name", "created", "createUser", "lastModified", "lastModifyUser", "userDataArray", "metadataArray", "smartCrop" }) public class SubAsset { protected String subAssetHandle; protected String type; protected String subType; protected String name; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar created; protected String createUser; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastModified; protected String lastModifyUser; protected UserDataArray userDataArray; protected MetadataArray metadataArray; protected SmartCrop smartCrop; /** * Gets the value of the subAssetHandle property. * * @return * possible object is * {@link String } * */ public String getSubAssetHandle() { return subAssetHandle; } /** * Sets the value of the subAssetHandle property. * * @param value * allowed object is * {@link String } * */ public void setSubAssetHandle(String value) { this.subAssetHandle = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the subType property. * * @return * possible object is * {@link String } * */ public String getSubType() { return subType; } /** * Sets the value of the subType property. * * @param value * allowed object is * {@link String } * */ public void setSubType(String value) { this.subType = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the created property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreated() { return created; } /** * Sets the value of the created property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreated(XMLGregorianCalendar value) { this.created = value; } /** * Gets the value of the createUser property. * * @return * possible object is * {@link String } * */ public String getCreateUser() { return createUser; } /** * Sets the value of the createUser property. * * @param value * allowed object is * {@link String } * */ public void setCreateUser(String value) { this.createUser = value; } /** * Gets the value of the lastModified property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastModified() { return lastModified; } /** * Sets the value of the lastModified property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastModified(XMLGregorianCalendar value) { this.lastModified = value; } /** * Gets the value of the lastModifyUser property. * * @return * possible object is * {@link String } * */ public String getLastModifyUser() { return lastModifyUser; } /** * Sets the value of the lastModifyUser property. * * @param value * allowed object is * {@link String } * */ public void setLastModifyUser(String value) { this.lastModifyUser = value; } /** * Gets the value of the userDataArray property. * * @return * possible object is * {@link UserDataArray } * */ public UserDataArray getUserDataArray() { return userDataArray; } /** * Sets the value of the userDataArray property. * * @param value * allowed object is * {@link UserDataArray } * */ public void setUserDataArray(UserDataArray value) { this.userDataArray = value; } /** * Gets the value of the metadataArray property. * * @return * possible object is * {@link MetadataArray } * */ public MetadataArray getMetadataArray() { return metadataArray; } /** * Sets the value of the metadataArray property. * * @param value * allowed object is * {@link MetadataArray } * */ public void setMetadataArray(MetadataArray value) { this.metadataArray = value; } /** * Gets the value of the smartCrop property. * * @return * possible object is * {@link SmartCrop } * */ public SmartCrop getSmartCrop() { return smartCrop; } /** * Sets the value of the smartCrop property. * * @param value * allowed object is * {@link SmartCrop } * */ public void setSmartCrop(SmartCrop value) { this.smartCrop = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy