class Google::Apis::DocumentaiV1::GoogleCloudLocationListLocationsResponse

The response message for Locations.ListLocations.

Attributes

locations[RW]

A list of locations that matches the specified filter in the request. Corresponds to the JSON property `locations` @return [Array<Google::Apis::DocumentaiV1::GoogleCloudLocationLocation>]

next_page_token[RW]

The standard List next-page token. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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