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.



1691
1692
1693
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1691

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



1683
1684
1685
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1683

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)


1689
1690
1691
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1689

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1696
1697
1698
1699
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1696

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