Show / Hide Table of Contents

Class EditsResource.DetailsResource

The "details" collection of methods.

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

Constructors

DetailsResource(IClientService)

Constructs a new resource.

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

Methods

Get(String, String)

Fetches app details for this edit. This includes the default language and developer support contact information.

Declaration
public virtual EditsResource.DetailsResource.GetRequest Get(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.DetailsResource.GetRequest

Patch(AppDetails, String, String)

Updates app details for this edit. This method supports patch semantics.

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

Returns
Type Description
EditsResource.DetailsResource.PatchRequest

Update(AppDetails, String, String)

Updates app details for this edit.

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

Returns
Type Description
EditsResource.DetailsResource.UpdateRequest
Back to top