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

     1  package ravendb
     2  
     3  // SubscriptionState describes state of subscription
     4  type SubscriptionState struct {
     5  	Query                                 string  `json:"Query"`
     6  	ChangeVectorForNextBatchStartingPoint *string `json:"ChangeVectorForNextBatchStartingPoint"`
     7  	SubscriptionID                        int64   `json:"SubscriptionId"`
     8  	SubscriptionName                      string  `json:"SubscriptionName"`
     9  	MentorNode                            string  `json:"MentorNode"`
    10  	NodeTag                               string  `json:"NodeTag"`
    11  	LastBatchAckTime                      Time    `json:"LastBatchAckTime"`
    12  	LastClientConnectionTime              Time    `json:"LastClientConnectionTime"`
    13  	Disabled                              bool    `json:"Disabled"`
    14  }