/* Options: Date: 2025-12-11 08:50:26 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://legalguard-api-dev.happen.zone //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetImage.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/image", "GET") // @Route("/image/{id}", "GET") class GetImage implements IConvertible, IGet { // @ApiMember(IsRequired=true) String? id; GetImage({this.id}); GetImage.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; getTypeName() => "GetImage"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'legalguard_api_dev.happen.zone', types: { 'GetImage': TypeInfo(TypeOf.Class, create:() => GetImage()), });