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