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