/* Options: Date: 2025-01-18 08:00:42 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteWebhookEndpoint.* //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/endpoints/{id}", Verbs="DELETE") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) @ValidateRequest(Validator="IsAuthenticated") open class DeleteWebhookEndpoint : IReturnVoid, 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 /** * The ID of the webhook endpoint. */ @ApiMember(Description="The ID of the webhook endpoint.", IsRequired=true, ParameterType="path") var Id:String? = null } open interface ICompany { var CompanyId:UUID? }