Class: Google::Apis::DataformV1::QueryCompilationResultActionsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataform_v1/classes.rb,
lib/google/apis/dataform_v1/representations.rb,
lib/google/apis/dataform_v1/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.



2797
2798
2799
# File 'lib/google/apis/dataform_v1/classes.rb', line 2797

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

Instance Attribute Details

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

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



2789
2790
2791
# File 'lib/google/apis/dataform_v1/classes.rb', line 2789

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)


2795
2796
2797
# File 'lib/google/apis/dataform_v1/classes.rb', line 2795

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2802
2803
2804
2805
# File 'lib/google/apis/dataform_v1/classes.rb', line 2802

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