11 lines
310 B
Go
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"`
|
||
|
}
|