github.com/altipla-consulting/ravendb-go-client@v0.1.3/leader_stamp.go (about)

     1  package ravendb
     2  
     3  // LeaderStamp describes leader stamp
     4  type LeaderStamp struct {
     5  	Index        int64 `json:"Index"`
     6  	Term         int64 `json:"Term"`
     7  	LeadersTicks int64 `json:"LeadersTicks"`
     8  }