//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert
// Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2016.04.19 um 09:36:45 AM CEST
//
package de.immobilienscout24.rest.schema.common._1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Enthlt die Statistik (d.h. Anzahl der Objekte) fr einen
* Immobilientyp.
*
*
* <p>Java-Klasse fr GeoHierarchyStatistic complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType name="GeoHierarchyStatistic">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="realEstateType" use="required" type="{http://rest.immobilienscout24.de/schema/common/1.0}RealEstateType" />
* <attribute name="count" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GeoHierarchyStatistic")
public class GeoHierarchyStatistic {
@XmlAttribute(name = "realEstateType", required = true)
protected RealEstateType realEstateType;
@XmlAttribute(name = "count", required = true)
protected int count;
/**
* Ruft den Wert der realEstateType-Eigenschaft ab.
*
* @return
* possible object is
* {@link RealEstateType }
*
*/
public RealEstateType getRealEstateType() {
return realEstateType;
}
/**
* Legt den Wert der realEstateType-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link RealEstateType }
*
*/
public void setRealEstateType(RealEstateType value) {
this.realEstateType = value;
}
/**
* Ruft den Wert der count-Eigenschaft ab.
*
*/
public int getCount() {
return count;
}
/**
* Legt den Wert der count-Eigenschaft fest.
*
*/
public void setCount(int value) {
this.count = value;
}
}