Show / Hide Table of Contents

Class EditsResource.ApklistingsResource

The "apklistings" collection of methods.

Inheritance
System.Object
EditsResource.ApklistingsResource
Namespace: Google.Apis.AndroidPublisher.v2
Assembly: Google.Apis.AndroidPublisher.v2.dll
Syntax
public class ApklistingsResource : object

Constructors

ApklistingsResource(IClientService)

Constructs a new resource.

Declaration
public ApklistingsResource(IClientService service)
Parameters
Type Name Description
IClientService service

Methods

Delete(String, String, Int32, String)

Deletes the APK-specific localized listing for a specified APK and language code.

Declaration
public virtual EditsResource.ApklistingsResource.DeleteRequest Delete(string packageName, string editId, int apkVersionCode, string language)
Parameters
Type Name Description
System.String packageName

Unique identifier for the Android app that is being updated; for example, "com.spiffygame".

System.String editId

Unique identifier for this edit.

System.Int32 apkVersionCode

The APK version code whose APK-specific listings should be read or modified.

System.String language

The language code (a BCP-47 language tag) of the APK-specific localized listing to read or modify. For example, to select Austrian German, pass "de-AT".

Returns
Type Description
EditsResource.ApklistingsResource.DeleteRequest

Deleteall(String, String, Int32)

Deletes all the APK-specific localized listings for a specified APK.

Declaration
public virtual EditsResource.ApklistingsResource.DeleteallRequest Deleteall(string packageName, string editId, int apkVersionCode)
Parameters
Type Name Description
System.String packageName

Unique identifier for the Android app that is being updated; for example, "com.spiffygame".

System.String editId

Unique identifier for this edit.

System.Int32 apkVersionCode

The APK version code whose APK-specific listings should be read or modified.

Returns
Type Description
EditsResource.ApklistingsResource.DeleteallRequest

Get(String, String, Int32, String)

Fetches the APK-specific localized listing for a specified APK and language code.

Declaration
public virtual EditsResource.ApklistingsResource.GetRequest Get(string packageName, string editId, int apkVersionCode, string language)
Parameters
Type Name Description
System.String packageName

Unique identifier for the Android app that is being updated; for example, "com.spiffygame".

System.String editId

Unique identifier for this edit.

System.Int32 apkVersionCode

The APK version code whose APK-specific listings should be read or modified.

System.String language

The language code (a BCP-47 language tag) of the APK-specific localized listing to read or modify. For example, to select Austrian German, pass "de-AT".

Returns
Type Description
EditsResource.ApklistingsResource.GetRequest

List(String, String, Int32)

Lists all the APK-specific localized listings for a specified APK.

Declaration
public virtual EditsResource.ApklistingsResource.ListRequest List(string packageName, string editId, int apkVersionCode)
Parameters
Type Name Description
System.String packageName

Unique identifier for the Android app that is being updated; for example, "com.spiffygame".

System.String editId

Unique identifier for this edit.

System.Int32 apkVersionCode

The APK version code whose APK-specific listings should be read or modified.

Returns
Type Description
EditsResource.ApklistingsResource.ListRequest

Patch(ApkListing, String, String, Int32, String)

Updates or creates the APK-specific localized listing for a specified APK and language code. This method supports patch semantics.

Declaration
public virtual EditsResource.ApklistingsResource.PatchRequest Patch(ApkListing body, string packageName, string editId, int apkVersionCode, string language)
Parameters
Type Name Description
ApkListing body

The body of the request.

System.String packageName

Unique identifier for the Android app that is being updated; for example, "com.spiffygame".

System.String editId

Unique identifier for this edit.

System.Int32 apkVersionCode

The APK version code whose APK-specific listings should be read or modified.

System.String language

The language code (a BCP-47 language tag) of the APK-specific localized listing to read or modify. For example, to select Austrian German, pass "de-AT".

Returns
Type Description
EditsResource.ApklistingsResource.PatchRequest

Update(ApkListing, String, String, Int32, String)

Updates or creates the APK-specific localized listing for a specified APK and language code.

Declaration
public virtual EditsResource.ApklistingsResource.UpdateRequest Update(ApkListing body, string packageName, string editId, int apkVersionCode, string language)
Parameters
Type Name Description
ApkListing body

The body of the request.

System.String packageName

Unique identifier for the Android app that is being updated; for example, "com.spiffygame".

System.String editId

Unique identifier for this edit.

System.Int32 apkVersionCode

The APK version code whose APK-specific listings should be read or modified.

System.String language

The language code (a BCP-47 language tag) of the APK-specific localized listing to read or modify. For example, to select Austrian German, pass "de-AT".

Returns
Type Description
EditsResource.ApklistingsResource.UpdateRequest
Back to top