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