FOperatingSystemStoreReviewUser
#include <OperatingSystemSimulator/Public/Data/OperatingSystemStoreTypes.h>Class detail
Section titled “Class detail”---
config:
class:
hideEmptyMembersBox: true
---
classDiagram
class FOperatingSystemStoreReviewUser {
+Username : FText
+ReviewDescription : FText
+SubmittedRating : uint8
+IsValid() const bool
+FOperatingSystemStoreReviewUser()
+FOperatingSystemStoreReviewUser(const FOperatingSystemStoreReviewUser &Othe
}
struct FOperatingSystemStoreReviewUserDefined in OperatingSystemStoreTypes.h:17 Represents a user that has logged into the operating system’s store review.
This struct contains information about the user, including their username, review description, and submitted rating. It also includes functions to check the validity of the user and to compare two instances of the struct.
Public Attributes
Section titled “Public Attributes”| Return | Name | Description |
|---|---|---|
FText | Username | The username of the user logged into the OperatingSystemStoreReviewUser. |
FText | ReviewDescription | Represents the review description provided by the user in the operating system’s store review. |
uint8 | SubmittedRating | The rating submitted by the user for the operating system store review. |
Username
Section titled “Username”FText UsernameDefined in OperatingSystemStoreTypes.h:25 The username of the user logged into the OperatingSystemStoreReviewUser.
ReviewDescription
Section titled “ReviewDescription”FText ReviewDescriptionDefined in OperatingSystemStoreTypes.h:32 Represents the review description provided by the user in the operating system’s store review.
SubmittedRating
Section titled “SubmittedRating”uint8 SubmittedRatingDefined in OperatingSystemStoreTypes.h:42 The rating submitted by the user for the operating system store review.
This variable represents the rating submitted by the user for the operating system store review. The rating should be an integer value between 1 and 5, inclusive.
Public Methods
Section titled “Public Methods”| Return | Name | Description |
|---|---|---|
bool | IsValid const inline | Checks if the Username is not empty or whitespace and if the SubmittedRating is less than or equal to 5. |
FOperatingSystemStoreReviewUser inline | ||
FOperatingSystemStoreReviewUser inline |
IsValid
Section titled “IsValid”const inline
inline bool IsValid() constDefined in OperatingSystemStoreTypes.h:49 Checks if the Username is not empty or whitespace and if the SubmittedRating is less than or equal to 5.
Returns
Section titled “Returns”True if the OperatingSystemStoreReviewUser object is valid, false otherwise.
FOperatingSystemStoreReviewUser
Section titled “FOperatingSystemStoreReviewUser”inline
inline FOperatingSystemStoreReviewUser()Defined in OperatingSystemStoreTypes.h:63
Section titled “Defined in OperatingSystemStoreTypes.h:63”FOperatingSystemStoreReviewUser
Section titled “FOperatingSystemStoreReviewUser”inline
inline FOperatingSystemStoreReviewUser(const FOperatingSystemStoreReviewUser & Other)Defined in OperatingSystemStoreTypes.h:70