private function validateInteraction(InlineChoiceInteraction $interaction)
 {
     if (!empty($interaction->mustShuffle())) {
         LogService::log('The attribute `shuffle` is not supported, thus is ignored');
     }
     if (!empty($interaction->isRequired())) {
         LogService::log('The attribute `required` is not supported, thus is ignored');
     }
     return $interaction;
 }