/* Options: Date: 2025-12-06 05:19:52 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://dev-optimization.adumen.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CacheExpireRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/cache-expire", "POST,GET") class CacheExpireRequest implements IConvertible, IPost { String? key; bool? isStartsWidth; CacheExpireRequest({this.key,this.isStartsWidth}); CacheExpireRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { key = json['key']; isStartsWidth = json['isStartsWidth']; return this; } Map toJson() => { 'key': key, 'isStartsWidth': isStartsWidth }; getTypeName() => "CacheExpireRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'dev_optimization.adumen.com', types: { 'CacheExpireRequest': TypeInfo(TypeOf.Class, create:() => CacheExpireRequest()), });