Class: Google::Apis::CloudsupportV2beta::SearchCasesResponse

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 SearchCases endpoint.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchCasesResponse

Returns a new instance of SearchCasesResponse.



1068
1069
1070
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 1068

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

Instance Attribute Details

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

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



1059
1060
1061
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 1059

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

Returns:

  • (String)


1066
1067
1068
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 1066

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1073
1074
1075
1076
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 1073

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