Page Summary
-
Targeting details for recovery actions can be based on regions, Android SDK levels, or all users.
-
Targeted app versions for recovery actions can be specified as a list of version codes or a continuous range of version codes.
Targeting details for a recovery action such as regions, android sdk levels, app versions etc.
| JSON representation |
|---|
{ // Union field |
criteria
. Criteria for targeting recovery action. criteria
can be only one of the following:regions
object (
Regions
)
Targeting is based on the user account region.
androidSdks
object (
AndroidSdks
)
Targeting is based on android api levels of devices.
allUsers
object (
AllUsers
)
All users are targeted.
target_versions
. App versions targeted by the recovery action. Required. target_versions
can be only one of the following:versionList
object (
AppVersionList
)
Target version codes as a list.
versionRange
object (
AppVersionRange
)
Target version codes as a range.
AppVersionList
Data format for a list of app versions.
| JSON representation |
|---|
{ "versionCodes" : [ string ] } |
| Fields | |
|---|---|
versionCodes[]
|
List of app version codes. |
AppVersionRange
Data format for a continuous range of app versions.
| JSON representation |
|---|
{ "versionCodeStart" : string , "versionCodeEnd" : string } |
| Fields | |
|---|---|
versionCodeStart
|
Lowest app version in the range, inclusive. |
versionCodeEnd
|
Highest app version in the range, inclusive. |

