delete(packageName, editId, language)
Deletes the specified localized store listing from an edit.
deleteall(packageName, editId)
Deletes all localized listings from an edit.
get(packageName, editId, language)
Fetches information about a localized store listing.
Returns all of the localized store listings attached to this edit.
patch(packageName, editId, language, body)
Creates or updates a localized store listing. This method supports patch semantics.
update(packageName, editId, language, body)
Creates or updates a localized store listing.
delete(packageName, editId, language)
Deletes the specified localized store listing from an edit. Args: packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required) editId: string, Unique identifier for this edit. (required) language: string, The language code (a BCP-47 language tag) of the localized listing to read or modify. For example, to select Austrian German, pass "de-AT". (required)
deleteall(packageName, editId)
Deletes all localized listings from an edit. Args: packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required) editId: string, Unique identifier for this edit. (required)
get(packageName, editId, language)
Fetches information about a localized store listing. Args: packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required) editId: string, Unique identifier for this edit. (required) language: string, The language code (a BCP-47 language tag) of the localized listing to read or modify. For example, to select Austrian German, pass "de-AT". (required) Returns: An object of the form: { "shortDescription": "A String", # Short description of the app (previously known as promo text); this may be up to 80 characters in length. "video": "A String", # URL of a promotional YouTube video for the app. "fullDescription": "A String", # Full description of the app; this may be up to 4000 characters in length. "language": "A String", # Language localization code (for example, "de-AT" for Austrian German). "title": "A String", # App's localized title. }
list(packageName, editId)
Returns all of the localized store listings attached to this edit. Args: packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required) editId: string, Unique identifier for this edit. (required) Returns: An object of the form: { "kind": "androidpublisher#listingsListResponse", # Identifies what kind of resource this is. Value: the fixed string "androidpublisher#listingsListResponse". "listings": [ { "shortDescription": "A String", # Short description of the app (previously known as promo text); this may be up to 80 characters in length. "video": "A String", # URL of a promotional YouTube video for the app. "fullDescription": "A String", # Full description of the app; this may be up to 4000 characters in length. "language": "A String", # Language localization code (for example, "de-AT" for Austrian German). "title": "A String", # App's localized title. }, ], }
patch(packageName, editId, language, body)
Creates or updates a localized store listing. This method supports patch semantics. Args: packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required) editId: string, Unique identifier for this edit. (required) language: string, The language code (a BCP-47 language tag) of the localized listing to read or modify. For example, to select Austrian German, pass "de-AT". (required) body: object, The request body. (required) The object takes the form of: { "shortDescription": "A String", # Short description of the app (previously known as promo text); this may be up to 80 characters in length. "video": "A String", # URL of a promotional YouTube video for the app. "fullDescription": "A String", # Full description of the app; this may be up to 4000 characters in length. "language": "A String", # Language localization code (for example, "de-AT" for Austrian German). "title": "A String", # App's localized title. } Returns: An object of the form: { "shortDescription": "A String", # Short description of the app (previously known as promo text); this may be up to 80 characters in length. "video": "A String", # URL of a promotional YouTube video for the app. "fullDescription": "A String", # Full description of the app; this may be up to 4000 characters in length. "language": "A String", # Language localization code (for example, "de-AT" for Austrian German). "title": "A String", # App's localized title. }
update(packageName, editId, language, body)
Creates or updates a localized store listing. Args: packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required) editId: string, Unique identifier for this edit. (required) language: string, The language code (a BCP-47 language tag) of the localized listing to read or modify. For example, to select Austrian German, pass "de-AT". (required) body: object, The request body. (required) The object takes the form of: { "shortDescription": "A String", # Short description of the app (previously known as promo text); this may be up to 80 characters in length. "video": "A String", # URL of a promotional YouTube video for the app. "fullDescription": "A String", # Full description of the app; this may be up to 4000 characters in length. "language": "A String", # Language localization code (for example, "de-AT" for Austrian German). "title": "A String", # App's localized title. } Returns: An object of the form: { "shortDescription": "A String", # Short description of the app (previously known as promo text); this may be up to 80 characters in length. "video": "A String", # URL of a promotional YouTube video for the app. "fullDescription": "A String", # Full description of the app; this may be up to 4000 characters in length. "language": "A String", # Language localization code (for example, "de-AT" for Austrian German). "title": "A String", # App's localized title. }