VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.meta.xr.sdk.platform/Scripts/PermissionGrantStatus.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03:00

36 lines
1020 B
C#

// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using Description = System.ComponentModel.DescriptionAttribute;
/// This `enum` represents the all possible statuses of a permission request.
/// For example, if an user wants to participate in a challenge, the user may
/// request the permission to join the Models.Challenge first. If the
/// permission grant status is granted, the user can call Challenges.Join() to
/// join the challenge.
public enum PermissionGrantStatus : int
{
[Description("UNKNOWN")]
Unknown,
/// This `enum` member indicates the status of the permission grant was
/// approved.
[Description("GRANTED")]
Granted,
/// This `enum` member indicates the status of the permission grant was
/// rejected.
[Description("DENIED")]
Denied,
/// This `enum` member indicates the status of the permission grant was
/// blocked.
[Description("BLOCKED")]
Blocked,
}
}