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