package com.newrelic.apm.enterprise.bmc; import javax.xml.bind.annotation.*; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="filterName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="context" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "filterName", "context" }) @XmlRootElement(name = "Unsubscribe") public class Unsubscribe { @XmlElement(required = true, nillable = true) protected String filterName; @XmlElement(required = true, nillable = true) protected String context; /** * Gets the value of the filterName property. * * @return * possible object is * {@link String } * */ public String getFilterName() { return filterName; } /** * Sets the value of the filterName property. * * @param value * allowed object is * {@link String } * */ public void setFilterName(String value) { this.filterName = value; } /** * Gets the value of the context property. * * @return * possible object is * {@link String } * */ public String getContext() { return context; } /** * Sets the value of the context property. * * @param value * allowed object is * {@link String } * */ public void setContext(String value) { this.context = value; } }