/* Options: Date: 2025-09-15 11:44:34 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: UserAgreementQuery.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/users/agreement", "GET") // @ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") public class UserAgreementQuery : IReturn, Codable { public typealias Return = UserAgreementQueryResponse public var userId:String? required public init(){} } public class UserAgreementQueryResponse : Codable { public var userId:String? public var agreementId:String? public var userAgreementCreated:Date? public var agreedToLatest:Bool? public var documents:[String]? public var responseStatus:String? required public init(){} }