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

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


package com.microsoft.bingads.v13.adinsight;

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 UseBroadMatchKeywordRecommendation complex type. * *

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

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UseBroadMatchKeywordRecommendation", propOrder = { "currentMatchType", "currentStatus", "keyword", "keywordOrderItemId", "suggestedBid", "suggestedMatchType", "suggestedStatus" }) public class UseBroadMatchKeywordRecommendation extends RecommendationBase { public UseBroadMatchKeywordRecommendation() { this.type = RecommendationType.fromValue("UseBroadMatchKeywordRecommendation"); } @XmlElement(name = "CurrentMatchType") protected Integer currentMatchType; @XmlElement(name = "CurrentStatus", nillable = true) protected String currentStatus; @XmlElement(name = "Keyword", nillable = true) protected String keyword; @XmlElement(name = "KeywordOrderItemId") protected Long keywordOrderItemId; @XmlElement(name = "SuggestedBid") protected Double suggestedBid; @XmlElement(name = "SuggestedMatchType") protected Integer suggestedMatchType; @XmlElement(name = "SuggestedStatus", nillable = true) protected String suggestedStatus; /** * Gets the value of the currentMatchType property. * * @return * possible object is * {@link Integer } * */ public Integer getCurrentMatchType() { return currentMatchType; } /** * Sets the value of the currentMatchType property. * * @param value * allowed object is * {@link Integer } * */ public void setCurrentMatchType(Integer value) { this.currentMatchType = value; } /** * Gets the value of the currentStatus property. * * @return * possible object is * {@link String } * */ public String getCurrentStatus() { return currentStatus; } /** * Sets the value of the currentStatus property. * * @param value * allowed object is * {@link String } * */ public void setCurrentStatus(String value) { this.currentStatus = value; } /** * Gets the value of the keyword property. * * @return * possible object is * {@link String } * */ public String getKeyword() { return keyword; } /** * Sets the value of the keyword property. * * @param value * allowed object is * {@link String } * */ public void setKeyword(String value) { this.keyword = value; } /** * Gets the value of the keywordOrderItemId property. * * @return * possible object is * {@link Long } * */ public Long getKeywordOrderItemId() { return keywordOrderItemId; } /** * Sets the value of the keywordOrderItemId property. * * @param value * allowed object is * {@link Long } * */ public void setKeywordOrderItemId(Long value) { this.keywordOrderItemId = value; } /** * Gets the value of the suggestedBid property. * * @return * possible object is * {@link Double } * */ public Double getSuggestedBid() { return suggestedBid; } /** * Sets the value of the suggestedBid property. * * @param value * allowed object is * {@link Double } * */ public void setSuggestedBid(Double value) { this.suggestedBid = value; } /** * Gets the value of the suggestedMatchType property. * * @return * possible object is * {@link Integer } * */ public Integer getSuggestedMatchType() { return suggestedMatchType; } /** * Sets the value of the suggestedMatchType property. * * @param value * allowed object is * {@link Integer } * */ public void setSuggestedMatchType(Integer value) { this.suggestedMatchType = value; } /** * Gets the value of the suggestedStatus property. * * @return * possible object is * {@link String } * */ public String getSuggestedStatus() { return suggestedStatus; } /** * Sets the value of the suggestedStatus property. * * @param value * allowed object is * {@link String } * */ public void setSuggestedStatus(String value) { this.suggestedStatus = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy