using System.Text.Json.Serialization;
namespace AIStudio.Assistants.VisualBriefing;
///
/// Defines VisualBriefingProtectionLevel for the visual briefing feature.
///
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum VisualBriefingProtectionLevel
{
///
/// Defines PUBLIC for the visual briefing feature.
///
PUBLIC,
///
/// Defines INTERNAL for the visual briefing feature.
///
INTERNAL,
///
/// Defines PRIVATE for the visual briefing feature.
///
PRIVATE,
///
/// Defines CONFIDENTIAL for the visual briefing feature.
///
CONFIDENTIAL,
///
/// Defines OTHER for the visual briefing feature.
///
OTHER,
}