DBTEAMLOGFedHandshakeActionSerializer
Objective-C
@interface DBTEAMLOGFedHandshakeActionSerializer : NSObject
Swift
class DBTEAMLOGFedHandshakeActionSerializer : NSObject
The serialization class for the DBTEAMLOGFedHandshakeAction
union.
-
Serializes
DBTEAMLOGFedHandshakeAction
instances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMLOGFedHandshakeAction *)instance;
Swift
class func serialize(_ instance: DBTEAMLOGFedHandshakeAction) -> [String : Any]?
Parameters
instance
An instance of the
DBTEAMLOGFedHandshakeAction
API object.Return Value
A json-compatible dictionary representation of the
DBTEAMLOGFedHandshakeAction
API object. -
Deserializes
DBTEAMLOGFedHandshakeAction
instances.Declaration
Objective-C
+ (nonnull DBTEAMLOGFedHandshakeAction *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;
Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMLOGFedHandshakeAction
Parameters
dict
A json-compatible dictionary representation of the
DBTEAMLOGFedHandshakeAction
API object.Return Value
An instantiation of the
DBTEAMLOGFedHandshakeAction
object.