OBJECT

SubscriptionGift

Gift information for a subscription benefit.

link GraphQL Schema definition

1type SubscriptionGift {
2
3# giftDate is the date that the gift was given.
4giftDate: Time
5
6# Gifter is the user who sent the gift. Will be nil if isGift is false or is the
7# gift is anonymous.
8gifter: User
9
10# isGift says whether the subscription benefit is a gift or not.
11isGift: Boolean!
12
13}