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