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

com.google.api.ads.dfp.jaxws.v201602.User Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

package com.google.api.ads.dfp.jaxws.v201602;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *             Represents a user of the system.
 *             

* Users may be assigned at most one {@link Role} per network. Each role * provides a user with permissions to perform specific operations. Without a * role, they will not be able to perform any actions. *

* * *

Java class for User complex type. * *

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

 * <complexType name="User">
 *   <complexContent>
 *     <extension base="{https://www.google.com/apis/ads/publisher/v201602}UserRecord">
 *       <sequence>
 *         <element name="isActive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="isEmailNotificationAllowed" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="externalId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="isServiceAccount" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="ordersUiLocalTimeZoneId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="customFieldValues" type="{https://www.google.com/apis/ads/publisher/v201602}BaseCustomFieldValue" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "User", propOrder = { "isActive", "isEmailNotificationAllowed", "externalId", "isServiceAccount", "ordersUiLocalTimeZoneId", "customFieldValues" }) public class User extends UserRecord { protected Boolean isActive; protected Boolean isEmailNotificationAllowed; protected String externalId; protected Boolean isServiceAccount; protected String ordersUiLocalTimeZoneId; protected List customFieldValues; /** * Gets the value of the isActive property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsActive() { return isActive; } /** * Sets the value of the isActive property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsActive(Boolean value) { this.isActive = value; } /** * Gets the value of the isEmailNotificationAllowed property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsEmailNotificationAllowed() { return isEmailNotificationAllowed; } /** * Sets the value of the isEmailNotificationAllowed property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsEmailNotificationAllowed(Boolean value) { this.isEmailNotificationAllowed = value; } /** * Gets the value of the externalId property. * * @return * possible object is * {@link String } * */ public String getExternalId() { return externalId; } /** * Sets the value of the externalId property. * * @param value * allowed object is * {@link String } * */ public void setExternalId(String value) { this.externalId = value; } /** * Gets the value of the isServiceAccount property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsServiceAccount() { return isServiceAccount; } /** * Sets the value of the isServiceAccount property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsServiceAccount(Boolean value) { this.isServiceAccount = value; } /** * Gets the value of the ordersUiLocalTimeZoneId property. * * @return * possible object is * {@link String } * */ public String getOrdersUiLocalTimeZoneId() { return ordersUiLocalTimeZoneId; } /** * Sets the value of the ordersUiLocalTimeZoneId property. * * @param value * allowed object is * {@link String } * */ public void setOrdersUiLocalTimeZoneId(String value) { this.ordersUiLocalTimeZoneId = value; } /** * Gets the value of the customFieldValues property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the customFieldValues property. * *

* For example, to add a new item, do as follows: *

     *    getCustomFieldValues().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link BaseCustomFieldValue } * * */ public List getCustomFieldValues() { if (customFieldValues == null) { customFieldValues = new ArrayList(); } return this.customFieldValues; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy