Class: Google::Apis::FitnessV1::ListSessionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::FitnessV1::ListSessionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/fitness_v1/classes.rb,
generated/google/apis/fitness_v1/representations.rb,
generated/google/apis/fitness_v1/representations.rb more...
Instance Attribute Summary collapse
-
#deleted_session ⇒ Array<Google::Apis::FitnessV1::Session>
If includeDeleted is set to true in the request, this list will contain sessions deleted with original end times that are within the startTime and endTime frame.
-
#has_more_data ⇒ Boolean
(also: #has_more_data?)
Flag to indicate server has more data to transfer Corresponds to the JSON property
hasMoreData
. -
#next_page_token ⇒ String
The continuation token, which is used to page through large result sets.
-
#session ⇒ Array<Google::Apis::FitnessV1::Session>
Sessions with an end time that is between startTime and endTime of the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListSessionsResponse
constructor
A new instance of ListSessionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListSessionsResponse
Returns a new instance of ListSessionsResponse
806 807 808 |
# File 'generated/google/apis/fitness_v1/classes.rb', line 806 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deleted_session ⇒ Array<Google::Apis::FitnessV1::Session>
If includeDeleted is set to true in the request, this list will contain
sessions deleted with original end times that are within the startTime and
endTime frame.
Corresponds to the JSON property deletedSession
787 788 789 |
# File 'generated/google/apis/fitness_v1/classes.rb', line 787 def deleted_session @deleted_session end |
#has_more_data ⇒ Boolean Also known as: has_more_data?
Flag to indicate server has more data to transfer
Corresponds to the JSON property hasMoreData
792 793 794 |
# File 'generated/google/apis/fitness_v1/classes.rb', line 792 def has_more_data @has_more_data end |
#next_page_token ⇒ String
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
799 800 801 |
# File 'generated/google/apis/fitness_v1/classes.rb', line 799 def next_page_token @next_page_token end |
#session ⇒ Array<Google::Apis::FitnessV1::Session>
Sessions with an end time that is between startTime and endTime of the request.
Corresponds to the JSON property session
804 805 806 |
# File 'generated/google/apis/fitness_v1/classes.rb', line 804 def session @session end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
811 812 813 814 815 816 |
# File 'generated/google/apis/fitness_v1/classes.rb', line 811 def update!(**args) @deleted_session = args[:deleted_session] if args.key?(:deleted_session) @has_more_data = args[:has_more_data] if args.key?(:has_more_data) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @session = args[:session] if args.key?(:session) end |