UserWise Unity SDK
3.0.0
|
The IDictSerializable
interface defines how a class can:
More...
Public Member Functions | |
Dictionary< string, object > | Serialize () |
Serialize instance into a generic Dictionary{string, object} . More... | |
T | Deserialize (Dictionary< string, object > data) |
Deserialize generic Dictionary{string, object} into an instance of T . More... | |
The IDictSerializable
interface defines how a class can:
T
, from a dictionary.T
.This interface is implemented by all data classes.
T | The implementing class (e.g. class Offer : IDictSerializable<Offer>) |
T UserWiseSDK.IDictSerializable< T >.Deserialize | ( | Dictionary< string, object > | data | ) |
Deserialize generic Dictionary{string, object}
into an instance of T
.
Dictionary<string, object> UserWiseSDK.IDictSerializable< T >.Serialize | ( | ) |
Serialize instance into a generic Dictionary{string, object}
.