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