pub struct UserComment {
pub android_os_version: Option<i32>,
pub app_version_code: Option<i32>,
pub app_version_name: Option<String>,
pub device: Option<String>,
pub device_metadata: Option<DeviceMetadata>,
pub last_modified: Option<Timestamp>,
pub original_text: Option<String>,
pub reviewer_language: Option<String>,
pub star_rating: Option<i32>,
pub text: Option<String>,
pub thumbs_down_count: Option<i32>,
pub thumbs_up_count: Option<i32>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§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.
app_version_code: Option<i32>Integer version code of the app as installed at the time the review was written. May be absent.
app_version_name: Option<String>String version name of the app as installed at the time the review was written. May be absent.
device: Option<String>Codename for the reviewer’s device, e.g. klte, flounder. May be absent.
device_metadata: Option<DeviceMetadata>Some information about the characteristics of the user’s device
last_modified: Option<Timestamp>The last time at which this comment was updated.
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.
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.
thumbs_down_count: Option<i32>Number of users who have given this review a thumbs down
thumbs_up_count: Option<i32>Number of users who have given this review a thumbs up
Trait Implementations§
Source§impl Clone for UserComment
impl Clone for UserComment
Source§fn clone(&self) -> UserComment
fn clone(&self) -> UserComment
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more