Targeting
Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
Detalles de segmentación de una acción de recuperación, como regiones, niveles del SDK de Android, versiones de apps, etcétera
Representación JSON |
{
// Union field criteria can be only one of the following:
"regions": {
object (Regions )
},
"androidSdks": {
object (AndroidSdks )
},
"allUsers": {
object (AllUsers )
}
// End of list of possible types for union field criteria .
// Union field target_versions can be only one of the following:
"versionList": {
object (AppVersionList )
},
"versionRange": {
object (AppVersionRange )
}
// End of list of possible types for union field target_versions .
} |
Campos |
Campo de unión criteria . Criterios para la acción de recuperación de segmentación. Las direcciones (criteria ) solo pueden ser una de las siguientes opciones: |
regions |
object (Regions )
La segmentación se basa en la región de la cuenta de usuario.
|
androidSdks |
object (AndroidSdks )
La segmentación se basa en los niveles de API de los dispositivos de Android.
|
allUsers |
object (AllUsers )
La segmentación se orienta a todos los usuarios.
|
Campo de unión target_versions . Versiones de la app a las que se orienta la acción de recuperación. Obligatorio. Las direcciones (target_versions ) solo pueden ser una de las siguientes opciones: |
versionList |
object (AppVersionList )
Segmenta los códigos de versión en una lista.
|
versionRange |
object (AppVersionRange )
Selecciona los códigos de versión como un rango.
|
AppVersionList
Formato de datos para una lista de versiones de la app.
Representación JSON |
{
"versionCodes": [
string
]
} |
Campos |
versionCodes[] |
string (int64 format)
Lista de códigos de versión de la app.
|
AppVersionRange
Formato de datos para un rango continuo de versiones de apps.
Representación JSON |
{
"versionCodeStart": string,
"versionCodeEnd": string
} |
Campos |
versionCodeStart |
string (int64 format)
La versión más baja de la app del rango (inclusive).
|
versionCodeEnd |
string (int64 format)
La versión más alta de la app del rango (inclusive).
|
Salvo que se indique lo contrario, el contenido de esta página está sujeto a la licencia Atribución 4.0 de Creative Commons, y los ejemplos de código están sujetos a la licencia Apache 2.0. Para obtener más información, consulta las políticas del sitio de Google Developers. Java es una marca registrada de Oracle o sus afiliados.
Última actualización: 2025-07-26 (UTC)
[null,null,["Última actualización: 2025-07-26 (UTC)"],[[["\u003cp\u003eTargeting details for a recovery action include regions, Android SDK levels, and app versions.\u003c/p\u003e\n"],["\u003cp\u003eRecovery actions can target specific app versions using either a list of version codes or a range of version codes.\u003c/p\u003e\n"],["\u003cp\u003eYou can target all users or filter by region or Android SDK level for recovery actions.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eAppVersionList\u003c/code\u003e defines target app versions using a list of version codes, while \u003ccode\u003eAppVersionRange\u003c/code\u003e uses a start and end version code for a continuous range.\u003c/p\u003e\n"]]],["This describes targeting options for recovery actions, utilizing JSON structures. Actions can target users based on `regions`, `androidSdks`, or `allUsers`. App versions can be targeted either as a `versionList` with specific `versionCodes` or as a `versionRange` defined by `versionCodeStart` and `versionCodeEnd`. `AppVersionList` and `AppVersionRange` provide formats to define version-specific targeting. A recovery action needs to target app versions, using one of the formats.\n"],null,["# Targeting\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n- [AppVersionList](#AppVersionList)\n - [JSON representation](#AppVersionList.SCHEMA_REPRESENTATION)\n- [AppVersionRange](#AppVersionRange)\n - [JSON representation](#AppVersionRange.SCHEMA_REPRESENTATION)\n\nTargeting details for a recovery action such as regions, android sdk levels, app versions etc.\n\n| JSON representation |\n|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { // Union field `criteria` can be only one of the following: \"regions\": { object (/android-publisher/api-ref/rest/v3/Regions) }, \"androidSdks\": { object (/android-publisher/api-ref/rest/v3/AndroidSdks) }, \"allUsers\": { object (/android-publisher/api-ref/rest/v3/AllUsers) } // End of list of possible types for union field `criteria`. // Union field `target_versions` can be only one of the following: \"versionList\": { object (/android-publisher/api-ref/rest/v3/Targeting#AppVersionList) }, \"versionRange\": { object (/android-publisher/api-ref/rest/v3/Targeting#AppVersionRange) } // End of list of possible types for union field `target_versions`. } ``` |\n\n| Fields ||\n|----------------|---------------------------------------------------------------------------------------------------------------------------------|\n| Union field `criteria`. Criteria for targeting recovery action. `criteria` can be only one of the following: ||\n| `regions` | `object (`[Regions](/android-publisher/api-ref/rest/v3/Regions)`)` Targeting is based on the user account region. |\n| `androidSdks` | `object (`[AndroidSdks](/android-publisher/api-ref/rest/v3/AndroidSdks)`)` Targeting is based on android api levels of devices. |\n| `allUsers` | `object (`[AllUsers](/android-publisher/api-ref/rest/v3/AllUsers)`)` All users are targeted. |\n| Union field `target_versions`. App versions targeted by the recovery action. Required. `target_versions` can be only one of the following: ||\n| `versionList` | `object (`[AppVersionList](/android-publisher/api-ref/rest/v3/Targeting#AppVersionList)`)` Target version codes as a list. |\n| `versionRange` | `object (`[AppVersionRange](/android-publisher/api-ref/rest/v3/Targeting#AppVersionRange)`)` Target version codes as a range. |\n\nAppVersionList\n--------------\n\nData format for a list of app versions.\n\n| JSON representation |\n|----------------------------------------|\n| ``` { \"versionCodes\": [ string ] } ``` |\n\n| Fields ||\n|------------------|----------------------------------------------------------------------------------------------------------------|\n| `versionCodes[]` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` List of app version codes. |\n\nAppVersionRange\n---------------\n\nData format for a continuous range of app versions.\n\n| JSON representation |\n|------------------------------------------------------------------|\n| ``` { \"versionCodeStart\": string, \"versionCodeEnd\": string } ``` |\n\n| Fields ||\n|--------------------|----------------------------------------------------------------------------------------------------------------------------------|\n| `versionCodeStart` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` Lowest app version in the range, inclusive. |\n| `versionCodeEnd` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` Highest app version in the range, inclusive. |"]]