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