DBFILESFolderMetadataSerializer
Objective-C
@interface DBFILESFolderMetadataSerializer : NSObject
Swift
class DBFILESFolderMetadataSerializer : NSObject
The serialization class for the FolderMetadata struct.
-
Serializes
DBFILESFolderMetadatainstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBFILESFolderMetadata *)instance;Swift
class func serialize(_ instance: DBFILESFolderMetadata) -> [String : Any]?Parameters
instanceAn instance of the
DBFILESFolderMetadataAPI object.Return Value
A json-compatible dictionary representation of the
DBFILESFolderMetadataAPI object. -
Deserializes
DBFILESFolderMetadatainstances.Declaration
Objective-C
+ (nonnull DBFILESFolderMetadata *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBFILESFolderMetadataParameters
dictA json-compatible dictionary representation of the
DBFILESFolderMetadataAPI object.Return Value
An instantiation of the
DBFILESFolderMetadataobject.
View on GitHub
DBFILESFolderMetadataSerializer Class Reference