/* Options: Date: 2026-07-08 21:38:46 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: StaffPublicRespondRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/v1/staff/respond", "GET,OPTIONS") class StaffPublicRespondRequest implements IConvertible, IGet { String? Token; String? Action; String? Note; double? Rate; String? Start; StaffPublicRespondRequest({this.Token,this.Action,this.Note,this.Rate,this.Start}); StaffPublicRespondRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Token = json['Token']; Action = json['Action']; Note = json['Note']; Rate = JsonConverters.toDouble(json['Rate']); Start = json['Start']; return this; } Map toJson() => { 'Token': Token, 'Action': Action, 'Note': Note, 'Rate': Rate, 'Start': Start }; getTypeName() => "StaffPublicRespondRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'StaffPublicRespondRequest': TypeInfo(TypeOf.Class, create:() => StaffPublicRespondRequest()), });