Class: Google::Apis::ToolresultsV1beta3::SkippedDetail

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/toolresults_v1beta3/classes.rb,
generated/google/apis/toolresults_v1beta3/representations.rb,
generated/google/apis/toolresults_v1beta3/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SkippedDetail

Returns a new instance of SkippedDetail



1673
1674
1675
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1673

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

Instance Attribute Details

#incompatible_app_versionBoolean Also known as: incompatible_app_version?

If the App doesn't support the specific API level. Corresponds to the JSON property incompatibleAppVersion

Returns:

  • (Boolean)


1658
1659
1660
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1658

def incompatible_app_version
  @incompatible_app_version
end

#incompatible_architectureBoolean Also known as: incompatible_architecture?

If the App doesn't run on the specific architecture, for example, x86. Corresponds to the JSON property incompatibleArchitecture

Returns:

  • (Boolean)


1664
1665
1666
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1664

def incompatible_architecture
  @incompatible_architecture
end

#incompatible_deviceBoolean Also known as: incompatible_device?

If the requested OS version doesn't run on the specific device model. Corresponds to the JSON property incompatibleDevice

Returns:

  • (Boolean)


1670
1671
1672
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1670

def incompatible_device
  @incompatible_device
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1678
1679
1680
1681
1682
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1678

def update!(**args)
  @incompatible_app_version = args[:incompatible_app_version] if args.key?(:incompatible_app_version)
  @incompatible_architecture = args[:incompatible_architecture] if args.key?(:incompatible_architecture)
  @incompatible_device = args[:incompatible_device] if args.key?(:incompatible_device)
end