public class DescribeDatasetResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Modifier and Type | Field and Description |
---|---|
private Dataset |
dataset
Meta data for a collection of data for an identity.
|
Constructor and Description |
---|
DescribeDatasetResult() |
Modifier and Type | Method and Description |
---|---|
DescribeDatasetResult |
clone() |
boolean |
equals(java.lang.Object obj) |
Dataset |
getDataset()
Meta data for a collection of data for an identity.
|
int |
hashCode() |
void |
setDataset(Dataset dataset)
Meta data for a collection of data for an identity.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
DescribeDatasetResult |
withDataset(Dataset dataset)
Meta data for a collection of data for an identity.
|
private Dataset dataset
public void setDataset(Dataset dataset)
dataset
- Meta data for a collection of data for an identity. An identity
can have multiple datasets. A dataset can be general or associated
with a particular entity in an application (like a saved game).
Datasets are automatically created if they don't exist. Data is
synced by dataset, and a dataset can hold up to 1MB of key-value
pairs.public Dataset getDataset()
public DescribeDatasetResult withDataset(Dataset dataset)
dataset
- Meta data for a collection of data for an identity. An identity
can have multiple datasets. A dataset can be general or associated
with a particular entity in an application (like a saved game).
Datasets are automatically created if they don't exist. Data is
synced by dataset, and a dataset can hold up to 1MB of key-value
pairs.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public DescribeDatasetResult clone()
clone
in class java.lang.Object