Class: Google::Apis::CloudsupportV2::SearchCasesResponse

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



1125
1126
1127
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 1125

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

Instance Attribute Details

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

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



1116
1117
1118
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 1116

def cases
  @cases
end

#next_page_tokenString

A token to retrieve the next page of results. Set this in the page_token field of subsequent cases.search requests. If unspecified, there are no more results to retrieve. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1123
1124
1125
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 1123

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1130
1131
1132
1133
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 1130

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