1
bot/models/invoice.go
2022-04-29 12:21:42 +03:00

11 lines
310 B
Go

package models
// Invoice https://core.telegram.org/bots/api#invoice
type Invoice struct {
Title string `json:"title"`
Description string `json:"description"`
StartParameter string `json:"start_parameter"`
Currency string `json:"currency"`
TotalAmount int `json:"total_amount"`
}