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