blob: 05900cb607cf6a8d4912e87612524954aeab7977 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package models
type TelegramPhoneResponse struct {
Identifier string `json:"identifier"`
PhoneNumber string `json:"phone_number"`
Credits struct {
Remaining int `json:"remaining"`
Unlimited bool `json:"unlimited"`
} `json:"credits"`
Message string `json:"message,omitempty"`
Error string `json:"error,omitempty"`
}
|