Class: Google::Apis::ChecksV1alpha::GoogleChecksAccountV1alphaListAppsResponse

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

Overview

The response message for AccountService.ListApps.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChecksAccountV1alphaListAppsResponse

Returns a new instance of GoogleChecksAccountV1alphaListAppsResponse.



94
95
96
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 94

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

Instance Attribute Details

#appsArray<Google::Apis::ChecksV1alpha::GoogleChecksAccountV1alphaApp>

The apps. Corresponds to the JSON property apps



86
87
88
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 86

def apps
  @apps
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)


92
93
94
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 92

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



99
100
101
102
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 99

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