1
bot/models/invoice.go

11 lines
310 B
Go
Raw Permalink Normal View History

2022-04-29 17:21:42 +08:00
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"`
}