class Google::Apis::FitnessV1::ListDataPointChangesResponse
Attributes
data_source_id[RW]
The data stream ID of the data source with data point changes. Corresponds to the JSON property `dataSourceId` @return [String]
deleted_data_point[RW]
Deleted data points for the user. Note, for modifications this should be parsed before handling insertions. Corresponds to the JSON property `deletedDataPoint` @return [Array<Google::Apis::FitnessV1::DataPoint>]
inserted_data_point[RW]
Inserted data points for the user. Corresponds to the JSON property `insertedDataPoint` @return [Array<Google::Apis::FitnessV1::DataPoint>]
next_page_token[RW]
The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/fitness_v1/classes.rb, line 745 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/fitness_v1/classes.rb, line 750 def update!(**args) @data_source_id = args[:data_source_id] if args.key?(:data_source_id) @deleted_data_point = args[:deleted_data_point] if args.key?(:deleted_data_point) @inserted_data_point = args[:inserted_data_point] if args.key?(:inserted_data_point) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end