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

     1  package tdproto
     2  
     3  // Country for phone numbers selection on login screen
     4  type Country struct {
     5  	// Phone code
     6  	Code string `json:"code"`
     7  
     8  	// Country ISO code
     9  	Iso string `json:"iso"`
    10  
    11  	// Country name
    12  	Name string `json:"name"`
    13  
    14  	// Selected by default
    15  	Default bool `json:"default,omitempty"`
    16  
    17  	// Is popular, need to cache
    18  	Popular bool `json:"popular,omitempty"`
    19  }