mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-22 02:32:02 -08:00
10 lines
274 B
Go
10 lines
274 B
Go
|
package object
|
||
|
|
||
|
// DonutDonatorSubscriptionInfo struct.
|
||
|
type DonutDonatorSubscriptionInfo struct {
|
||
|
OwnerID int `json:"owner_id"`
|
||
|
NextPaymentDate int `json:"next_payment_date"`
|
||
|
Amount int `json:"amount"`
|
||
|
Status string `json:"status"`
|
||
|
}
|