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