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