Class DeviceTier
A single device tier. Devices matching any of the device groups in device_group_names are considered to match the tier.
Implements
Inherited Members
Namespace: Google.Apis.AndroidPublisher.v3.Data
Assembly: Google.Apis.AndroidPublisher.v3.dll
Syntax
public class DeviceTier : IDirectResponseSchema
Properties
DeviceGroupNames
Groups of devices included in this tier. These groups must be defined explicitly under device_groups in this configuration.
Declaration
[JsonProperty("deviceGroupNames")]
public virtual IList<string> DeviceGroupNames { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Level
The priority level of the tier. Tiers are evaluated in descending order of level: the highest level tier has the highest priority. The highest tier matching a given device is selected for that device. You should use a contiguous range of levels for your tiers in a tier set; tier levels in a tier set must be unique. For instance, if your tier set has 4 tiers (including the global fallback), you should define tiers 1, 2 and 3 in this configuration. Note: tier 0 is implicitly defined as a global fallback and selected for devices that don't match any of the tiers explicitly defined here. You mustn't define level 0 explicitly in this configuration.
Declaration
[JsonProperty("level")]
public virtual int? Level { get; set; }
Property Value
Type | Description |
---|---|
int? |