Class: Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1ListGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1ListGroupsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseappdistribution_v1/classes.rb,
lib/google/apis/firebaseappdistribution_v1/representations.rb,
lib/google/apis/firebaseappdistribution_v1/representations.rb
Overview
The response message for ListGroups.
Instance Attribute Summary collapse
-
#groups ⇒ Array<Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1Group>
The groups listed.
-
#next_page_token ⇒ String
A short-lived token, which can be sent as
pageTokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1ListGroupsResponse
constructor
A new instance of GoogleFirebaseAppdistroV1ListGroupsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1ListGroupsResponse
Returns a new instance of GoogleFirebaseAppdistroV1ListGroupsResponse.
1088 1089 1090 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 1088 def initialize(**args) update!(**args) end |
Instance Attribute Details
#groups ⇒ Array<Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1Group>
The groups listed.
Corresponds to the JSON property groups
1080 1081 1082 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 1080 def groups @groups end |
#next_page_token ⇒ String
A short-lived token, which can be sent as pageToken to retrieve the next
page. If this field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
1086 1087 1088 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 1086 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1093 1094 1095 1096 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 1093 def update!(**args) @groups = args[:groups] if args.key?(:groups) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |