mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 08:40:29 +00: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"`
|
||
|
}
|