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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy