Class: Google::Apis::CloudsupportV2beta::ListCasesResponse

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

Overview

The response message for the ListCases endpoint.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCasesResponse

Returns a new instance of ListCasesResponse.



779
780
781
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 779

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

Instance Attribute Details

#casesArray<Google::Apis::CloudsupportV2beta::Case>

The list of cases associated with the Google Cloud Resource, after any filters have been applied. Corresponds to the JSON property cases



770
771
772
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 770

def cases
  @cases
end

#next_page_tokenString

A token to retrieve the next page of results. This should be set in the page_token field of the subsequent ListCasesRequest message that is issued. If unspecified, there are no more results to retrieve. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


777
778
779
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 777

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



784
785
786
787
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 784

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