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

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.EntitlementTemplate Maven / Gradle / Ivy

The newest version!

package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for EntitlementTemplate complex type. * *

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

 * <complexType name="EntitlementTemplate">
 *   <complexContent>
 *     <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
 *       <sequence>
 *         <element name="businessHours" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="casesPerEntitlement" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="entitlementProcess" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="isPerIncident" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="term" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EntitlementTemplate", propOrder = { "businessHours", "casesPerEntitlement", "entitlementProcess", "isPerIncident", "term", "type" }) public class EntitlementTemplate extends Metadata { protected String businessHours; protected Integer casesPerEntitlement; protected String entitlementProcess; protected Boolean isPerIncident; protected Integer term; protected String type; /** * Gets the value of the businessHours property. * * @return * possible object is * {@link String } * */ public String getBusinessHours() { return businessHours; } /** * Sets the value of the businessHours property. * * @param value * allowed object is * {@link String } * */ public void setBusinessHours(String value) { this.businessHours = value; } /** * Gets the value of the casesPerEntitlement property. * * @return * possible object is * {@link Integer } * */ public Integer getCasesPerEntitlement() { return casesPerEntitlement; } /** * Sets the value of the casesPerEntitlement property. * * @param value * allowed object is * {@link Integer } * */ public void setCasesPerEntitlement(Integer value) { this.casesPerEntitlement = value; } /** * Gets the value of the entitlementProcess property. * * @return * possible object is * {@link String } * */ public String getEntitlementProcess() { return entitlementProcess; } /** * Sets the value of the entitlementProcess property. * * @param value * allowed object is * {@link String } * */ public void setEntitlementProcess(String value) { this.entitlementProcess = value; } /** * Gets the value of the isPerIncident property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsPerIncident() { return isPerIncident; } /** * Sets the value of the isPerIncident property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsPerIncident(Boolean value) { this.isPerIncident = value; } /** * Gets the value of the term property. * * @return * possible object is * {@link Integer } * */ public Integer getTerm() { return term; } /** * Sets the value of the term property. * * @param value * allowed object is * {@link Integer } * */ public void setTerm(Integer value) { this.term = 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy