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