Class: Google::Apis::ConnectorsV1::ListActionsResponse

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

Overview

Response message for ListActions API

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListActionsResponse

Returns a new instance of ListActionsResponse.



3425
3426
3427
# File 'lib/google/apis/connectors_v1/classes.rb', line 3425

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

Instance Attribute Details

#actionsArray<Google::Apis::ConnectorsV1::RuntimeActionSchema>

list of actions Corresponds to the JSON property actions



3418
3419
3420
# File 'lib/google/apis/connectors_v1/classes.rb', line 3418

def actions
  @actions
end

#next_page_tokenString

token for next page Corresponds to the JSON property nextPageToken

Returns:

  • (String)


3423
3424
3425
# File 'lib/google/apis/connectors_v1/classes.rb', line 3423

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3430
3431
3432
3433
# File 'lib/google/apis/connectors_v1/classes.rb', line 3430

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