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

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

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

 * <complexType name="SsoPassport">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="authenticationToken" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="partnerId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="partnerAccount" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="partnerUserId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SsoPassport", namespace = "urn:core_2017_1.platform.webservices.netsuite.com", propOrder = { "authenticationToken", "partnerId", "partnerAccount", "partnerUserId" }) public class SsoPassport implements Serializable { @XmlElement(required = true) protected String authenticationToken; @XmlElement(required = true) protected String partnerId; @XmlElement(required = true) protected String partnerAccount; @XmlElement(required = true) protected String partnerUserId; /** * Gets the value of the authenticationToken property. * * @return * possible object is * {@link String } * */ public String getAuthenticationToken() { return authenticationToken; } /** * Sets the value of the authenticationToken property. * * @param value * allowed object is * {@link String } * */ public void setAuthenticationToken(String value) { this.authenticationToken = value; } /** * Gets the value of the partnerId property. * * @return * possible object is * {@link String } * */ public String getPartnerId() { return partnerId; } /** * Sets the value of the partnerId property. * * @param value * allowed object is * {@link String } * */ public void setPartnerId(String value) { this.partnerId = value; } /** * Gets the value of the partnerAccount property. * * @return * possible object is * {@link String } * */ public String getPartnerAccount() { return partnerAccount; } /** * Sets the value of the partnerAccount property. * * @param value * allowed object is * {@link String } * */ public void setPartnerAccount(String value) { this.partnerAccount = value; } /** * Gets the value of the partnerUserId property. * * @return * possible object is * {@link String } * */ public String getPartnerUserId() { return partnerUserId; } /** * Sets the value of the partnerUserId property. * * @param value * allowed object is * {@link String } * */ public void setPartnerUserId(String value) { this.partnerUserId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy