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

com.google.api.ads.admanager.jaxws.v202405.MobileApplication Maven / Gradle / Ivy

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.v202405;

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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *             A mobile application that has been added to or "claimed" by the network to be used for targeting
 *             purposes. These mobile apps can come from various app stores.
 *           
 * 
 * 

Java class for MobileApplication complex type. * *

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

 * <complexType name="MobileApplication">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="applicationId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="appStoreId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="appStores" type="{https://www.google.com/apis/ads/publisher/v202405}MobileApplicationStore" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="isArchived" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="appStoreName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="applicationCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="developerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="platform" type="{https://www.google.com/apis/ads/publisher/v202405}MobileApplicationPlatform" minOccurs="0"/>
 *         <element name="isFree" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="downloadUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="approvalStatus" type="{https://www.google.com/apis/ads/publisher/v202405}MobileApplication.ApprovalStatus" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MobileApplication", propOrder = { "id", "applicationId", "displayName", "appStoreId", "appStores", "isArchived", "appStoreName", "applicationCode", "developerName", "platform", "isFree", "downloadUrl", "approvalStatus" }) public class MobileApplication { protected Long id; protected Long applicationId; protected String displayName; protected String appStoreId; @XmlSchemaType(name = "string") protected List appStores; protected Boolean isArchived; protected String appStoreName; protected String applicationCode; protected String developerName; @XmlSchemaType(name = "string") protected MobileApplicationPlatform platform; protected Boolean isFree; protected String downloadUrl; @XmlSchemaType(name = "string") protected MobileApplicationApprovalStatus approvalStatus; /** * 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 applicationId property. * * @return * possible object is * {@link Long } * */ public Long getApplicationId() { return applicationId; } /** * Sets the value of the applicationId property. * * @param value * allowed object is * {@link Long } * */ public void setApplicationId(Long value) { this.applicationId = value; } /** * Gets the value of the displayName property. * * @return * possible object is * {@link String } * */ public String getDisplayName() { return displayName; } /** * Sets the value of the displayName property. * * @param value * allowed object is * {@link String } * */ public void setDisplayName(String value) { this.displayName = value; } /** * Gets the value of the appStoreId property. * * @return * possible object is * {@link String } * */ public String getAppStoreId() { return appStoreId; } /** * Sets the value of the appStoreId property. * * @param value * allowed object is * {@link String } * */ public void setAppStoreId(String value) { this.appStoreId = value; } /** * Gets the value of the appStores 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 appStores property. * *

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

     *    getAppStores().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link MobileApplicationStore } * * */ public List getAppStores() { if (appStores == null) { appStores = new ArrayList(); } return this.appStores; } /** * Gets the value of the isArchived property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsArchived() { return isArchived; } /** * Sets the value of the isArchived property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsArchived(Boolean value) { this.isArchived = value; } /** * Gets the value of the appStoreName property. * * @return * possible object is * {@link String } * */ public String getAppStoreName() { return appStoreName; } /** * Sets the value of the appStoreName property. * * @param value * allowed object is * {@link String } * */ public void setAppStoreName(String value) { this.appStoreName = value; } /** * Gets the value of the applicationCode property. * * @return * possible object is * {@link String } * */ public String getApplicationCode() { return applicationCode; } /** * Sets the value of the applicationCode property. * * @param value * allowed object is * {@link String } * */ public void setApplicationCode(String value) { this.applicationCode = value; } /** * Gets the value of the developerName property. * * @return * possible object is * {@link String } * */ public String getDeveloperName() { return developerName; } /** * Sets the value of the developerName property. * * @param value * allowed object is * {@link String } * */ public void setDeveloperName(String value) { this.developerName = value; } /** * Gets the value of the platform property. * * @return * possible object is * {@link MobileApplicationPlatform } * */ public MobileApplicationPlatform getPlatform() { return platform; } /** * Sets the value of the platform property. * * @param value * allowed object is * {@link MobileApplicationPlatform } * */ public void setPlatform(MobileApplicationPlatform value) { this.platform = value; } /** * Gets the value of the isFree property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsFree() { return isFree; } /** * Sets the value of the isFree property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsFree(Boolean value) { this.isFree = value; } /** * Gets the value of the downloadUrl property. * * @return * possible object is * {@link String } * */ public String getDownloadUrl() { return downloadUrl; } /** * Sets the value of the downloadUrl property. * * @param value * allowed object is * {@link String } * */ public void setDownloadUrl(String value) { this.downloadUrl = value; } /** * Gets the value of the approvalStatus property. * * @return * possible object is * {@link MobileApplicationApprovalStatus } * */ public MobileApplicationApprovalStatus getApprovalStatus() { return approvalStatus; } /** * Sets the value of the approvalStatus property. * * @param value * allowed object is * {@link MobileApplicationApprovalStatus } * */ public void setApprovalStatus(MobileApplicationApprovalStatus value) { this.approvalStatus = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy