/* Options: Date: 2025-09-15 03:09:13 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ListWebhookEventTypesRequest.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/webhook/eventtypes", Verbs="GET") open class ListWebhookEventTypesRequest : IReturn { companion object { private val responseType = WebhookEventTypesResponse::class.java } override fun getResponseType(): Any? = ListWebhookEventTypesRequest.responseType } open class WebhookEventTypesResponse { open var EventTypes:IList? = null } open class WebhookEventTypeDto { open var Name:String? = null open var Description:String? = null open var Id:Int? = null open var Value:String? = null }