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

com.bronto.api.model.ReadActivities Maven / Gradle / Ivy


package com.bronto.api.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for readActivities complex type. * *

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

 * <complexType name="readActivities">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="filter" type="{http://api.bronto.com/v4}activityFilter" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "readActivities", propOrder = { "filter" }) public class ReadActivities { protected ActivityFilter filter; /** * Gets the value of the filter property. * * @return * possible object is * {@link ActivityFilter } * */ public ActivityFilter getFilter() { return filter; } /** * Sets the value of the filter property. * * @param value * allowed object is * {@link ActivityFilter } * */ public void setFilter(ActivityFilter value) { this.filter = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy