// Copyright 2016 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.adwords.jaxws.v201607.cm; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * * Represents an App extension. * * * <p>Java class for AppFeedItem complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AppFeedItem"> * <complexContent> * <extension base="{https://adwords.google.com/api/adwords/cm/v201607}ExtensionFeedItem"> * <sequence> * <element name="appStore" type="{https://adwords.google.com/api/adwords/cm/v201607}AppFeedItem.AppStore" minOccurs="0"/> * <element name="appId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="appLinkText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="appUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="appFinalUrls" type="{https://adwords.google.com/api/adwords/cm/v201607}UrlList" minOccurs="0"/> * <element name="appFinalMobileUrls" type="{https://adwords.google.com/api/adwords/cm/v201607}UrlList" minOccurs="0"/> * <element name="appTrackingUrlTemplate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="appUrlCustomParameters" type="{https://adwords.google.com/api/adwords/cm/v201607}CustomParameters" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AppFeedItem", propOrder = { "appStore", "appId", "appLinkText", "appUrl", "appFinalUrls", "appFinalMobileUrls", "appTrackingUrlTemplate", "appUrlCustomParameters" }) public class AppFeedItem extends ExtensionFeedItem { @XmlSchemaType(name = "string") protected AppFeedItemAppStore appStore; protected String appId; protected String appLinkText; protected String appUrl; protected UrlList appFinalUrls; protected UrlList appFinalMobileUrls; protected String appTrackingUrlTemplate; protected CustomParameters appUrlCustomParameters; /** * Gets the value of the appStore property. * * @return * possible object is * {@link AppFeedItemAppStore } * */ public AppFeedItemAppStore getAppStore() { return appStore; } /** * Sets the value of the appStore property. * * @param value * allowed object is * {@link AppFeedItemAppStore } * */ public void setAppStore(AppFeedItemAppStore value) { this.appStore = value; } /** * Gets the value of the appId property. * * @return * possible object is * {@link String } * */ public String getAppId() { return appId; } /** * Sets the value of the appId property. * * @param value * allowed object is * {@link String } * */ public void setAppId(String value) { this.appId = value; } /** * Gets the value of the appLinkText property. * * @return * possible object is * {@link String } * */ public String getAppLinkText() { return appLinkText; } /** * Sets the value of the appLinkText property. * * @param value * allowed object is * {@link String } * */ public void setAppLinkText(String value) { this.appLinkText = value; } /** * Gets the value of the appUrl property. * * @return * possible object is * {@link String } * */ public String getAppUrl() { return appUrl; } /** * Sets the value of the appUrl property. * * @param value * allowed object is * {@link String } * */ public void setAppUrl(String value) { this.appUrl = value; } /** * Gets the value of the appFinalUrls property. * * @return * possible object is * {@link UrlList } * */ public UrlList getAppFinalUrls() { return appFinalUrls; } /** * Sets the value of the appFinalUrls property. * * @param value * allowed object is * {@link UrlList } * */ public void setAppFinalUrls(UrlList value) { this.appFinalUrls = value; } /** * Gets the value of the appFinalMobileUrls property. * * @return * possible object is * {@link UrlList } * */ public UrlList getAppFinalMobileUrls() { return appFinalMobileUrls; } /** * Sets the value of the appFinalMobileUrls property. * * @param value * allowed object is * {@link UrlList } * */ public void setAppFinalMobileUrls(UrlList value) { this.appFinalMobileUrls = value; } /** * Gets the value of the appTrackingUrlTemplate property. * * @return * possible object is * {@link String } * */ public String getAppTrackingUrlTemplate() { return appTrackingUrlTemplate; } /** * Sets the value of the appTrackingUrlTemplate property. * * @param value * allowed object is * {@link String } * */ public void setAppTrackingUrlTemplate(String value) { this.appTrackingUrlTemplate = value; } /** * Gets the value of the appUrlCustomParameters property. * * @return * possible object is * {@link CustomParameters } * */ public CustomParameters getAppUrlCustomParameters() { return appUrlCustomParameters; } /** * Sets the value of the appUrlCustomParameters property. * * @param value * allowed object is * {@link CustomParameters } * */ public void setAppUrlCustomParameters(CustomParameters value) { this.appUrlCustomParameters = value; } }