Package org.openapitools.client.model
Class FilterDto
- java.lang.Object
-
- org.openapitools.client.model.FilterDto
-
public class FilterDto extends Object
FilterDto
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_IDstatic StringSERIALIZED_NAME_ITEM_COUNTstatic StringSERIALIZED_NAME_NAMEstatic StringSERIALIZED_NAME_OWNERstatic StringSERIALIZED_NAME_PROPERTIESstatic StringSERIALIZED_NAME_QUERYstatic StringSERIALIZED_NAME_RESOURCE_TYPE
-
Constructor Summary
Constructors Constructor Description FilterDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetId()The id of the filter.LonggetItemCount()The number of items matched by the filter itself.StringgetName()The name of the filter.StringgetOwner()The user id of the owner of the filter.ObjectgetProperties()The properties of a filter as a JSON object.ObjectgetQuery()The query of the filter as a JSON object.StringgetResourceType()The resource type of the filter.inthashCode()FilterDtoid(String id)FilterDtoitemCount(Long itemCount)FilterDtoname(String name)FilterDtoowner(String owner)FilterDtoproperties(Object properties)FilterDtoquery(Object query)FilterDtoresourceType(String resourceType)voidsetId(String id)voidsetItemCount(Long itemCount)voidsetName(String name)voidsetOwner(String owner)voidsetProperties(Object properties)voidsetQuery(Object query)voidsetResourceType(String resourceType)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_ID
public static final String SERIALIZED_NAME_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_RESOURCE_TYPE
public static final String SERIALIZED_NAME_RESOURCE_TYPE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_NAME
public static final String SERIALIZED_NAME_NAME
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_OWNER
public static final String SERIALIZED_NAME_OWNER
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_QUERY
public static final String SERIALIZED_NAME_QUERY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PROPERTIES
public static final String SERIALIZED_NAME_PROPERTIES
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ITEM_COUNT
public static final String SERIALIZED_NAME_ITEM_COUNT
- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
public String getId()
The id of the filter.- Returns:
- id
-
setId
public void setId(String id)
-
getResourceType
public String getResourceType()
The resource type of the filter.- Returns:
- resourceType
-
setResourceType
public void setResourceType(String resourceType)
-
getName
public String getName()
The name of the filter.- Returns:
- name
-
setName
public void setName(String name)
-
getOwner
public String getOwner()
The user id of the owner of the filter.- Returns:
- owner
-
setOwner
public void setOwner(String owner)
-
getQuery
public Object getQuery()
The query of the filter as a JSON object.- Returns:
- query
-
setQuery
public void setQuery(Object query)
-
getProperties
public Object getProperties()
The properties of a filter as a JSON object.- Returns:
- properties
-
setProperties
public void setProperties(Object properties)
-
getItemCount
public Long getItemCount()
The number of items matched by the filter itself. Note: Only exists if the query parameter `itemCount` was set to `true`- Returns:
- itemCount
-
setItemCount
public void setItemCount(Long itemCount)
-
-