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