/* Options: Date: 2024-09-19 17:36:56 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://support.bettor-dual-stage.webhop.biz //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AcceptSupportRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/support/request/accept", "POST") class AcceptSupportRequest implements IReturn, IConvertible, IPost { String? deviceId; AcceptSupportRequest({this.deviceId}); AcceptSupportRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { deviceId = json['deviceId']; return this; } Map toJson() => { 'deviceId': deviceId }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "AcceptSupportRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'support.bettor_dual_stage.webhop.biz', types: { 'AcceptSupportRequest': TypeInfo(TypeOf.Class, create:() => AcceptSupportRequest()), });