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