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