/* Options: Date: 2025-08-05 02:31:34 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ReviewsStatisticsGetRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/comments-api/comments/reviews_statistics", "GET") class ReviewsStatisticsGetRequest implements IConvertible, IGet { List? ThreadKey; ReviewsStatisticsGetRequest({this.ThreadKey}); ReviewsStatisticsGetRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ThreadKey = JsonConverters.fromJson(json['ThreadKey'],'List',context!); return this; } Map toJson() => { 'ThreadKey': JsonConverters.toJson(ThreadKey,'List',context!) }; getTypeName() => "ReviewsStatisticsGetRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'ReviewsStatisticsGetRequest': TypeInfo(TypeOf.Class, create:() => ReviewsStatisticsGetRequest()), });