Enum UserFlags
Represents user account flags and badges in Fluxer. Multiple flags can be combined using bitwise OR.
[Flags]
public enum UserFlags : ulong
Fields
AgeVerifiedAdult = 1152921504606846976User has verified they are an adult (internal flag)
AppStoreReviewer = 9007199254740992User is an app store reviewer (internal flag)
BugHunter = 8Bug hunter badge (found and reported bugs).
Deleted = 17179869184User account has been deleted (internal flag).
Disabled = 274877906944User account is disabled (internal flag).
DisabledSuspiciousActivity = 34359738368Account disabled due to suspicious activity (internal flag).
ForcePhoneVerification = 2305843009213693952Force phone verification for this user (internal flag)
FriendlyBot = 16Bot accepts friend requests from users.
FriendlyBotManualApproval = 32Bot requires manual approval for friend requests.
HasDismissedPremiumOnboarding = 2251799813685248User has dismissed the premium onboarding flow (user preference).
HasSessionStarted = 549755813888User has started a session (internal flag).
HighGlobalRateLimit = 8589934592User has a higher global rate limit (internal flag).
NotSuspicious = 2305843009213693952User is exempt from automatic flagging (internal flag)
Partner = 4Fluxer partner badge.
RateLimitBypass = 140737488355328User can bypass rate limits (staff/special accounts, internal flag).
ReportBanned = 281474976710656User is banned from submitting reports (internal flag).
SelfDeleted = 68719476736User self-deleted their account (internal flag).
Spammer = 64User flagged as a spammer.
Staff = 1Fluxer staff member badge.
StaffHidden = 144115188075855872User staff status is hidden from public flags (internal flag)
VerifiedNotUnderage = 562949953421312User is verified as not underage (internal flag).
Remarks
User flags indicate special properties, badges, or statuses associated with a user account. These are typically set by the Fluxer platform and not directly modifiable by users.