/* Options: Date: 2025-05-04 22:42:25 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteIntegration.* //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.* /** * Delete the specified integration */ @Route(Path="/integrations/{integrationId}", Verbs="DELETE") @Api(Description="Delete the specified integration") open class DeleteIntegration : IReturnVoid, IDelete { /** * The ID of the integration to delete */ @ApiMember(Description="The ID of the integration to delete") open var integrationId:String? = null }