mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-06-28 07:59:24 +00:00
20
vendor/github.com/SevereCloud/vksdk/v2/events/objects.go
generated
vendored
20
vendor/github.com/SevereCloud/vksdk/v2/events/objects.go
generated
vendored
@ -316,40 +316,40 @@ type LikeRemoveObject struct {
|
||||
|
||||
// DonutSubscriptionCreateObject struct.
|
||||
type DonutSubscriptionCreateObject struct {
|
||||
Amount int `json:"amount"`
|
||||
Amount float64 `json:"amount"`
|
||||
AmountWithoutFee float64 `json:"amount_without_fee"`
|
||||
UserID int `json:"user_id"`
|
||||
UserID float64 `json:"user_id"`
|
||||
}
|
||||
|
||||
// DonutSubscriptionProlongedObject struct.
|
||||
type DonutSubscriptionProlongedObject struct {
|
||||
Amount int `json:"amount"`
|
||||
Amount float64 `json:"amount"`
|
||||
AmountWithoutFee float64 `json:"amount_without_fee"`
|
||||
UserID int `json:"user_id"`
|
||||
UserID float64 `json:"user_id"`
|
||||
}
|
||||
|
||||
// DonutSubscriptionExpiredObject struct.
|
||||
type DonutSubscriptionExpiredObject struct {
|
||||
UserID int `json:"user_id"`
|
||||
UserID float64 `json:"user_id"`
|
||||
}
|
||||
|
||||
// DonutSubscriptionCancelledObject struct.
|
||||
type DonutSubscriptionCancelledObject struct {
|
||||
UserID int `json:"user_id"`
|
||||
UserID float64 `json:"user_id"`
|
||||
}
|
||||
|
||||
// DonutSubscriptionPriceChangedObject struct.
|
||||
type DonutSubscriptionPriceChangedObject struct {
|
||||
AmountOld int `json:"amount_old"`
|
||||
AmountNew int `json:"amount_new"`
|
||||
AmountOld float64 `json:"amount_old"`
|
||||
AmountNew float64 `json:"amount_new"`
|
||||
AmountDiff float64 `json:"amount_diff"`
|
||||
AmountDiffWithoutFee float64 `json:"amount_diff_without_fee"`
|
||||
UserID int `json:"user_id"`
|
||||
UserID float64 `json:"user_id"`
|
||||
}
|
||||
|
||||
// DonutMoneyWithdrawObject struct.
|
||||
type DonutMoneyWithdrawObject struct {
|
||||
Amount int `json:"amount"`
|
||||
Amount float64 `json:"amount"`
|
||||
AmountWithoutFee float64 `json:"amount_without_fee"`
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user