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.



760
761
762
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 760

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

Instance Attribute Details

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

The list of cases associated with the cloud resource, after any filters have been applied. Corresponds to the JSON property cases



751
752
753
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 751

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 subsequent ListCasesRequest message that is issued. If unspecified, there are no more results to retrieve. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


758
759
760
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 758

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



765
766
767
768
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 765

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