Class: Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1ListFeedbackReportsResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1ListFeedbackReportsResponse
- 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 ListFeedbackReports.
Instance Attribute Summary collapse
-
#feedback_reports ⇒ Array<Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1FeedbackReport>
The feedback reports Corresponds to the JSON property
feedbackReports. -
#next_page_token ⇒ String
A short-lived token, which can be sent as
pageTokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1ListFeedbackReportsResponse
constructor
A new instance of GoogleFirebaseAppdistroV1ListFeedbackReportsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1ListFeedbackReportsResponse
Returns a new instance of GoogleFirebaseAppdistroV1ListFeedbackReportsResponse.
1069 1070 1071 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 1069 def initialize(**args) update!(**args) end |
Instance Attribute Details
#feedback_reports ⇒ Array<Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1FeedbackReport>
The feedback reports
Corresponds to the JSON property feedbackReports
1061 1062 1063 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 1061 def feedback_reports @feedback_reports 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
1067 1068 1069 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 1067 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1074 1075 1076 1077 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 1074 def update!(**args) @feedback_reports = args[:feedback_reports] if args.key?(:feedback_reports) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |