/* Options: Date: 2025-05-04 22:56:16 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: RestartFlow.* //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.* /** * Restarts the current flow */ @Route(Path="/flows/restart") @Api(Description="Restarts the current flow") open class RestartFlow : IReturnVoid { /** * The ID of the session */ @ApiMember(Description="The ID of the session") open var sessionId:String? = null }