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