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