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