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