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