/* Options: Date: 2025-09-10 19:35:42 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-optimization.power.dev //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.power.dev', types: { 'CacheExpireRequest': TypeInfo(TypeOf.Class, create:() => CacheExpireRequest()), });