com.microsoft.bingads.v13.customermanagement.UserInvitation Maven / Gradle / Ivy
package com.microsoft.bingads.v13.customermanagement;
import java.util.Calendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for UserInvitation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UserInvitation", namespace = "https://bingads.microsoft.com/Customer/v13/Entities", propOrder = {
"id",
"firstName",
"lastName",
"email",
"customerId",
"roleId",
"accountIds",
"expirationDate",
"lcid"
})
public class UserInvitation {
@XmlElement(name = "Id")
protected Long id;
@XmlElement(name = "FirstName", nillable = true)
protected String firstName;
@XmlElement(name = "LastName", nillable = true)
protected String lastName;
@XmlElement(name = "Email", nillable = true)
protected String email;
@XmlElement(name = "CustomerId")
protected Long customerId;
@XmlElement(name = "RoleId")
protected Integer roleId;
@XmlElement(name = "AccountIds", nillable = true)
protected ArrayOflong accountIds;
@XmlElement(name = "ExpirationDate", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected Calendar expirationDate;
@XmlElement(name = "Lcid")
@XmlSchemaType(name = "string")
protected LCID lcid;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setId(Long value) {
this.id = value;
}
/**
* 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 customerId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getCustomerId() {
return customerId;
}
/**
* Sets the value of the customerId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setCustomerId(Long value) {
this.customerId = value;
}
/**
* Gets the value of the roleId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRoleId() {
return roleId;
}
/**
* Sets the value of the roleId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRoleId(Integer value) {
this.roleId = value;
}
/**
* Gets the value of the accountIds property.
*
* @return
* possible object is
* {@link ArrayOflong }
*
*/
public ArrayOflong getAccountIds() {
return accountIds;
}
/**
* Sets the value of the accountIds property.
*
* @param value
* allowed object is
* {@link ArrayOflong }
*
*/
public void setAccountIds(ArrayOflong value) {
this.accountIds = value;
}
/**
* Gets the value of the expirationDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public Calendar getExpirationDate() {
return expirationDate;
}
/**
* Sets the value of the expirationDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExpirationDate(Calendar value) {
this.expirationDate = value;
}
/**
* Gets the value of the lcid property.
*
* @return
* possible object is
* {@link LCID }
*
*/
public LCID getLcid() {
return lcid;
}
/**
* Sets the value of the lcid property.
*
* @param value
* allowed object is
* {@link LCID }
*
*/
public void setLcid(LCID value) {
this.lcid = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy