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