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

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

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.06.06 at 01:39:50 PM UTC 
//


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.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

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="companyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="expires" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="imsOrgId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="companyDMVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="baseStorage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="cloudStorage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="addOnStorage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="pvmPerMillion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="pvmPerThousand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="vpm" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="mediaSupport" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="roleAssignmentAllowed" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="caseCreationAllowed" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "companyName", "expires", "imsOrgId", "companyDMVersion", "baseStorage", "cloudStorage", "addOnStorage", "pvmPerMillion", "pvmPerThousand", "vpm", "mediaSupport", "roleAssignmentAllowed", "caseCreationAllowed" }) @XmlRootElement(name = "addCompanyParam", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") public class AddCompanyParam { @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true) protected String companyName; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expires; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String imsOrgId; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true) protected String companyDMVersion; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String baseStorage; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String cloudStorage; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String addOnStorage; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String pvmPerMillion; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String pvmPerThousand; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String vpm; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected Boolean mediaSupport; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected Boolean roleAssignmentAllowed; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected Boolean caseCreationAllowed; /** * Gets the value of the companyName property. * * @return * possible object is * {@link String } * */ public String getCompanyName() { return companyName; } /** * Sets the value of the companyName property. * * @param value * allowed object is * {@link String } * */ public void setCompanyName(String value) { this.companyName = value; } /** * Gets the value of the expires property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpires() { return expires; } /** * Sets the value of the expires property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpires(XMLGregorianCalendar value) { this.expires = value; } /** * Gets the value of the imsOrgId property. * * @return * possible object is * {@link String } * */ public String getImsOrgId() { return imsOrgId; } /** * Sets the value of the imsOrgId property. * * @param value * allowed object is * {@link String } * */ public void setImsOrgId(String value) { this.imsOrgId = value; } /** * Gets the value of the companyDMVersion property. * * @return * possible object is * {@link String } * */ public String getCompanyDMVersion() { return companyDMVersion; } /** * Sets the value of the companyDMVersion property. * * @param value * allowed object is * {@link String } * */ public void setCompanyDMVersion(String value) { this.companyDMVersion = value; } /** * Gets the value of the baseStorage property. * * @return * possible object is * {@link String } * */ public String getBaseStorage() { return baseStorage; } /** * Sets the value of the baseStorage property. * * @param value * allowed object is * {@link String } * */ public void setBaseStorage(String value) { this.baseStorage = value; } /** * Gets the value of the cloudStorage property. * * @return * possible object is * {@link String } * */ public String getCloudStorage() { return cloudStorage; } /** * Sets the value of the cloudStorage property. * * @param value * allowed object is * {@link String } * */ public void setCloudStorage(String value) { this.cloudStorage = value; } /** * Gets the value of the addOnStorage property. * * @return * possible object is * {@link String } * */ public String getAddOnStorage() { return addOnStorage; } /** * Sets the value of the addOnStorage property. * * @param value * allowed object is * {@link String } * */ public void setAddOnStorage(String value) { this.addOnStorage = value; } /** * Gets the value of the pvmPerMillion property. * * @return * possible object is * {@link String } * */ public String getPvmPerMillion() { return pvmPerMillion; } /** * Sets the value of the pvmPerMillion property. * * @param value * allowed object is * {@link String } * */ public void setPvmPerMillion(String value) { this.pvmPerMillion = value; } /** * Gets the value of the pvmPerThousand property. * * @return * possible object is * {@link String } * */ public String getPvmPerThousand() { return pvmPerThousand; } /** * Sets the value of the pvmPerThousand property. * * @param value * allowed object is * {@link String } * */ public void setPvmPerThousand(String value) { this.pvmPerThousand = value; } /** * Gets the value of the vpm property. * * @return * possible object is * {@link String } * */ public String getVpm() { return vpm; } /** * Sets the value of the vpm property. * * @param value * allowed object is * {@link String } * */ public void setVpm(String value) { this.vpm = value; } /** * Gets the value of the mediaSupport property. * * @return * possible object is * {@link Boolean } * */ public Boolean isMediaSupport() { return mediaSupport; } /** * Sets the value of the mediaSupport property. * * @param value * allowed object is * {@link Boolean } * */ public void setMediaSupport(Boolean value) { this.mediaSupport = value; } /** * Gets the value of the roleAssignmentAllowed property. * * @return * possible object is * {@link Boolean } * */ public Boolean isRoleAssignmentAllowed() { return roleAssignmentAllowed; } /** * Sets the value of the roleAssignmentAllowed property. * * @param value * allowed object is * {@link Boolean } * */ public void setRoleAssignmentAllowed(Boolean value) { this.roleAssignmentAllowed = value; } /** * Gets the value of the caseCreationAllowed property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCaseCreationAllowed() { return caseCreationAllowed; } /** * Sets the value of the caseCreationAllowed property. * * @param value * allowed object is * {@link Boolean } * */ public void setCaseCreationAllowed(Boolean value) { this.caseCreationAllowed = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy