class Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2ListIndexesResponse

The response for FirestoreAdmin.ListIndexes.

Attributes

indexes[RW]

The requested indexes. Corresponds to the JSON property `indexes` @return [Array<Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2Index>]

next_page_token[RW]

A page token that may be used to request another page of results. If blank, this is the last page. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firestore_v1beta2/classes.rb, line 605
def update!(**args)
  @indexes = args[:indexes] if args.key?(:indexes)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end