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