Module twitchpy.dataclasses.charity_campaign_donation
Classes
class CharityCampaignDonation (donation_id: str,
campaign_id: str,
user: User,
amount: CharityCampaignAmount)-
Expand source code
@dataclass class CharityCampaignDonation: """ Represents a donation made to a charity campaign Attributes: donation_id (str): An ID that identifies the donation campaign_id (str): An ID that identifies the charity campaign that the donation applies to user (User): The user that donated money to the campaign amount (CharityCampaignAmount): The amount of money that the user donated """ donation_id: str campaign_id: str user: User amount: CharityCampaignAmount
Represents a donation made to a charity campaign
Attributes
donation_id
:str
- An ID that identifies the donation
campaign_id
:str
- An ID that identifies the charity campaign that the donation applies to
user
:User
- The user that donated money to the campaign
amount
:CharityCampaignAmount
- The amount of money that the user donated
Class variables
var amount : CharityCampaignAmount
-
The type of the None singleton.
var campaign_id : str
-
The type of the None singleton.
var donation_id : str
-
The type of the None singleton.
var user : User
-
The type of the None singleton.