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