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