github.com/tada-team/tdproto@v1.51.57/node.go (about)

     1  package tdproto
     2  
     3  // Node (for external users)
     4  type Node struct {
     5  	// Node uid
     6  	Uid string `json:"uid"`
     7  
     8  	// Node title
     9  	Title string `json:"title"`
    10  
    11  	// Synchronization with node works
    12  	Enabled bool `json:"enabled"`
    13  }