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