Class: Google::Apis::DataformV1beta1::QueryCompilationResultActionsResponse

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

Overview

QueryCompilationResultActions response message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ QueryCompilationResultActionsResponse

Returns a new instance of QueryCompilationResultActionsResponse.



2018
2019
2020
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 2018

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

Instance Attribute Details

#compilation_result_actionsArray<Google::Apis::DataformV1beta1::CompilationResultAction>

List of compilation result actions. Corresponds to the JSON property compilationResultActions



2010
2011
2012
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 2010

def compilation_result_actions
  @compilation_result_actions
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)


2016
2017
2018
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 2016

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2023
2024
2025
2026
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 2023

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