/* Options: Date: 2025-07-04 11:46:32 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: GetEntityThumbnail.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //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(){} }