/* Options: Date: 2025-07-04 11:01:04 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetEntityThumbnail.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Get the thumbnail of an entity. */ // @Route("/entities/{EntityName}/{EntityID}/thumbnail", "GET") // @Api(Description="Get the thumbnail of an entity.") class GetEntityThumbnail implements IReturn, IConvertible, IGet { /** * ID of the entity */ // @ApiMember(Description="ID of the entity", IsRequired=true) String? EntityID; /** * Name of the entity */ // @ApiMember(Description="Name of the entity", IsRequired=true) String? EntityName; GetEntityThumbnail({this.EntityID,this.EntityName}); GetEntityThumbnail.fromJson(Map json) { fromMap(json); } fromMap(Map json) { EntityID = json['EntityID']; EntityName = json['EntityName']; return this; } Map toJson() => { 'EntityID': EntityID, 'EntityName': EntityName }; createResponse() => Uint8List(0); getResponseTypeName() => "Uint8List"; getTypeName() => "GetEntityThumbnail"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'GetEntityThumbnail': TypeInfo(TypeOf.Class, create:() => GetEntityThumbnail()), });