Show / Hide Table of Contents

Class UserComment

Inheritance
System.Object
UserComment
Implements
IDirectResponseSchema
Namespace: Google.Apis.AndroidPublisher.v2.Data
Assembly: Google.Apis.AndroidPublisher.v2.dll
Syntax
public class UserComment : object, IDirectResponseSchema

Properties

AndroidOsVersion

Integer Android SDK version of the user's device at the time the review was written, e.g. 23 is Marshmallow. May be absent.

Declaration
public virtual Nullable<int> AndroidOsVersion { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

AppVersionCode

Integer version code of the app as installed at the time the review was written. May be absent.

Declaration
public virtual Nullable<int> AppVersionCode { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

AppVersionName

String version name of the app as installed at the time the review was written. May be absent.

Declaration
public virtual string AppVersionName { get; set; }
Property Value
Type Description
System.String

Device

Codename for the reviewer's device, e.g. klte, flounder. May be absent.

Declaration
public virtual string Device { get; set; }
Property Value
Type Description
System.String

DeviceMetadata

Some information about the characteristics of the user's device

Declaration
public virtual DeviceMetadata DeviceMetadata { get; set; }
Property Value
Type Description
DeviceMetadata

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

LastModified

The last time at which this comment was updated.

Declaration
public virtual Timestamp LastModified { get; set; }
Property Value
Type Description
Timestamp

OriginalText

Untranslated text of the review, in the case where the review has been translated. If the review has not been translated this is left blank.

Declaration
public virtual string OriginalText { get; set; }
Property Value
Type Description
System.String

ReviewerLanguage

Language code for the reviewer. This is taken from the device settings so is not guaranteed to match the language the review is written in. May be absent.

Declaration
public virtual string ReviewerLanguage { get; set; }
Property Value
Type Description
System.String

StarRating

The star rating associated with the review, from 1 to 5.

Declaration
public virtual Nullable<int> StarRating { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Text

The content of the comment, i.e. review body. In some cases users have been able to write a review with separate title and body; in those cases the title and body are concatenated and separated by a tab character.

Declaration
public virtual string Text { get; set; }
Property Value
Type Description
System.String

ThumbsDownCount

Number of users who have given this review a thumbs down

Declaration
public virtual Nullable<int> ThumbsDownCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ThumbsUpCount

Number of users who have given this review a thumbs up

Declaration
public virtual Nullable<int> ThumbsUpCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
Back to top