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