Show / Hide Table of Contents

Class ReviewsResource

The "reviews" collection of methods.

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

Constructors

ReviewsResource(IClientService)

Constructs a new resource.

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

Methods

Get(String, String)

Returns a single review.

Declaration
public virtual ReviewsResource.GetRequest Get(string packageName, string reviewId)
Parameters
Type Name Description
System.String packageName

Unique identifier for the Android app for which we want reviews; for example, "com.spiffygame".

System.String reviewId
Returns
Type Description
ReviewsResource.GetRequest

List(String)

Returns a list of reviews. Only reviews from last week will be returned.

Declaration
public virtual ReviewsResource.ListRequest List(string packageName)
Parameters
Type Name Description
System.String packageName

Unique identifier for the Android app for which we want reviews; for example, "com.spiffygame".

Returns
Type Description
ReviewsResource.ListRequest

Reply(ReviewsReplyRequest, String, String)

Reply to a single review, or update an existing reply.

Declaration
public virtual ReviewsResource.ReplyRequest Reply(ReviewsReplyRequest body, string packageName, string reviewId)
Parameters
Type Name Description
ReviewsReplyRequest body

The body of the request.

System.String packageName

Unique identifier for the Android app for which we want reviews; for example, "com.spiffygame".

System.String reviewId
Returns
Type Description
ReviewsResource.ReplyRequest
Back to top