com.microsoft.bingads.v13.campaignmanagement.InheritFromParentBiddingScheme 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 InheritFromParentBiddingScheme complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InheritFromParentBiddingScheme", propOrder = {
"inheritedBidStrategyType"
})
public class InheritFromParentBiddingScheme
extends BiddingScheme
{
public InheritFromParentBiddingScheme() {
this.type = "InheritFromParent";
}
@XmlElement(name = "InheritedBidStrategyType", nillable = true)
protected String inheritedBidStrategyType;
/**
* Gets the value of the inheritedBidStrategyType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInheritedBidStrategyType() {
return inheritedBidStrategyType;
}
/**
* Sets the value of the inheritedBidStrategyType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInheritedBidStrategyType(String value) {
this.inheritedBidStrategyType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy