/* Options: Date: 2025-07-04 10:37:53 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: GetEntitySummary.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Get the summary of an entity. */ // @Route("/entities/{EntityName}/{EntityID}/summary", "GET") // @Api(Description="Get the summary of an entity.") public class GetEntitySummary : IReturn, Codable { public typealias Return = EntitySummaryResponse /** * 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 EntitySummaryResponse : Codable { public var summary:String required public init(){} }