/* Options: Date: 2024-09-30 10:21:23 SwiftVersion: 5.0 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: UnSyncedUsers.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/unsyncedusers/", "GET") public class UnSyncedUsers : IReturn, Codable { public typealias Return = UnSyncedUsersResponse /** * Id of the company */ // @ApiMember(Description="Id of the company", IsRequired=true, ParameterType="path") public var companyId:String? required public init(){} } public class UnSyncedUsersResponse : Codable { public var companyId:String public var unSyncedUsers:[UnSyncedUserResponse] = [] required public init(){} } public class UnSyncedUserResponse : Codable { public var email:String public var inDb:Bool public var inKeyCloak:Bool public var errorGettingValuesFromKeyCloak:Bool required public init(){} }