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

com.bytekast.netsuite.client.AttachBasicReference Maven / Gradle / Ivy

The newest version!

package com.bytekast.netsuite.client;

import java.io.Serializable;
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 AttachBasicReference complex type. * *

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

 * <complexType name="AttachBasicReference">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}AttachReference">
 *       <sequence>
 *         <element name="attachedRecord" type="{urn:core_2017_1.platform.webservices.netsuite.com}BaseRef"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AttachBasicReference", namespace = "urn:core_2017_1.platform.webservices.netsuite.com", propOrder = { "attachedRecord" }) public class AttachBasicReference extends AttachReference implements Serializable { @XmlElement(required = true) protected BaseRef attachedRecord; /** * Gets the value of the attachedRecord property. * * @return * possible object is * {@link BaseRef } * */ public BaseRef getAttachedRecord() { return attachedRecord; } /** * Sets the value of the attachedRecord property. * * @param value * allowed object is * {@link BaseRef } * */ public void setAttachedRecord(BaseRef value) { this.attachedRecord = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy