Class: Google::Apis::TestingV1::AndroidVersion

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

Overview

A version of the Android OS

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) ⇒ AndroidVersion

Returns a new instance of AndroidVersion



636
637
638
# File 'generated/google/apis/testing_v1/classes.rb', line 636

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

Instance Attribute Details

#api_levelFixnum

The API level for this Android version. Examples: 18, 19 Corresponds to the JSON property apiLevel

Returns:

  • (Fixnum)


589
590
591
# File 'generated/google/apis/testing_v1/classes.rb', line 589

def api_level
  @api_level
end

#code_nameString

The code name for this Android version. Examples: "JellyBean", "KitKat" Corresponds to the JSON property codeName

Returns:

  • (String)


596
597
598
# File 'generated/google/apis/testing_v1/classes.rb', line 596

def code_name
  @code_name
end

#distributionGoogle::Apis::TestingV1::Distribution

Data about the relative number of devices running a given configuration of the Android platform. Corresponds to the JSON property distribution



602
603
604
# File 'generated/google/apis/testing_v1/classes.rb', line 602

def distribution
  @distribution
end

#idString

An opaque id for this Android version. Use this id to invoke the TestExecutionService. Corresponds to the JSON property id

Returns:

  • (String)


609
610
611
# File 'generated/google/apis/testing_v1/classes.rb', line 609

def id
  @id
end

#release_dateGoogle::Apis::TestingV1::Date

Represents a whole or partial calendar date, e.g. a birthday. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the Proleptic Gregorian Calendar. This can represent:

  • A full date, with non-zero year, month and day values
  • A month and day value, with a zero year, e.g. an anniversary
  • A year on its own, with zero month and day values
  • A year and month value, with a zero day, e.g. a credit card expiration date Related types are google.type.TimeOfDay and google.protobuf.Timestamp. Corresponds to the JSON property releaseDate


621
622
623
# File 'generated/google/apis/testing_v1/classes.rb', line 621

def release_date
  @release_date
end

#tagsArray<String>

Tags for this dimension. Examples: "default", "preview", "deprecated" Corresponds to the JSON property tags

Returns:

  • (Array<String>)


627
628
629
# File 'generated/google/apis/testing_v1/classes.rb', line 627

def tags
  @tags
end

#version_stringString

A string representing this version of the Android OS. Examples: "4.3", "4.4" Corresponds to the JSON property versionString

Returns:

  • (String)


634
635
636
# File 'generated/google/apis/testing_v1/classes.rb', line 634

def version_string
  @version_string
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



641
642
643
644
645
646
647
648
649
# File 'generated/google/apis/testing_v1/classes.rb', line 641

def update!(**args)
  @api_level = args[:api_level] if args.key?(:api_level)
  @code_name = args[:code_name] if args.key?(:code_name)
  @distribution = args[:distribution] if args.key?(:distribution)
  @id = args[:id] if args.key?(:id)
  @release_date = args[:release_date] if args.key?(:release_date)
  @tags = args[:tags] if args.key?(:tags)
  @version_string = args[:version_string] if args.key?(:version_string)
end