/* Options: Date: 2025-01-18 08:52:16 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ListWebhookEventTypesRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* 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 { var EventTypes:IList? = null } open class WebhookEventTypeDto { var Name:String? = null var Description:String? = null var Id:Int? = null var Value:String? = null }