com.scene7.ipsapi.AddUserParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.06.06 at 01:39:50 PM UTC
//
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/2024-05-30-beta}CompanyMembershipUpdateArray"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"firstName",
"lastName",
"email",
"password",
"passwordExpires",
"isValid",
"isIpsAdmin",
"membershipArray"
})
@XmlRootElement(name = "addUserParam", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
public class AddUserParam {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String firstName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String lastName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String email;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String password;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar passwordExpires;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected boolean isValid;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected boolean isIpsAdmin;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", 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