class Google::Apis::DriveV2::About::Feature

Attributes

feature_name[RW]

The name of the feature. Corresponds to the JSON property `featureName` @return [String]

feature_rate[RW]

The request limit rate for this feature, in queries per second. Corresponds to the JSON property `featureRate` @return [Float]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/drive_v2/classes.rb, line 339
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/drive_v2/classes.rb, line 344
def update!(**args)
  @feature_name = args[:feature_name] if args.key?(:feature_name)
  @feature_rate = args[:feature_rate] if args.key?(:feature_rate)
end