Show / Hide Table of Contents

Class EditsResource.ListingsResource

The "listings" collection of methods.

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

Constructors

ListingsResource(IClientService)

Constructs a new resource.

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

Methods

Delete(String, String, String)

Deletes the specified localized store listing from an edit.

Declaration
public virtual EditsResource.ListingsResource.DeleteRequest Delete(string packageName, string editId, 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.String language

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".

Returns
Type Description
EditsResource.ListingsResource.DeleteRequest

Deleteall(String, String)

Deletes all localized listings from an edit.

Declaration
public virtual EditsResource.ListingsResource.DeleteallRequest Deleteall(string packageName, string editId)
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.

Returns
Type Description
EditsResource.ListingsResource.DeleteallRequest

Get(String, String, String)

Fetches information about a localized store listing.

Declaration
public virtual EditsResource.ListingsResource.GetRequest Get(string packageName, string editId, 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.String language

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".

Returns
Type Description
EditsResource.ListingsResource.GetRequest

List(String, String)

Returns all of the localized store listings attached to this edit.

Declaration
public virtual EditsResource.ListingsResource.ListRequest List(string packageName, string editId)
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.

Returns
Type Description
EditsResource.ListingsResource.ListRequest

Patch(Listing, String, String, String)

Creates or updates a localized store listing. This method supports patch semantics.

Declaration
public virtual EditsResource.ListingsResource.PatchRequest Patch(Listing body, string packageName, string editId, string language)
Parameters
Type Name Description
Listing 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.String language

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".

Returns
Type Description
EditsResource.ListingsResource.PatchRequest

Update(Listing, String, String, String)

Creates or updates a localized store listing.

Declaration
public virtual EditsResource.ListingsResource.UpdateRequest Update(Listing body, string packageName, string editId, string language)
Parameters
Type Name Description
Listing 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.String language

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".

Returns
Type Description
EditsResource.ListingsResource.UpdateRequest
Back to top