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