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