Class: Google::Apis::CloudsupportV2beta::ListCasesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudsupportV2beta::ListCasesResponse
- 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
-
#cases ⇒ Array<Google::Apis::CloudsupportV2beta::Case>
The list of cases associated with the parent after any filters have been applied.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCasesResponse
constructor
A new instance of ListCasesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCasesResponse
Returns a new instance of ListCasesResponse.
931 932 933 |
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 931 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cases ⇒ Array<Google::Apis::CloudsupportV2beta::Case>
The list of cases associated with the parent after any filters have been
applied.
Corresponds to the JSON property cases
922 923 924 |
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 922 def cases @cases end |
#next_page_token ⇒ String
A token to retrieve the next page of results. Set this in the page_token
field of subsequent cases.list
requests. If unspecified, there are no more
results to retrieve.
Corresponds to the JSON property nextPageToken
929 930 931 |
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 929 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
936 937 938 939 |
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 936 def update!(**args) @cases = args[:cases] if args.key?(:cases) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |