class Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2ListFieldsResponse
The response for FirestoreAdmin.ListFields.
Attributes
fields[RW]
The requested fields. Corresponds to the JSON property `fields` @return [Array<Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2Field>]
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 574 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 579 def update!(**args) @fields = args[:fields] if args.key?(:fields) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end