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