Skip to content

FOperatingSystemStoreReviewUser

#include <OperatingSystemSimulator/Public/Data/OperatingSystemStoreTypes.h>
---
config:
  class:
    hideEmptyMembersBox: true
---
classDiagram
  class FOperatingSystemStoreReviewUser {
    +Username : FText
    +ReviewDescription : FText
    +SubmittedRating : uint8
    +IsValid() const bool
    +FOperatingSystemStoreReviewUser()
    +FOperatingSystemStoreReviewUser(const FOperatingSystemStoreReviewUser &Othe
  }
struct FOperatingSystemStoreReviewUser

Defined 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.

ReturnNameDescription
FTextUsernameThe username of the user logged into the OperatingSystemStoreReviewUser.
FTextReviewDescriptionRepresents the review description provided by the user in the operating system’s store review.
uint8SubmittedRatingThe rating submitted by the user for the operating system store review.

FText Username

Defined in OperatingSystemStoreTypes.h:25 The username of the user logged into the OperatingSystemStoreReviewUser.


FText ReviewDescription

Defined in OperatingSystemStoreTypes.h:32 Represents the review description provided by the user in the operating system’s store review.


uint8 SubmittedRating

Defined 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.

ReturnNameDescription
boolIsValid const inlineChecks if the Username is not empty or whitespace and if the SubmittedRating is less than or equal to 5.
FOperatingSystemStoreReviewUser inline
FOperatingSystemStoreReviewUser inline

const inline

inline bool IsValid() const

Defined in OperatingSystemStoreTypes.h:49 Checks if the Username is not empty or whitespace and if the SubmittedRating is less than or equal to 5.

True if the OperatingSystemStoreReviewUser object is valid, false otherwise.


inline

inline FOperatingSystemStoreReviewUser()

inline

inline FOperatingSystemStoreReviewUser(const FOperatingSystemStoreReviewUser & Other)

Defined in OperatingSystemStoreTypes.h:70