com.google.api.ads.admanager.jaxws.v202402.User Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dfp-appengine Show documentation
Show all versions of dfp-appengine Show documentation
Ad Manager specific AppEngine components.
The newest version!
// Copyright 2024 Google LLC
//
// 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.admanager.jaxws.v202402;
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/v202402}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"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "User", propOrder = {
"isActive",
"isEmailNotificationAllowed",
"externalId",
"isServiceAccount",
"ordersUiLocalTimeZoneId"
})
public class User
extends UserRecord
{
protected Boolean isActive;
protected Boolean isEmailNotificationAllowed;
protected String externalId;
protected Boolean isServiceAccount;
protected String ordersUiLocalTimeZoneId;
/**
* 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;
}
}