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

     1  package tdproto
     2  
     3  // Tariff for teams
     4  type Tariff struct {
     5  	// Tariff id
     6  	Uid string `json:"uid"`
     7  
     8  	// Title of tariff in enlish
     9  	TitleEn string `json:"title_en"`
    10  
    11  	// Title of tariff in russian
    12  	TitleRu string `json:"title_ru"`
    13  
    14  	// Price of tariff
    15  	Price string `json:"price,omitempty"`
    16  
    17  	// Cloud space reserved for storing team users uploads in megabytes
    18  	CloudSpace int64 `json:"cloud_space,omitempty"`
    19  
    20  	// Maximum allowed number of members in a team
    21  	MaxMembersInTeam int `json:"max_members_in_team,omitempty"`
    22  
    23  	// Maximum number of participants per call
    24  	MaxParticipantsPerCall int `json:"max_participants_per_call,omitempty"`
    25  
    26  	//maximum file size for uploading
    27  	MaxUploadFilesize int64 `json:"max_upload_filesize,omitempty"`
    28  }