Class: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1SearchErrorIssuesResponse
- Inherits:
-
Object
- Object
- Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1SearchErrorIssuesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb,
lib/google/apis/playdeveloperreporting_v1alpha1/representations.rb,
lib/google/apis/playdeveloperreporting_v1alpha1/representations.rb
Overview
Response with a paginated list of issues that matched the request.
Instance Attribute Summary collapse
-
#error_issues ⇒ Array<Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1ErrorIssue>
ErrorIssues that were found.
-
#next_page_token ⇒ String
Continuation token to fetch the next page of data.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePlayDeveloperReportingV1alpha1SearchErrorIssuesResponse
constructor
A new instance of GooglePlayDeveloperReportingV1alpha1SearchErrorIssuesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePlayDeveloperReportingV1alpha1SearchErrorIssuesResponse
Returns a new instance of GooglePlayDeveloperReportingV1alpha1SearchErrorIssuesResponse.
2092 2093 2094 |
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 2092 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_issues ⇒ Array<Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1ErrorIssue>
ErrorIssues that were found.
Corresponds to the JSON property errorIssues
2085 2086 2087 |
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 2085 def error_issues @error_issues end |
#next_page_token ⇒ String
Continuation token to fetch the next page of data.
Corresponds to the JSON property nextPageToken
2090 2091 2092 |
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 2090 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2097 2098 2099 2100 |
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 2097 def update!(**args) @error_issues = args[:error_issues] if args.key?(:error_issues) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |