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