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