DBTEAMLOGAccountStateSerializer
Objective-C
@interface DBTEAMLOGAccountStateSerializer : NSObject
Swift
class DBTEAMLOGAccountStateSerializer : NSObject
The serialization class for the DBTEAMLOGAccountState union.
-
Serializes
DBTEAMLOGAccountStateinstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMLOGAccountState *)instance;Swift
class func serialize(_ instance: DBTEAMLOGAccountState) -> [String : Any]?Parameters
instanceAn instance of the
DBTEAMLOGAccountStateAPI object.Return Value
A json-compatible dictionary representation of the
DBTEAMLOGAccountStateAPI object. -
Deserializes
DBTEAMLOGAccountStateinstances.Declaration
Objective-C
+ (nonnull DBTEAMLOGAccountState *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMLOGAccountStateParameters
dictA json-compatible dictionary representation of the
DBTEAMLOGAccountStateAPI object.Return Value
An instantiation of the
DBTEAMLOGAccountStateobject.
View on GitHub
DBTEAMLOGAccountStateSerializer Class Reference