/* Options: Date: 2025-12-06 05:24:55 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.sbbet.ath.cx //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CancelStimulation.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/cmd/stimulations/cancel") class CancelStimulation implements IReturn, IConvertible, IPost { String? id; CancelStimulation({this.id}); CancelStimulation.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "CancelStimulation"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 's4w2.api.sbbet.ath.cx', types: { 'CancelStimulation': TypeInfo(TypeOf.Class, create:() => CancelStimulation()), });