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

com.microsoft.bingads.v13.adinsight.AdPosition Maven / Gradle / Ivy

Go to download

The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.

There is a newer version: 13.0.22.1
Show newest version

package com.microsoft.bingads.v13.adinsight;

import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for AdPosition. * *

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

{@code
 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * }
* */ @XmlType(name = "AdPosition") @XmlEnum public enum AdPosition { @XmlEnumValue("All") ALL("All"), @XmlEnumValue("MainLine1") MAIN_LINE_1("MainLine1"), @XmlEnumValue("MainLine2") MAIN_LINE_2("MainLine2"), @XmlEnumValue("MainLine3") MAIN_LINE_3("MainLine3"), @XmlEnumValue("MainLine4") MAIN_LINE_4("MainLine4"), @XmlEnumValue("FirstPage1") FIRST_PAGE_1("FirstPage1"), @XmlEnumValue("FirstPage2") FIRST_PAGE_2("FirstPage2"), @XmlEnumValue("FirstPage3") FIRST_PAGE_3("FirstPage3"), @XmlEnumValue("FirstPage4") FIRST_PAGE_4("FirstPage4"), @XmlEnumValue("FirstPage5") FIRST_PAGE_5("FirstPage5"), @XmlEnumValue("FirstPage6") FIRST_PAGE_6("FirstPage6"), @XmlEnumValue("FirstPage7") FIRST_PAGE_7("FirstPage7"), @XmlEnumValue("FirstPage8") FIRST_PAGE_8("FirstPage8"), @XmlEnumValue("FirstPage9") FIRST_PAGE_9("FirstPage9"), @XmlEnumValue("FirstPage10") FIRST_PAGE_10("FirstPage10"), @XmlEnumValue("Aggregate") AGGREGATE("Aggregate"); private final String value; AdPosition(String v) { value = v; } public String value() { return value; } public static AdPosition fromValue(String v) { for (AdPosition c: AdPosition.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy