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

com.scene7.ipsapi.AddUserParam Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.12.04 at 11:32:00 AM PST 
//


package com.scene7.ipsapi;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="firstName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="passwordExpires" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="isValid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="isIpsAdmin" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="membershipArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}CompanyMembershipUpdateArray"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "firstName", "lastName", "email", "password", "passwordExpires", "isValid", "isIpsAdmin", "membershipArray" }) @XmlRootElement(name = "addUserParam") public class AddUserParam { @XmlElement(required = true) protected String firstName; @XmlElement(required = true) protected String lastName; @XmlElement(required = true) protected String email; @XmlElement(required = true) protected String password; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar passwordExpires; protected boolean isValid; protected boolean isIpsAdmin; @XmlElement(required = true) protected CompanyMembershipUpdateArray membershipArray; /** * Gets the value of the firstName property. * * @return * possible object is * {@link String } * */ public String getFirstName() { return firstName; } /** * Sets the value of the firstName property. * * @param value * allowed object is * {@link String } * */ public void setFirstName(String value) { this.firstName = value; } /** * Gets the value of the lastName property. * * @return * possible object is * {@link String } * */ public String getLastName() { return lastName; } /** * Sets the value of the lastName property. * * @param value * allowed object is * {@link String } * */ public void setLastName(String value) { this.lastName = value; } /** * Gets the value of the email property. * * @return * possible object is * {@link String } * */ public String getEmail() { return email; } /** * Sets the value of the email property. * * @param value * allowed object is * {@link String } * */ public void setEmail(String value) { this.email = value; } /** * Gets the value of the password property. * * @return * possible object is * {@link String } * */ public String getPassword() { return password; } /** * Sets the value of the password property. * * @param value * allowed object is * {@link String } * */ public void setPassword(String value) { this.password = value; } /** * Gets the value of the passwordExpires property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getPasswordExpires() { return passwordExpires; } /** * Sets the value of the passwordExpires property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setPasswordExpires(XMLGregorianCalendar value) { this.passwordExpires = value; } /** * Gets the value of the isValid property. * */ public boolean isIsValid() { return isValid; } /** * Sets the value of the isValid property. * */ public void setIsValid(boolean value) { this.isValid = value; } /** * Gets the value of the isIpsAdmin property. * */ public boolean isIsIpsAdmin() { return isIpsAdmin; } /** * Sets the value of the isIpsAdmin property. * */ public void setIsIpsAdmin(boolean value) { this.isIpsAdmin = value; } /** * Gets the value of the membershipArray property. * * @return * possible object is * {@link CompanyMembershipUpdateArray } * */ public CompanyMembershipUpdateArray getMembershipArray() { return membershipArray; } /** * Sets the value of the membershipArray property. * * @param value * allowed object is * {@link CompanyMembershipUpdateArray } * */ public void setMembershipArray(CompanyMembershipUpdateArray value) { this.membershipArray = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy