Show / Hide Table of Contents

Class EditsResource.TracksResource

The "tracks" collection of methods.

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

Constructors

TracksResource(IClientService)

Constructs a new resource.

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

Methods

Get(String, String, String)

Fetches the track configuration for the specified track type. Includes the APK version codes that are in this track.

Declaration
public virtual EditsResource.TracksResource.GetRequest Get(string packageName, string editId, string track)
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 track

The track to read or modify.

Returns
Type Description
EditsResource.TracksResource.GetRequest

List(String, String)

Lists all the track configurations for this edit.

Declaration
public virtual EditsResource.TracksResource.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.TracksResource.ListRequest

Patch(Track, String, String, String)

Updates the track configuration for the specified track type. This method supports patch semantics.

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

The track to read or modify.

Returns
Type Description
EditsResource.TracksResource.PatchRequest

Update(Track, String, String, String)

Updates the track configuration for the specified track type.

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

The track to read or modify.

Returns
Type Description
EditsResource.TracksResource.UpdateRequest
Back to top