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