/* Options: Date: 2025-05-04 22:32:33 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: DeleteFlow.* //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.* /** * Deletes the specified flow */ @Route(Path="/flows/{flowId}", Verbs="DELETE") @Api(Description="Deletes the specified flow") open class DeleteFlow : IReturnVoid, IDelete { /** * The ID of the flow to delete */ @ApiMember(Description="The ID of the flow to delete") open var flowId:String? = null }