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.



1792
1793
1794
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1792

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



1784
1785
1786
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1784

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)


1790
1791
1792
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1790

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1797
1798
1799
1800
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1797

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