/* Options: Date: 2025-09-15 16:22:02 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: WebhookSettingsRequest.* //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/settings", Verbs="GET") open class WebhookSettingsRequest : IReturn, ICompany { /** * The company id, if empty will use the company id for the user you are logged in with. */ @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.", IsRequired=true, ParameterType="query") override var CompanyId:UUID? = null companion object { private val responseType = WebhookSettingsResponse::class.java } override fun getResponseType(): Any? = WebhookSettingsRequest.responseType } open class WebhookSettingsResponse { open var Enabled:Boolean? = null open var Message:String? = null open var CompanyId:UUID? = null } interface ICompany { var CompanyId:UUID? }