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