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