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