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

tsg.ns.wsdl.coop.AccountingPeriodFiscalCalendars Maven / Gradle / Ivy


package tsg.ns.wsdl.coop;

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


/**
 * 

Java class for AccountingPeriodFiscalCalendars complex type. * *

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

 * <complexType name="AccountingPeriodFiscalCalendars">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="fiscalCalendar" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="parent" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AccountingPeriodFiscalCalendars", propOrder = { "fiscalCalendar", "parent" }) public class AccountingPeriodFiscalCalendars { protected RecordRef fiscalCalendar; protected RecordRef parent; /** * Gets the value of the fiscalCalendar property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getFiscalCalendar() { return fiscalCalendar; } /** * Sets the value of the fiscalCalendar property. * * @param value * allowed object is * {@link RecordRef } * */ public void setFiscalCalendar(RecordRef value) { this.fiscalCalendar = value; } /** * Gets the value of the parent property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getParent() { return parent; } /** * Sets the value of the parent property. * * @param value * allowed object is * {@link RecordRef } * */ public void setParent(RecordRef value) { this.parent = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy