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