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