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

com.microsoft.bingads.v13.campaignmanagement.AdRecommendationTextRefineOperation 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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for AdRecommendationTextRefineOperation complex type. * *

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

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AdRecommendationTextRefineOperation", propOrder = { "textField", "textFieldIndex", "textTone" }) public class AdRecommendationTextRefineOperation { @XmlElement(name = "TextField") @XmlSchemaType(name = "string") protected AdRecommendationTextField textField; @XmlElement(name = "TextFieldIndex") protected Integer textFieldIndex; @XmlElement(name = "TextTone", nillable = true) @XmlSchemaType(name = "string") protected AdRecommendationTextTone textTone; /** * Gets the value of the textField property. * * @return * possible object is * {@link AdRecommendationTextField } * */ public AdRecommendationTextField getTextField() { return textField; } /** * Sets the value of the textField property. * * @param value * allowed object is * {@link AdRecommendationTextField } * */ public void setTextField(AdRecommendationTextField value) { this.textField = value; } /** * Gets the value of the textFieldIndex property. * * @return * possible object is * {@link Integer } * */ public Integer getTextFieldIndex() { return textFieldIndex; } /** * Sets the value of the textFieldIndex property. * * @param value * allowed object is * {@link Integer } * */ public void setTextFieldIndex(Integer value) { this.textFieldIndex = value; } /** * Gets the value of the textTone property. * * @return * possible object is * {@link AdRecommendationTextTone } * */ public AdRecommendationTextTone getTextTone() { return textTone; } /** * Sets the value of the textTone property. * * @param value * allowed object is * {@link AdRecommendationTextTone } * */ public void setTextTone(AdRecommendationTextTone value) { this.textTone = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy