/* Options: Date: 2026-03-31 17:04:39 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetEntityIdentifier.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //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(){} }