chat_boost_source_giveaway property
ChatBoostSourceGiveaway
get
chat_boost_source_giveaway
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
ChatBoostSourceGiveaway get chat_boost_source_giveaway {
try {
if (rawData["chat_boost_source_giveaway"] is Map == false) {
return ChatBoostSourceGiveaway({});
}
return ChatBoostSourceGiveaway(rawData["chat_boost_source_giveaway"] as Map);
} catch (e) {
return ChatBoostSourceGiveaway({});
}
}
set
chat_boost_source_giveaway
(ChatBoostSourceGiveaway value)
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
set chat_boost_source_giveaway(ChatBoostSourceGiveaway value) {
rawData["chat_boost_source_giveaway"] = value.toJson();
}