/* Options: Date: 2025-01-18 08:36:19 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: WebhookSettingsRequest.* //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="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") var CompanyId:UUID? = null companion object { private val responseType = WebhookSettingsResponse::class.java } override fun getResponseType(): Any? = WebhookSettingsRequest.responseType } open class WebhookSettingsResponse { var Enabled:Boolean? = null var Message:String? = null var CompanyId:UUID? = null } open interface ICompany { var CompanyId:UUID? }