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