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