update_message_interaction_info property

UpdateMessageInteractionInfo get update_message_interaction_info

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

UpdateMessageInteractionInfo get update_message_interaction_info {
  try {
    if (rawData["update_message_interaction_info"] is Map == false) {
      return UpdateMessageInteractionInfo({});
    }
    return UpdateMessageInteractionInfo(rawData["update_message_interaction_info"] as Map);
  } catch (e) {
    return UpdateMessageInteractionInfo({});
  }
}
set update_message_interaction_info (UpdateMessageInteractionInfo value)

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

set update_message_interaction_info(UpdateMessageInteractionInfo value) {
  rawData["update_message_interaction_info"] = value.toJson();
}