/* Options: Date: 2025-12-06 07:08:30 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BrandsGetRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ library BackofficeApi; import 'package:servicestack/servicestack.dart'; /** * Get all known brands. */ // @Route("/brand/all", "GET") class BrandsGetRequest implements IReturn>, IGet, IConvertible { BrandsGetRequest(); BrandsGetRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "BrandsGetRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'BackofficeApi', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'BackofficeBrandDto': TypeInfo(TypeOf.Class, create:() => BackofficeBrandDto()), 'BrandsGetRequest': TypeInfo(TypeOf.Class, create:() => BrandsGetRequest()), });