// Copyright 2017 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package com.google.api.ads.dfp.jaxws.v201702; 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. * <p> * 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. * </p> * * * <p>Java class for User complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="User"> * <complexContent> * <extension base="{https://www.google.com/apis/ads/publisher/v201702}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/v201702}BaseCustomFieldValue" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @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<BaseCustomFieldValue> 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. * * <p> * 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 <CODE>set</CODE> method for the customFieldValues property. * * <p> * For example, to add a new item, do as follows: * <pre> * getCustomFieldValues().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link BaseCustomFieldValue } * * */ public List<BaseCustomFieldValue> getCustomFieldValues() { if (customFieldValues == null) { customFieldValues = new ArrayList<BaseCustomFieldValue>(); } return this.customFieldValues; } }