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