/* Options: Date: 2025-07-04 10:34:55 SwiftVersion: 5.0 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: GetEntityIdentifier.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Returns the identifier information of an entity. */ // @Route("/entities/{EntityName}/{EntityID}", "GET") // @Api(Description="Returns the identifier information of an entity.") public class GetEntityIdentifier : IReturn, Codable { public typealias Return = CommonEntityIdentifier /** * ID of the entity */ // @ApiMember(Description="ID of the entity", IsRequired=true) public var entityID:String /** * Name of the entity */ // @ApiMember(Description="Name of the entity", IsRequired=true) public var entityName:String required public init(){} } public class CommonEntityIdentifier : Codable { public var id:String public var displayName:String public var entityName:String required public init(){} }