Class: Google::Apis::DataformV1beta1::QueryCompilationResultActionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataformV1beta1::QueryCompilationResultActionsResponse
- 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
-
#compilation_result_actions ⇒ Array<Google::Apis::DataformV1beta1::CompilationResultAction>
List of compilation result actions.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ QueryCompilationResultActionsResponse
constructor
A new instance of QueryCompilationResultActionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ QueryCompilationResultActionsResponse
Returns a new instance of QueryCompilationResultActionsResponse.
1560 1561 1562 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1560 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compilation_result_actions ⇒ Array<Google::Apis::DataformV1beta1::CompilationResultAction>
List of compilation result actions.
Corresponds to the JSON property compilationResultActions
1552 1553 1554 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1552 def compilation_result_actions @compilation_result_actions end |
#next_page_token ⇒ String
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
1558 1559 1560 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1558 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1565 1566 1567 1568 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1565 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 |