Нужен выбор отправки жалобы, боте telegram, python, telethon

Помогите пожалуйста, нужно чтобы в боте репортеры, можно было выбрать тип жалобы:

InputReportReasonChildAbuse InputReportReasonCopyright InputReportReasonFake InputReportReasonGeoIrrelevant InputReportReasonIllegalDrugs InputReportReasonOther InputReportReasonPersonalDetails InputReportReasonPornography InputReportReasonSpam

Вот сам код

try:
            entity = await client.get_entity(chat)
            result = await client(ReportRequest(
                peer=entity,
                id=[message_id],
                reason=InputReportReasonSpam(),
                message="В этом сообщении наблюдается спам."
                        print("Жалоба успешно отправлена.")

            await client.disconnect()

        except Exception as e:
            await client.disconnect()
            print(e)

Ответы (0 шт):