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