/* Options: Date: 2025-09-05 04:30:31 SwiftVersion: 5.0 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: GetCurrentProfileRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/profile/current", "GET") public class GetCurrentProfileRequest : GetOperationUnTenanted, IReturn { public typealias Return = GetCurrentProfileResponse required public init(){ super.init() } required public init(from decoder: Decoder) throws { try super.init(from: decoder) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) } } public class GetCurrentProfileResponse : Codable { public var responseStatus:ResponseStatus? public var profile:CurrentProfile? required public init(){} } public class GetOperationUnTenanted : IHasGetOptions, IGet, Codable { public var embed:String? required public init(){} } public protocol IHasGetOptions { var embed:String? { get set } } public class Profile : ProfileBasic { public var defaultOrganisationId:String? required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case defaultOrganisationId } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) defaultOrganisationId = try container.decodeIfPresent(String.self, forKey: .defaultOrganisationId) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if defaultOrganisationId != nil { try container.encode(defaultOrganisationId, forKey: .defaultOrganisationId) } } } public class CurrentProfile : Profile { public var isAuthenticated:Bool? public var roles:[String] = [] required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case isAuthenticated case roles } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) isAuthenticated = try container.decodeIfPresent(Bool.self, forKey: .isAuthenticated) roles = try container.decodeIfPresent([String].self, forKey: .roles) ?? [] } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if isAuthenticated != nil { try container.encode(isAuthenticated, forKey: .isAuthenticated) } if roles.count > 0 { try container.encode(roles, forKey: .roles) } } } public protocol IIdentifiableResource { var id:String? { get set } } public class PersonName : Codable { public var firstName:String? public var lastName:String? required public init(){} } public class ProfileBasic : IIdentifiableResource, Codable { public var name:PersonName? public var displayName:String? public var emailAddress:String? public var phoneNumber:String? public var timezone:String? public var id:String? required public init(){} }