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

     1  package tdproto
     2  
     3  // Custom task status
     4  type TaskStatus struct {
     5  	// Status id
     6  	Uid string `json:"uid,omitempty"`
     7  
     8  	// Status sort ordering
     9  	SortOrdering uint `json:"sort_ordering"`
    10  
    11  	// Status internal name
    12  	Name string `json:"name"`
    13  
    14  	// Status localized name
    15  	Title string `json:"title"`
    16  
    17  	// Status not used anymore
    18  	IsArchive bool `json:"is_archive,omitempty"`
    19  }