[][src]Struct google_androidpublisher2::UserComment

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

app_version_code: Option<i32>

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

original_text: Option<String>

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.

reviewer_language: Option<String>

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.

last_modified: Option<Timestamp>

The last time at which this comment was updated.

thumbs_up_count: Option<i32>

Number of users who have given this review a thumbs up

star_rating: Option<i32>

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

text: Option<String>

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.

device: Option<String>

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

android_os_version: Option<i32>

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

device_metadata: Option<DeviceMetadata>

Some information about the characteristics of the user's device

app_version_name: Option<String>

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

thumbs_down_count: Option<i32>

Number of users who have given this review a thumbs down

Trait Implementations

impl Clone for UserComment[src]

impl Debug for UserComment[src]

impl Default for UserComment[src]

impl<'de> Deserialize<'de> for UserComment[src]

impl Part for UserComment[src]

impl Serialize for UserComment[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any