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

35 lines
1.1 KiB
C#

// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using Description = System.ComponentModel.DescriptionAttribute;
/// Determines under what circumstances the frontend UI will attempt to gather
/// video evidence to support a report, and the object_type is defined in
/// AdvancedAbuseReportOptions.SetObjectType(). This setting is crucial in
/// ensuring that the reporting process is thorough and accurate, as video
/// evidence can provide valuable context and proof of misconduct.
public enum AbuseReportVideoMode : int
{
[Description("UNKNOWN")]
Unknown,
/// The UI will collect video evidence if the object_type supports it, the
/// object_type is defined in AdvancedAbuseReportOptions.SetObjectType().
[Description("COLLECT")]
Collect,
/// The UI will try to collect video evidence if the object_type supports it,
/// but will allow the user to skip that step if they wish.
[Description("OPTIONAL")]
Optional,
/// The UI will not collect video evidence.
[Description("SKIP")]
Skip,
}
}