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

com.scene7.ipsapi.GetAssociatedAssetsReturn 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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="containerArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}AssetArray" minOccurs="0"/>
 *         <element name="memberArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}AssetArray" minOccurs="0"/>
 *         <element name="layerReferenceArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}AssetArray" minOccurs="0"/>
 *         <element name="ownerArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}AssetArray" minOccurs="0"/>
 *         <element name="derivedArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}AssetArray" minOccurs="0"/>
 *         <element name="generatorArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}GenerationInfoArray" minOccurs="0"/>
 *         <element name="generatedArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}GenerationInfoArray" minOccurs="0"/>
 *         <element name="subAssetArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}SubAssetArray" minOccurs="0"/>
 *         <element name="thumbAsset" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}Asset" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "containerArray", "memberArray", "layerReferenceArray", "ownerArray", "derivedArray", "generatorArray", "generatedArray", "subAssetArray", "thumbAsset" }) @XmlRootElement(name = "getAssociatedAssetsReturn") public class GetAssociatedAssetsReturn { protected AssetArray containerArray; protected AssetArray memberArray; protected AssetArray layerReferenceArray; protected AssetArray ownerArray; protected AssetArray derivedArray; protected GenerationInfoArray generatorArray; protected GenerationInfoArray generatedArray; protected SubAssetArray subAssetArray; protected Asset thumbAsset; /** * Gets the value of the containerArray property. * * @return * possible object is * {@link AssetArray } * */ public AssetArray getContainerArray() { return containerArray; } /** * Sets the value of the containerArray property. * * @param value * allowed object is * {@link AssetArray } * */ public void setContainerArray(AssetArray value) { this.containerArray = value; } /** * Gets the value of the memberArray property. * * @return * possible object is * {@link AssetArray } * */ public AssetArray getMemberArray() { return memberArray; } /** * Sets the value of the memberArray property. * * @param value * allowed object is * {@link AssetArray } * */ public void setMemberArray(AssetArray value) { this.memberArray = value; } /** * Gets the value of the layerReferenceArray property. * * @return * possible object is * {@link AssetArray } * */ public AssetArray getLayerReferenceArray() { return layerReferenceArray; } /** * Sets the value of the layerReferenceArray property. * * @param value * allowed object is * {@link AssetArray } * */ public void setLayerReferenceArray(AssetArray value) { this.layerReferenceArray = value; } /** * Gets the value of the ownerArray property. * * @return * possible object is * {@link AssetArray } * */ public AssetArray getOwnerArray() { return ownerArray; } /** * Sets the value of the ownerArray property. * * @param value * allowed object is * {@link AssetArray } * */ public void setOwnerArray(AssetArray value) { this.ownerArray = value; } /** * Gets the value of the derivedArray property. * * @return * possible object is * {@link AssetArray } * */ public AssetArray getDerivedArray() { return derivedArray; } /** * Sets the value of the derivedArray property. * * @param value * allowed object is * {@link AssetArray } * */ public void setDerivedArray(AssetArray value) { this.derivedArray = value; } /** * Gets the value of the generatorArray property. * * @return * possible object is * {@link GenerationInfoArray } * */ public GenerationInfoArray getGeneratorArray() { return generatorArray; } /** * Sets the value of the generatorArray property. * * @param value * allowed object is * {@link GenerationInfoArray } * */ public void setGeneratorArray(GenerationInfoArray value) { this.generatorArray = value; } /** * Gets the value of the generatedArray property. * * @return * possible object is * {@link GenerationInfoArray } * */ public GenerationInfoArray getGeneratedArray() { return generatedArray; } /** * Sets the value of the generatedArray property. * * @param value * allowed object is * {@link GenerationInfoArray } * */ public void setGeneratedArray(GenerationInfoArray value) { this.generatedArray = value; } /** * Gets the value of the subAssetArray property. * * @return * possible object is * {@link SubAssetArray } * */ public SubAssetArray getSubAssetArray() { return subAssetArray; } /** * Sets the value of the subAssetArray property. * * @param value * allowed object is * {@link SubAssetArray } * */ public void setSubAssetArray(SubAssetArray value) { this.subAssetArray = value; } /** * Gets the value of the thumbAsset property. * * @return * possible object is * {@link Asset } * */ public Asset getThumbAsset() { return thumbAsset; } /** * Sets the value of the thumbAsset property. * * @param value * allowed object is * {@link Asset } * */ public void setThumbAsset(Asset value) { this.thumbAsset = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy