Package com.confidentify.client.model
Class DatasetRecordBase
- java.lang.Object
-
- com.confidentify.client.model.DatasetRecordBase
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2020-06-18T21:51:17.428661900+02:00[Europe/Paris]") public class DatasetRecordBase extends Object
DatasetRecordBase
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_ENTITYstatic StringSERIALIZED_NAME_IDstatic StringSERIALIZED_NAME_RECORD_SOURCE
-
Constructor Summary
Constructors Constructor Description DatasetRecordBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DatasetRecordBaseentity(Object entity)booleanequals(Object o)ObjectgetEntity()The record's data with keys matching the properties defined in the dataset's `schema`StringgetId()A unique ID for the recordStringgetRecordSource()A string which identifies the source of the record.inthashCode()DatasetRecordBaseid(String id)DatasetRecordBaserecordSource(String recordSource)voidsetEntity(Object entity)voidsetId(String id)voidsetRecordSource(String recordSource)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_ID
public static final String SERIALIZED_NAME_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ENTITY
public static final String SERIALIZED_NAME_ENTITY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_RECORD_SOURCE
public static final String SERIALIZED_NAME_RECORD_SOURCE
- See Also:
- Constant Field Values
-
-
Method Detail
-
id
public DatasetRecordBase id(String id)
-
setId
public void setId(String id)
-
entity
public DatasetRecordBase entity(Object entity)
-
getEntity
@Nullable public Object getEntity()
The record's data with keys matching the properties defined in the dataset's `schema`- Returns:
- entity
-
setEntity
public void setEntity(Object entity)
-
recordSource
public DatasetRecordBase recordSource(String recordSource)
-
getRecordSource
@Nullable public String getRecordSource()
A string which identifies the source of the record.- Returns:
- recordSource
-
setRecordSource
public void setRecordSource(String recordSource)
-
-