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