DBTEAMFeaturesGetValuesBatchArg
Objective-C
@interface DBTEAMFeaturesGetValuesBatchArg
    : NSObject <DBSerializable, NSCopying>
                Swift
class DBTEAMFeaturesGetValuesBatchArg : NSObject, DBSerializable, NSCopying
                The FeaturesGetValuesBatchArg struct.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
- 
                  
                  
A list of features in Feature. If the list is empty, this route will return FeaturesGetValuesBatchError.
Declaration
Objective-C
@property (nonatomic, readonly) NSArray<DBTEAMFeature *> *_Nonnull features;Swift
var features: [DBTEAMFeature] { get } 
- 
                  
                  
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithFeatures: (nonnull NSArray<DBTEAMFeature *> *)features;Swift
init(features: [DBTEAMFeature])Parameters
featuresA list of features in Feature. If the list is empty, this route will return FeaturesGetValuesBatchError.
Return Value
An initialized instance.
 
View on GitHub
        DBTEAMFeaturesGetValuesBatchArg Class Reference