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