// Generated by xsd compiler for android/java // DO NOT CHANGE! package com.ebay.marketplace.search.v1.services; import com.leansoft.nano.annotation.*; import java.util.List; /** * * Container for details pertaining to individual aspect values, including their * histogram information (item counts). * */ public class AspectValueHistogram { @Element private long count; private List<Object> any; @Attribute private String valueName; /** * public getter * * * Number of items that share the characteristic the respective aspect * value. * * * @returns .long */ public long getCount() { return this.count; } /** * public setter * * * Number of items that share the characteristic the respective aspect * value. * * * @param .long */ public void setCount(long count) { this.count = count; } /** * public getter * * @returns java.util.List<java.lang.Object> */ public List<Object> getAny() { return this.any; } /** * public setter * * @param java.util.List<java.lang.Object> */ public void setAny(List<Object> any) { this.any = any; } /** * public getter * * @returns java.lang.String */ public String getValueName() { return this.valueName; } /** * public setter * * @param java.lang.String */ public void setValueName(String valueName) { this.valueName = valueName; } }