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