Struct google_androidpublisher2::UserComment [] [src]

pub struct UserComment {
    pub app_version_code: Option<i32>,
    pub original_text: Option<String>,
    pub reviewer_language: Option<String>,
    pub last_modified: Option<Timestamp>,
    pub thumbs_up_count: Option<i32>,
    pub star_rating: Option<i32>,
    pub text: Option<String>,
    pub device: Option<String>,
    pub android_os_version: Option<i32>,
    pub device_metadata: Option<DeviceMetadata>,
    pub app_version_name: Option<String>,
    pub thumbs_down_count: Option<i32>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

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

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.

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.

The last time at which this comment was updated.

Number of users who have given this review a thumbs up

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

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.

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

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

Some information about the characteristics of the user's device

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

Number of users who have given this review a thumbs down

Trait Implementations

impl Default for UserComment
[src]

[src]

Returns the "default value" for a type. Read more

impl Clone for UserComment
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for UserComment
[src]

[src]

Formats the value using the given formatter.

impl Part for UserComment
[src]