package com.microsoft.bingads.v11.campaignmanagement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NegativeKeyword complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="NegativeKeyword"> * <complexContent> * <extension base="{https://bingads.microsoft.com/CampaignManagement/v11}SharedListItem"> * <sequence> * <element name="Id" type="{http://www.w3.org/2001/XMLSchema}long"/> * <element name="MatchType" type="{https://bingads.microsoft.com/CampaignManagement/v11}MatchType"/> * <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NegativeKeyword", propOrder = { "id", "matchType", "text" }) public class NegativeKeyword extends SharedListItem { @XmlElement(name = "Id", required = true, type = Long.class, nillable = true) protected Long id; @XmlElement(name = "MatchType", required = true) @XmlSchemaType(name = "string") protected MatchType matchType; @XmlElement(name = "Text", required = true, nillable = true) protected String text; /** * Gets the value of the id property. * * @return * possible object is * {@link Long } * */ public Long getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link Long } * */ public void setId(Long value) { this.id = value; } /** * Gets the value of the matchType property. * * @return * possible object is * {@link MatchType } * */ public MatchType getMatchType() { return matchType; } /** * Sets the value of the matchType property. * * @param value * allowed object is * {@link MatchType } * */ public void setMatchType(MatchType value) { this.matchType = value; } /** * Gets the value of the text property. * * @return * possible object is * {@link String } * */ public String getText() { return text; } /** * Sets the value of the text property. * * @param value * allowed object is * {@link String } * */ public void setText(String value) { this.text = value; } }