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