/* Options: Date: 2026-03-31 18:44:26 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dogw.klokgroep.nl/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetEntityThumbnail.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Get the thumbnail of an entity. */ // @Route("/entities/{EntityName}/{EntityID}/thumbnail", "GET") // @Api(Description="Get the thumbnail of an entity.") public class GetEntityThumbnail : IReturn, Codable { public typealias Return = [UInt8] /** * 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(){} }