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

com.google.api.ads.dfp.jaxws.v201505.Browser Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

package com.google.api.ads.dfp.jaxws.v201505;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *             Represents an internet browser.
 *           
 * 
 * 

Java class for Browser complex type. * *

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

 * <complexType name="Browser">
 *   <complexContent>
 *     <extension base="{https://www.google.com/apis/ads/publisher/v201505}Technology">
 *       <sequence>
 *         <element name="majorVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="minorVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Browser", propOrder = { "majorVersion", "minorVersion" }) public class Browser extends Technology { protected String majorVersion; protected String minorVersion; /** * Gets the value of the majorVersion property. * * @return * possible object is * {@link String } * */ public String getMajorVersion() { return majorVersion; } /** * Sets the value of the majorVersion property. * * @param value * allowed object is * {@link String } * */ public void setMajorVersion(String value) { this.majorVersion = value; } /** * Gets the value of the minorVersion property. * * @return * possible object is * {@link String } * */ public String getMinorVersion() { return minorVersion; } /** * Sets the value of the minorVersion property. * * @param value * allowed object is * {@link String } * */ public void setMinorVersion(String value) { this.minorVersion = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy