| Name | Type | Description | Notes |
|---|---|---|---|
| total_result_size | int | ||
| data | List[GiveawayPoolNotificationData] | The array of giveaway pool notifications. | |
| notification_type | str | The type of notification. |
from talon_one.models.giveaway_pool_notification import GiveawayPoolNotification
# TODO update the JSON string below
json = "{}"
# create an instance of GiveawayPoolNotification from a JSON string
giveaway_pool_notification_instance = GiveawayPoolNotification.from_json(json)
# print the JSON string representation of the object
print(GiveawayPoolNotification.to_json())
# convert the object into a dict
giveaway_pool_notification_dict = giveaway_pool_notification_instance.to_dict()
# create an instance of GiveawayPoolNotification from a dict
giveaway_pool_notification_from_dict = GiveawayPoolNotification.from_dict(giveaway_pool_notification_dict)