DBTEAMGroupUpdateArgsSerializer
Objective-C
@interface DBTEAMGroupUpdateArgsSerializer : NSObject
Swift
class DBTEAMGroupUpdateArgsSerializer : NSObject
The serialization class for the GroupUpdateArgs struct.
-
Serializes
DBTEAMGroupUpdateArgsinstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMGroupUpdateArgs *)instance;Swift
class func serialize(_ instance: DBTEAMGroupUpdateArgs) -> [String : Any]?Parameters
instanceAn instance of the
DBTEAMGroupUpdateArgsAPI object.Return Value
A json-compatible dictionary representation of the
DBTEAMGroupUpdateArgsAPI object. -
Deserializes
DBTEAMGroupUpdateArgsinstances.Declaration
Objective-C
+ (nonnull DBTEAMGroupUpdateArgs *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMGroupUpdateArgsParameters
dictA json-compatible dictionary representation of the
DBTEAMGroupUpdateArgsAPI object.Return Value
An instantiation of the
DBTEAMGroupUpdateArgsobject.
View on GitHub
DBTEAMGroupUpdateArgsSerializer Class Reference