Class: Google::Apis::TestingV1::PerIosVersionInfo
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::PerIosVersionInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/testing_v1/classes.rb,
lib/google/apis/testing_v1/representations.rb,
lib/google/apis/testing_v1/representations.rb
Overview
A version-specific information of an iOS model.
Instance Attribute Summary collapse
-
#device_capacity ⇒ String
The number of online devices for an iOS version.
-
#version_id ⇒ String
An iOS version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PerIosVersionInfo
constructor
A new instance of PerIosVersionInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PerIosVersionInfo
Returns a new instance of PerIosVersionInfo.
1836 1837 1838 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1836 def initialize(**args) update!(**args) end |
Instance Attribute Details
#device_capacity ⇒ String
The number of online devices for an iOS version.
Corresponds to the JSON property deviceCapacity
1829 1830 1831 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1829 def device_capacity @device_capacity end |
#version_id ⇒ String
An iOS version.
Corresponds to the JSON property versionId
1834 1835 1836 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1834 def version_id @version_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1841 1842 1843 1844 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1841 def update!(**args) @device_capacity = args[:device_capacity] if args.key?(:device_capacity) @version_id = args[:version_id] if args.key?(:version_id) end |