/* Options: Date: 2026-06-28 01:11:10 SwiftVersion: 5.0 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: GetLegalApprovalConfigRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/WorkflowStep/legal-approval-config", "Get") public class GetLegalApprovalConfigRequest : IReturn, Codable { public typealias Return = GetLegalApprovalConfigResponse public var workflowId:Int required public init(){} } public class GetLegalApprovalConfigResponse : IResponseRequest, Codable { public var code:Int public var message:String public var enabled:Bool public var approvers:[StampClerkOption] = [] required public init(){} } public protocol IResponseRequest { var code:Int { get set } var message:String { get set } } public class StampClerkOption : Codable { public var id:Int public var fullName:String public var departmentName:String required public init(){} }