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