// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.KWS { /// /// An enumeration of the different permission statuses. /// public enum KWSPermissionStatus : int { /// /// Permission has been granted /// Granted = 0, /// /// Permission has been rejected /// Rejected = 1, /// /// Permission is still pending approval /// Pending = 2 } }