/* Options: Date: 2026-06-01 15:36:05 SwiftVersion: 5.0 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://imzagerservices.eyyubiye.bel.tr //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: StartFlow.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/StartFlow/{ClientKey}") public class StartFlow : IReturn, Codable { public typealias Return = StartFlowResponse public var clientKey:String public var authorizationID:String public var docID:String required public init(){} } public class StartFlowResponse : Codable { public var result:Bool public var serviceSuccessResult:Bool public var errorMesage:String required public init(){} }