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

com.bytekast.netsuite.client.DeletionReason 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 DeletionReason complex type. * *

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

 * <complexType name="DeletionReason">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="deletionReasonCode" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef"/>
 *         <element name="deletionReasonMemo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeletionReason", namespace = "urn:core_2017_1.platform.webservices.netsuite.com", propOrder = { "deletionReasonCode", "deletionReasonMemo" }) public class DeletionReason implements Serializable { @XmlElement(required = true) protected RecordRef deletionReasonCode; protected String deletionReasonMemo; /** * Gets the value of the deletionReasonCode property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getDeletionReasonCode() { return deletionReasonCode; } /** * Sets the value of the deletionReasonCode property. * * @param value * allowed object is * {@link RecordRef } * */ public void setDeletionReasonCode(RecordRef value) { this.deletionReasonCode = value; } /** * Gets the value of the deletionReasonMemo property. * * @return * possible object is * {@link String } * */ public String getDeletionReasonMemo() { return deletionReasonMemo; } /** * Sets the value of the deletionReasonMemo property. * * @param value * allowed object is * {@link String } * */ public void setDeletionReasonMemo(String value) { this.deletionReasonMemo = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy