File tree Expand file tree Collapse file tree 2 files changed +2
-52
lines changed
Scripts/Services/Discovery/v1/Models Expand file tree Collapse file tree 2 files changed +2
-52
lines changed Original file line number Diff line number Diff line change @@ -27,28 +27,6 @@ namespace IBM.Watson.DeveloperCloud.Services.Discovery.v1
27
27
[ fsObject ]
28
28
public class LogQueryResponseResult
29
29
{
30
- /// <summary>
31
- /// The type of log entry returned.
32
- ///
33
- /// **query** indicates that the log represents the results of a call to the single collection **query**
34
- /// method.
35
- ///
36
- /// **event** indicates that the log represents a call to the **events** API.
37
- /// </summary>
38
- public enum DocumentTypeEnum
39
- {
40
- /// <summary>
41
- /// Enum query for query
42
- /// </summary>
43
- [ EnumMember ( Value = "query" ) ]
44
- query ,
45
- /// <summary>
46
- /// Enum _event for event
47
- /// </summary>
48
- [ EnumMember ( Value = "event" ) ]
49
- _event
50
- }
51
-
52
30
/// <summary>
53
31
/// The type of event that this object respresents. Possible values are
54
32
///
@@ -91,7 +69,7 @@ public enum ResultTypeEnum
91
69
/// **event** indicates that the log represents a call to the **events** API.
92
70
/// </summary>
93
71
[ fsProperty ( "document_type" ) ]
94
- public DocumentTypeEnum ? DocumentType { get ; set ; }
72
+ public string DocumentType { get ; set ; }
95
73
/// <summary>
96
74
/// The type of event that this object respresents. Possible values are
97
75
///
Original file line number Diff line number Diff line change @@ -26,39 +26,11 @@ namespace IBM.Watson.DeveloperCloud.Services.Discovery.v1
26
26
[ fsObject ]
27
27
public class TokenDictStatusResponse
28
28
{
29
- /// <summary>
30
- /// Current tokenization dictionary status for the specified collection.
31
- /// </summary>
32
- /// <value>
33
- /// Current tokenization dictionary status for the specified collection.
34
- /// </value>
35
- public enum StatusEnum
36
- {
37
-
38
- /// <summary>
39
- /// Enum ACTIVE for active
40
- /// </summary>
41
- [ EnumMember ( Value = "active" ) ]
42
- ACTIVE ,
43
-
44
- /// <summary>
45
- /// Enum PENDING for pending
46
- /// </summary>
47
- [ EnumMember ( Value = "pending" ) ]
48
- PENDING ,
49
-
50
- /// <summary>
51
- /// Enum NOT_FOUND for not found
52
- /// </summary>
53
- [ EnumMember ( Value = "not found" ) ]
54
- NOT_FOUND
55
- }
56
-
57
29
/// <summary>
58
30
/// Current tokenization dictionary status for the specified collection.
59
31
/// </summary>
60
32
[ fsProperty ( "status" ) ]
61
- public StatusEnum ? Status { get ; set ; }
33
+ public string Status { get ; set ; }
62
34
/// <summary>
63
35
/// The type for this dictionary. Always returns `tokenization_dictionary`.
64
36
/// </summary>
You can’t perform that action at this time.
0 commit comments