/* Options: Date: 2025-01-18 09:00:48 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: UpdateWebhookSettingsRequest.* //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/settings", Verbs="PUT") open class UpdateWebhookSettingsRequest : 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") var CompanyId:UUID? = null @Required() @ApiMember() var Enabled:Boolean? = null companion object { private val responseType = WebhookSettingsResponse::class.java } override fun getResponseType(): Any? = UpdateWebhookSettingsRequest.responseType } open class WebhookSettingsResponse { var Enabled:Boolean? = null var Message:String? = null var CompanyId:UUID? = null } open interface ICompany { var CompanyId:UUID? }