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