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

com.microsoft.bingads.v13.campaignmanagement.PlacementCriterion 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 PlacementCriterion complex type. * *

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

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PlacementCriterion", propOrder = { "placementId", "placementName" }) public class PlacementCriterion extends Criterion { public PlacementCriterion() { this.type = "PlacementCriterion"; } @XmlElement(name = "PlacementId") protected Long placementId; @XmlElement(name = "PlacementName", nillable = true) protected String placementName; /** * Gets the value of the placementId property. * * @return * possible object is * {@link Long } * */ public Long getPlacementId() { return placementId; } /** * Sets the value of the placementId property. * * @param value * allowed object is * {@link Long } * */ public void setPlacementId(Long value) { this.placementId = value; } /** * Gets the value of the placementName property. * * @return * possible object is * {@link String } * */ public String getPlacementName() { return placementName; } /** * Sets the value of the placementName property. * * @param value * allowed object is * {@link String } * */ public void setPlacementName(String value) { this.placementName = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy