Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ListEvaluationsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/documentai_v1beta3/classes.rb,
lib/google/apis/documentai_v1beta3/representations.rb,
lib/google/apis/documentai_v1beta3/representations.rb

Overview

The response from ListEvaluations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3ListEvaluationsResponse

Returns a new instance of GoogleCloudDocumentaiV1beta3ListEvaluationsResponse.



11433
11434
11435
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 11433

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

Instance Attribute Details

#evaluationsArray<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3Evaluation>

The evaluations requested. Corresponds to the JSON property evaluations



11425
11426
11427
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 11425

def evaluations
  @evaluations
end

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


11431
11432
11433
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 11431

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11438
11439
11440
11441
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 11438

def update!(**args)
  @evaluations = args[:evaluations] if args.key?(:evaluations)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end