Class: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1ErrorIssue

Inherits:
Object
  • Object
show all
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

A group of related ErrorReports received for an app. Similar error reports are grouped together into issues with a likely identical root cause. Please note: ** this resource is currently in Alpha. There could be changes to the issue grouping that would result in similar but more recent error reports being assigned to different issues. This could also cause some issues disappearing entirely and being replaced by new ones. **Required permissions: to access this resource, the calling user needs the View app information (read-only) permission for the app.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePlayDeveloperReportingV1alpha1ErrorIssue

Returns a new instance of GooglePlayDeveloperReportingV1alpha1ErrorIssue.



608
609
610
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 608

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

Instance Attribute Details

#causeString

Cause of the issue. Depending on the type this can be either: * APPLICATION_NOT_RESPONDING: the type of ANR that occurred, e.g., 'Input dispatching timed out'. * CRASH: for Java unhandled exception errors, the type of the innermost exception that was thrown, e.g., IllegalArgumentException. For signals in native code, the signal that was raised, e.g. SIGSEGV. Corresponds to the JSON property cause

Returns:

  • (String)


537
538
539
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 537

def cause
  @cause
end

#distinct_usersFixnum

An estimate of the number of unique users who have experienced this issue ( only considering occurrences matching the filters and within the requested time period). Corresponds to the JSON property distinctUsers

Returns:

  • (Fixnum)


544
545
546
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 544

def distinct_users
  @distinct_users
end

#distinct_users_percentGoogle::Apis::PlaydeveloperreportingV1alpha1::GoogleTypeDecimal

A representation of a decimal value, such as 2.5. Clients may convert values into language-native decimal formats, such as Java's BigDecimal or Python's decimal.Decimal. [BigDecimal]: https://docs.oracle.com/en/java/javase/11/docs/ api/java.base/java/math/BigDecimal.html [decimal.Decimal]: https://docs.python. org/3/library/decimal.html Corresponds to the JSON property distinctUsersPercent



553
554
555
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 553

def distinct_users_percent
  @distinct_users_percent
end

#error_report_countFixnum

The total number of error reports in this issue (only considering occurrences matching the filters and within the requested time period). Corresponds to the JSON property errorReportCount

Returns:

  • (Fixnum)


559
560
561
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 559

def error_report_count
  @error_report_count
end

#first_app_versionGoogle::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1AppVersion

Representations of an app version. Corresponds to the JSON property firstAppVersion



564
565
566
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 564

def first_app_version
  @first_app_version
end

#first_os_versionGoogle::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1OsVersion

Representation of an OS version. Corresponds to the JSON property firstOsVersion



569
570
571
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 569

def first_os_version
  @first_os_version
end

#issue_uriString

Link to the issue in Android vitals in the Play Console. Corresponds to the JSON property issueUri

Returns:

  • (String)


574
575
576
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 574

def issue_uri
  @issue_uri
end

#last_app_versionGoogle::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1AppVersion

Representations of an app version. Corresponds to the JSON property lastAppVersion



579
580
581
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 579

def last_app_version
  @last_app_version
end

#last_error_report_timeString

Start of the hour during which the last error report in this issue occurred. Corresponds to the JSON property lastErrorReportTime

Returns:

  • (String)


584
585
586
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 584

def last_error_report_time
  @last_error_report_time
end

#last_os_versionGoogle::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1OsVersion

Representation of an OS version. Corresponds to the JSON property lastOsVersion



589
590
591
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 589

def last_os_version
  @last_os_version
end

#locationString

Location where the issue happened. Depending on the type this can be either: * APPLICATION_NOT_RESPONDING: the name of the activity or service that stopped responding. * CRASH: the likely method name that caused the error. Corresponds to the JSON property location

Returns:

  • (String)


596
597
598
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 596

def location
  @location
end

#nameString

The resource name of the issue. Format: apps/app/errorIssues/issue Corresponds to the JSON property name

Returns:

  • (String)


601
602
603
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 601

def name
  @name
end

#typeString

Type of the errors grouped in this issue. Corresponds to the JSON property type

Returns:

  • (String)


606
607
608
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 606

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 613

def update!(**args)
  @cause = args[:cause] if args.key?(:cause)
  @distinct_users = args[:distinct_users] if args.key?(:distinct_users)
  @distinct_users_percent = args[:distinct_users_percent] if args.key?(:distinct_users_percent)
  @error_report_count = args[:error_report_count] if args.key?(:error_report_count)
  @first_app_version = args[:first_app_version] if args.key?(:first_app_version)
  @first_os_version = args[:first_os_version] if args.key?(:first_os_version)
  @issue_uri = args[:issue_uri] if args.key?(:issue_uri)
  @last_app_version = args[:last_app_version] if args.key?(:last_app_version)
  @last_error_report_time = args[:last_error_report_time] if args.key?(:last_error_report_time)
  @last_os_version = args[:last_os_version] if args.key?(:last_os_version)
  @location = args[:location] if args.key?(:location)
  @name = args[:name] if args.key?(:name)
  @type = args[:type] if args.key?(:type)
end