-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathLight.cs
More file actions
71 lines (61 loc) · 2.09 KB
/
Light.cs
File metadata and controls
71 lines (61 loc) · 2.09 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
68
69
70
71
/*
* Regula Document Reader Web API
*
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
*
* The version of the OpenAPI document: 8.1.0
* 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 = Regula.DocumentReader.WebClient.Client.FileParameter;
using OpenAPIDateConverter = Regula.DocumentReader.WebClient.Client.OpenAPIDateConverter;
namespace Regula.DocumentReader.WebClient.Model
{
/// <summary>
/// Image light index
/// </summary>
/// <value>Image light index</value>
public enum Light
{
/// <summary>
/// Enum OFF for value: 0
/// </summary>
OFF = 0,
/// <summary>
/// Enum WHITE_TOP for value: 2
/// </summary>
WHITE_TOP = 2,
/// <summary>
/// Enum WHITE_SIDE for value: 4
/// </summary>
WHITE_SIDE = 4,
/// <summary>
/// Enum WHITE for value: 6
/// </summary>
WHITE = 6,
/// <summary>
/// Enum IR for value: 24
/// </summary>
IR = 24,
/// <summary>
/// Enum UV for value: 128
/// </summary>
UV = 128,
/// <summary>
/// Enum AXIAL_WHITE for value: 3072
/// </summary>
AXIAL_WHITE = 3072
}
}