Package com.confidentify.client.model
Class DatasetStats
- java.lang.Object
-
- com.confidentify.client.model.DatasetStats
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2020-06-18T21:51:17.428661900+02:00[Europe/Paris]") public class DatasetStats extends Object
DatasetStats
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_DOCUMENTS_PROCESSEDstatic StringSERIALIZED_NAME_DOCUMENTS_RECEIVEDstatic StringSERIALIZED_NAME_FILES_PROCESSEDstatic StringSERIALIZED_NAME_FILES_RECEIVEDstatic StringSERIALIZED_NAME_RECORDS_INDEXEDstatic StringSERIALIZED_NAME_RECORDS_INSERTEDstatic StringSERIALIZED_NAME_RECORDS_PER_SOURCE
-
Constructor Summary
Constructors Constructor Description DatasetStats()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DatasetStatsdocumentsProcessed(Integer documentsProcessed)DatasetStatsdocumentsReceived(Integer documentsReceived)booleanequals(Object o)DatasetStatsfilesProcessed(Integer filesProcessed)DatasetStatsfilesReceived(Integer filesReceived)IntegergetDocumentsProcessed()The amount of documents that has been fully processed.IntegergetDocumentsReceived()The amount of documents that have been received for which processing has started.IntegergetFilesProcessed()The amount of files uploaded that has been fully processed.IntegergetFilesReceived()The amount of files uploaded and received for which processing has started.IntegergetRecordsIndexed()The amount of records that have been indexed for matching.IntegergetRecordsInserted()The amount of records that have been inserted into the dataset.Map<String,Integer>getRecordsPerSource()Get recordsPerSourceinthashCode()DatasetStatsputRecordsPerSourceItem(String key, Integer recordsPerSourceItem)DatasetStatsrecordsIndexed(Integer recordsIndexed)DatasetStatsrecordsInserted(Integer recordsInserted)DatasetStatsrecordsPerSource(Map<String,Integer> recordsPerSource)voidsetDocumentsProcessed(Integer documentsProcessed)voidsetDocumentsReceived(Integer documentsReceived)voidsetFilesProcessed(Integer filesProcessed)voidsetFilesReceived(Integer filesReceived)voidsetRecordsIndexed(Integer recordsIndexed)voidsetRecordsInserted(Integer recordsInserted)voidsetRecordsPerSource(Map<String,Integer> recordsPerSource)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_FILES_RECEIVED
public static final String SERIALIZED_NAME_FILES_RECEIVED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_FILES_PROCESSED
public static final String SERIALIZED_NAME_FILES_PROCESSED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_DOCUMENTS_RECEIVED
public static final String SERIALIZED_NAME_DOCUMENTS_RECEIVED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_DOCUMENTS_PROCESSED
public static final String SERIALIZED_NAME_DOCUMENTS_PROCESSED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_RECORDS_INSERTED
public static final String SERIALIZED_NAME_RECORDS_INSERTED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_RECORDS_INDEXED
public static final String SERIALIZED_NAME_RECORDS_INDEXED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_RECORDS_PER_SOURCE
public static final String SERIALIZED_NAME_RECORDS_PER_SOURCE
- See Also:
- Constant Field Values
-
-
Method Detail
-
filesReceived
public DatasetStats filesReceived(Integer filesReceived)
-
getFilesReceived
@Nullable public Integer getFilesReceived()
The amount of files uploaded and received for which processing has started.- Returns:
- filesReceived
-
setFilesReceived
public void setFilesReceived(Integer filesReceived)
-
filesProcessed
public DatasetStats filesProcessed(Integer filesProcessed)
-
getFilesProcessed
@Nullable public Integer getFilesProcessed()
The amount of files uploaded that has been fully processed. Note that there may be a delay between submitting files and having them processed. If this number is less than `files_received`, it means that files are currently queued for processing.- Returns:
- filesProcessed
-
setFilesProcessed
public void setFilesProcessed(Integer filesProcessed)
-
documentsReceived
public DatasetStats documentsReceived(Integer documentsReceived)
-
getDocumentsReceived
@Nullable public Integer getDocumentsReceived()
The amount of documents that have been received for which processing has started.- Returns:
- documentsReceived
-
setDocumentsReceived
public void setDocumentsReceived(Integer documentsReceived)
-
documentsProcessed
public DatasetStats documentsProcessed(Integer documentsProcessed)
-
getDocumentsProcessed
@Nullable public Integer getDocumentsProcessed()
The amount of documents that has been fully processed. Note that there may be a delay between submitting documents and having them processed. If this number is less than `documents_received`, it means that documents are currently queued for processing.- Returns:
- documentsProcessed
-
setDocumentsProcessed
public void setDocumentsProcessed(Integer documentsProcessed)
-
recordsInserted
public DatasetStats recordsInserted(Integer recordsInserted)
-
getRecordsInserted
@Nullable public Integer getRecordsInserted()
The amount of records that have been inserted into the dataset.- Returns:
- recordsInserted
-
setRecordsInserted
public void setRecordsInserted(Integer recordsInserted)
-
recordsIndexed
public DatasetStats recordsIndexed(Integer recordsIndexed)
-
getRecordsIndexed
@Nullable public Integer getRecordsIndexed()
The amount of records that have been indexed for matching. Note that there may be a delay between submitting records and having them indexed. If this number is less than `records_inserted`, it means that records are currently queued for indexing.- Returns:
- recordsIndexed
-
setRecordsIndexed
public void setRecordsIndexed(Integer recordsIndexed)
-
recordsPerSource
public DatasetStats recordsPerSource(Map<String,Integer> recordsPerSource)
-
putRecordsPerSourceItem
public DatasetStats putRecordsPerSourceItem(String key, Integer recordsPerSourceItem)
-
getRecordsPerSource
@Nullable public Map<String,Integer> getRecordsPerSource()
Get recordsPerSource- Returns:
- recordsPerSource
-
-