Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListIntegrationsResponse

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

Overview

Response for ListIntegrations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListIntegrationsResponse

Returns a new instance of GoogleCloudIntegrationsV1alphaListIntegrationsResponse.



7682
7683
7684
# File 'lib/google/apis/integrations_v1/classes.rb', line 7682

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

Instance Attribute Details

#integrationsArray<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegration>

The integrations which match the request. Corresponds to the JSON property integrations



7675
7676
7677
# File 'lib/google/apis/integrations_v1/classes.rb', line 7675

def integrations
  @integrations
end

#next_page_tokenString

The next page token for the response. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


7680
7681
7682
# File 'lib/google/apis/integrations_v1/classes.rb', line 7680

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7687
7688
7689
7690
# File 'lib/google/apis/integrations_v1/classes.rb', line 7687

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