/* Options: Date: 2025-05-04 23:04:40 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: RestartFlow.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Restarts the current flow */ // @Route("/flows/restart") // @Api(Description="Restarts the current flow") public class RestartFlow : IReturnVoid, Codable { /** * The ID of the session */ // @ApiMember(Description="The ID of the session") public var sessionId:String? required public init(){} }