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