class Google::Apis::TestingV1::Distribution

Data about the relative number of devices running a given configuration of the Android platform.

Attributes

market_share[RW]

Output only. The estimated fraction (0-1) of the total market with this configuration. Corresponds to the JSON property `marketShare` @return [Float]

measurement_time[RW]

Output only. The time this distribution was measured. Corresponds to the JSON property `measurementTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 945
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/testing_v1/classes.rb, line 950
def update!(**args)
  @market_share = args[:market_share] if args.key?(:market_share)
  @measurement_time = args[:measurement_time] if args.key?(:measurement_time)
end