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