package com.microsoft.bingads.v11.campaignmanagement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for SiteLink complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SiteLink"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Description1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Description2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="DestinationUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="DevicePreference" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="DisplayText" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="FinalAppUrls" type="{http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V11}ArrayOfAppUrl" minOccurs="0"/> * <element name="FinalMobileUrls" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/> * <element name="FinalUrls" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/> * <element name="Scheduling" type="{https://bingads.microsoft.com/CampaignManagement/v11}Schedule" minOccurs="0"/> * <element name="TrackingUrlTemplate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="UrlCustomParameters" type="{http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V11}CustomParameters" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SiteLink", propOrder = { "description1", "description2", "destinationUrl", "devicePreference", "displayText", "finalAppUrls", "finalMobileUrls", "finalUrls", "scheduling", "trackingUrlTemplate", "urlCustomParameters" }) public class SiteLink { @XmlElement(name = "Description1", nillable = true) protected String description1; @XmlElement(name = "Description2", nillable = true) protected String description2; @XmlElement(name = "DestinationUrl", nillable = true) protected String destinationUrl; @XmlElement(name = "DevicePreference", nillable = true) protected Long devicePreference; @XmlElement(name = "DisplayText", required = true, nillable = true) protected String displayText; @XmlElement(name = "FinalAppUrls", nillable = true) protected ArrayOfAppUrl finalAppUrls; @XmlElement(name = "FinalMobileUrls", nillable = true) protected ArrayOfstring finalMobileUrls; @XmlElement(name = "FinalUrls", nillable = true) protected ArrayOfstring finalUrls; @XmlElement(name = "Scheduling", nillable = true) protected Schedule scheduling; @XmlElement(name = "TrackingUrlTemplate", nillable = true) protected String trackingUrlTemplate; @XmlElement(name = "UrlCustomParameters", nillable = true) protected CustomParameters urlCustomParameters; /** * Gets the value of the description1 property. * * @return * possible object is * {@link String } * */ public String getDescription1() { return description1; } /** * Sets the value of the description1 property. * * @param value * allowed object is * {@link String } * */ public void setDescription1(String value) { this.description1 = value; } /** * Gets the value of the description2 property. * * @return * possible object is * {@link String } * */ public String getDescription2() { return description2; } /** * Sets the value of the description2 property. * * @param value * allowed object is * {@link String } * */ public void setDescription2(String value) { this.description2 = value; } /** * Gets the value of the destinationUrl property. * * @return * possible object is * {@link String } * */ public String getDestinationUrl() { return destinationUrl; } /** * Sets the value of the destinationUrl property. * * @param value * allowed object is * {@link String } * */ public void setDestinationUrl(String value) { this.destinationUrl = value; } /** * Gets the value of the devicePreference property. * * @return * possible object is * {@link Long } * */ public Long getDevicePreference() { return devicePreference; } /** * Sets the value of the devicePreference property. * * @param value * allowed object is * {@link Long } * */ public void setDevicePreference(Long value) { this.devicePreference = value; } /** * Gets the value of the displayText property. * * @return * possible object is * {@link String } * */ public String getDisplayText() { return displayText; } /** * Sets the value of the displayText property. * * @param value * allowed object is * {@link String } * */ public void setDisplayText(String value) { this.displayText = value; } /** * Gets the value of the finalAppUrls property. * * @return * possible object is * {@link ArrayOfAppUrl } * */ public ArrayOfAppUrl getFinalAppUrls() { return finalAppUrls; } /** * Sets the value of the finalAppUrls property. * * @param value * allowed object is * {@link ArrayOfAppUrl } * */ public void setFinalAppUrls(ArrayOfAppUrl value) { this.finalAppUrls = value; } /** * Gets the value of the finalMobileUrls property. * * @return * possible object is * {@link ArrayOfstring } * */ public ArrayOfstring getFinalMobileUrls() { return finalMobileUrls; } /** * Sets the value of the finalMobileUrls property. * * @param value * allowed object is * {@link ArrayOfstring } * */ public void setFinalMobileUrls(ArrayOfstring value) { this.finalMobileUrls = value; } /** * Gets the value of the finalUrls property. * * @return * possible object is * {@link ArrayOfstring } * */ public ArrayOfstring getFinalUrls() { return finalUrls; } /** * Sets the value of the finalUrls property. * * @param value * allowed object is * {@link ArrayOfstring } * */ public void setFinalUrls(ArrayOfstring value) { this.finalUrls = value; } /** * Gets the value of the scheduling property. * * @return * possible object is * {@link Schedule } * */ public Schedule getScheduling() { return scheduling; } /** * Sets the value of the scheduling property. * * @param value * allowed object is * {@link Schedule } * */ public void setScheduling(Schedule value) { this.scheduling = value; } /** * Gets the value of the trackingUrlTemplate property. * * @return * possible object is * {@link String } * */ public String getTrackingUrlTemplate() { return trackingUrlTemplate; } /** * Sets the value of the trackingUrlTemplate property. * * @param value * allowed object is * {@link String } * */ public void setTrackingUrlTemplate(String value) { this.trackingUrlTemplate = value; } /** * Gets the value of the urlCustomParameters property. * * @return * possible object is * {@link CustomParameters } * */ public CustomParameters getUrlCustomParameters() { return urlCustomParameters; } /** * Sets the value of the urlCustomParameters property. * * @param value * allowed object is * {@link CustomParameters } * */ public void setUrlCustomParameters(CustomParameters value) { this.urlCustomParameters = value; } }