class Google::Apis::FirestoreV1::GoogleFirestoreAdminV1ListFieldsResponse

The response for FirestoreAdmin.ListFields.

Attributes

fields[RW]

The requested fields. Corresponds to the JSON property `fields` @return [Array<Google::Apis::FirestoreV1::GoogleFirestoreAdminV1Field>]

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_v1/classes.rb, line 1310
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_v1/classes.rb, line 1315
def update!(**args)
  @fields = args[:fields] if args.key?(:fields)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end