We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d910fdb commit 0e37dceCopy full SHA for 0e37dce
src/Nest/XPack/Watcher/PutWatch/PutWatchResponse.cs
@@ -3,7 +3,6 @@
3
4
namespace Nest
5
{
6
- [ReadAs(typeof(PutWatchResponse))]
7
public class PutWatchResponse : ResponseBase
8
9
[DataMember(Name = "created")]
@@ -14,5 +13,11 @@ public class PutWatchResponse : ResponseBase
14
13
15
[DataMember(Name = "_version")]
16
public int Version { get; internal set; }
+
17
+ [DataMember(Name = "_seq_no")]
18
+ public long SequenceNumber { get; internal set; }
19
20
+ [DataMember(Name = "_primary_term")]
21
+ public long PrimaryTerm { get; internal set; }
22
}
23
0 commit comments