-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathContentFilter.cs
More file actions
67 lines (59 loc) 路 1.77 KB
/
Copy pathContentFilter.cs
File metadata and controls
67 lines (59 loc) 路 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* VRChat API Documentation
*
*
* The version of the OpenAPI document: 1.20.8
* Contact: vrchatapi.lpv0t@aries.fyi
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.IO;
using System.Runtime.Serialization;
using System.Text;
using System.Text.RegularExpressions;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Linq;
using System.ComponentModel.DataAnnotations;
using FileParameter = VRChat.API.Client.FileParameter;
using OpenAPIDateConverter = VRChat.API.Client.OpenAPIDateConverter;
namespace VRChat.API.Model
{
/// <summary>
/// Flags for content filtering
/// </summary>
/// <value>Flags for content filtering</value>
[JsonConverter(typeof(StringEnumConverter))]
public enum ContentFilter
{
/// <summary>
/// Enum ContentAdult for value: content_adult
/// </summary>
[EnumMember(Value = "content_adult")]
ContentAdult = 1,
/// <summary>
/// Enum ContentGore for value: content_gore
/// </summary>
[EnumMember(Value = "content_gore")]
ContentGore = 2,
/// <summary>
/// Enum ContentHorror for value: content_horror
/// </summary>
[EnumMember(Value = "content_horror")]
ContentHorror = 3,
/// <summary>
/// Enum ContentSex for value: content_sex
/// </summary>
[EnumMember(Value = "content_sex")]
ContentSex = 4,
/// <summary>
/// Enum ContentViolence for value: content_violence
/// </summary>
[EnumMember(Value = "content_violence")]
ContentViolence = 5
}
}