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

com.scene7.ipsapi.CompanyUPPProperties 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.XmlType;


/**
 * 

Java class for CompanyUPPProperties complex type. * *

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

 * <complexType name="CompanyUPPProperties">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="baseStorage" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="cloudStorage" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="addOnStorage" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="pvmPerMillion" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="pvmPerThousand" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="vpm" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="mediaSupport" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="roleAssignmentAllowed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="caseCreationAllowed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CompanyUPPProperties", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = { "baseStorage", "cloudStorage", "addOnStorage", "pvmPerMillion", "pvmPerThousand", "vpm", "mediaSupport", "roleAssignmentAllowed", "caseCreationAllowed" }) public class CompanyUPPProperties { @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true) protected String baseStorage; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true) protected String cloudStorage; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true) protected String addOnStorage; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true) protected String pvmPerMillion; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true) protected String pvmPerThousand; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true) 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 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. * */ public boolean isMediaSupport() { return mediaSupport; } /** * Sets the value of the mediaSupport property. * */ public void setMediaSupport(boolean value) { this.mediaSupport = value; } /** * Gets the value of the roleAssignmentAllowed property. * */ public boolean isRoleAssignmentAllowed() { return roleAssignmentAllowed; } /** * Sets the value of the roleAssignmentAllowed property. * */ public void setRoleAssignmentAllowed(boolean value) { this.roleAssignmentAllowed = value; } /** * Gets the value of the caseCreationAllowed property. * */ public boolean isCaseCreationAllowed() { return caseCreationAllowed; } /** * Sets the value of the caseCreationAllowed property. * */ public void setCaseCreationAllowed(boolean value) { this.caseCreationAllowed = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy