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