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