Class: Google::Apis::FitnessV1::ListSessionsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListSessionsResponse

Returns a new instance of ListSessionsResponse.

[View source]

805
806
807
# File 'generated/google/apis/fitness_v1/classes.rb', line 805

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#deleted_sessionArray<Google::Apis::FitnessV1::Session>

If includeDeleted is set to true in the request, and startTime and endTime are omitted, this will include sessions which were deleted since the last sync. Corresponds to the JSON property deletedSession


785
786
787
# File 'generated/google/apis/fitness_v1/classes.rb', line 785

def deleted_session
  @deleted_session
end

#has_more_dataBoolean Also known as: has_more_data?

Flag to indicate server has more data to transfer. DO NOT USE THIS FIELD. It is never populated in responses from the server. Corresponds to the JSON property hasMoreData

Returns:

  • (Boolean)

791
792
793
# File 'generated/google/apis/fitness_v1/classes.rb', line 791

def has_more_data
  @has_more_data
end

#next_page_tokenString

The sync token which is used to sync further changes. This will only be provided if both startTime and endTime are omitted from the request. Corresponds to the JSON property nextPageToken

Returns:

  • (String)

798
799
800
# File 'generated/google/apis/fitness_v1/classes.rb', line 798

def next_page_token
  @next_page_token
end

#sessionArray<Google::Apis::FitnessV1::Session>

Sessions with an end time that is between startTime and endTime of the request. Corresponds to the JSON property session


803
804
805
# File 'generated/google/apis/fitness_v1/classes.rb', line 803

def session
  @session
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

810
811
812
813
814
815
# File 'generated/google/apis/fitness_v1/classes.rb', line 810

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