Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListIntegrationsResponse

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



7425
7426
7427
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7425

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

Instance Attribute Details

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

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



7418
7419
7420
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7418

def integrations
  @integrations
end

#next_page_tokenString

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

Returns:

  • (String)


7423
7424
7425
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7423

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7430
7431
7432
7433
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7430

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