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