Class: Google::Apis::HealthV4::BatchDeleteDataPointsRequest
- Inherits:
-
Object
- Object
- Google::Apis::HealthV4::BatchDeleteDataPointsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/health_v4/classes.rb,
lib/google/apis/health_v4/representations.rb,
lib/google/apis/health_v4/representations.rb
Overview
Request to delete a batch of identifiable data points.
Instance Attribute Summary collapse
-
#names ⇒ Array<String>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BatchDeleteDataPointsRequest
constructor
A new instance of BatchDeleteDataPointsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BatchDeleteDataPointsRequest
Returns a new instance of BatchDeleteDataPointsRequest.
380 381 382 |
# File 'lib/google/apis/health_v4/classes.rb', line 380 def initialize(**args) update!(**args) end |
Instance Attribute Details
#names ⇒ Array<String>
Required. The names of the DataPoints to delete. A maximum of 10000 data
points can be deleted in a single request.
Corresponds to the JSON property names
378 379 380 |
# File 'lib/google/apis/health_v4/classes.rb', line 378 def names @names end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
385 386 387 |
# File 'lib/google/apis/health_v4/classes.rb', line 385 def update!(**args) @names = args[:names] if args.key?(:names) end |