Package com.mindee.v2.parsing.search
Class SearchModel
- java.lang.Object
-
- com.mindee.v2.parsing.search.SearchModel
-
public class SearchModel extends Object
Models search response.
-
-
Constructor Summary
Constructors Constructor Description SearchModel()SearchModel(String id, String name, String modelType, List<ModelWebhook> webhooks)Creates a newSearchModelinstance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)StringgetId()ID of the model.StringgetModelType()Type of the model.StringgetName()Name of the model.List<ModelWebhook>getWebhooks()Webhooks associated with the model.inthashCode()StringtoString()
-
-
-
Constructor Detail
-
SearchModel
public SearchModel(String id, String name, String modelType, List<ModelWebhook> webhooks)
Creates a newSearchModelinstance.- Parameters:
id- ID of the model.name- Name of the model.modelType- Type of the model.webhooks- Webhooks associated with the model.
-
SearchModel
public SearchModel()
-
-
Method Detail
-
getId
public String getId()
ID of the model.
-
getName
public String getName()
Name of the model.
-
getModelType
public String getModelType()
Type of the model.
-
getWebhooks
public List<ModelWebhook> getWebhooks()
Webhooks associated with the model.
-
canEqual
protected boolean canEqual(Object other)
-
-