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