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

     1  package tdproto
     2  
     3  // Chat wallpaper
     4  type Wallpaper struct {
     5  	// Unique identifier
     6  	Key string `json:"key"`
     7  
     8  	// Localized description
     9  	Name string `json:"name"`
    10  
    11  	// Url to jpg or png
    12  	Url string `json:"url"`
    13  }