
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.CompanySettings 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 CompanySettings complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CompanySettings">
* <complexContent>
* <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
* <sequence>
* <element name="fiscalYear" type="{http://soap.sforce.com/2006/04/metadata}FiscalYearSettings" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CompanySettings", propOrder = {
"fiscalYear"
})
public class CompanySettings
extends Metadata
{
protected FiscalYearSettings fiscalYear;
/**
* Gets the value of the fiscalYear property.
*
* @return
* possible object is
* {@link FiscalYearSettings }
*
*/
public FiscalYearSettings getFiscalYear() {
return fiscalYear;
}
/**
* Sets the value of the fiscalYear property.
*
* @param value
* allowed object is
* {@link FiscalYearSettings }
*
*/
public void setFiscalYear(FiscalYearSettings value) {
this.fiscalYear = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy