com.microsoft.bingads.v13.campaignmanagement.AppUrl Maven / Gradle / Ivy
package com.microsoft.bingads.v13.campaignmanagement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for AppUrl complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AppUrl", propOrder = {
"osType",
"url"
})
public class AppUrl {
@XmlElement(name = "OsType", nillable = true)
protected String osType;
@XmlElement(name = "Url", nillable = true)
protected String url;
/**
* Gets the value of the osType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOsType() {
return osType;
}
/**
* Sets the value of the osType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOsType(String value) {
this.osType = value;
}
/**
* Gets the value of the url property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrl() {
return url;
}
/**
* Sets the value of the url property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrl(String value) {
this.url = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy