/* Options: Date: 2024-12-29 02:55:20 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CourseEvaluationSectionsRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/CourseEvaluation/Sections/{reportingTerm}", "POST") class CourseEvaluationSectionsRequest implements IReturn>, IConvertible, IPost { List? section_uuids; String? reporting_term; CourseEvaluationSectionsRequest({this.section_uuids,this.reporting_term}); CourseEvaluationSectionsRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { section_uuids = JsonConverters.fromJson(json['section_uuids'],'List',context!); reporting_term = json['reporting_term']; return this; } Map toJson() => { 'section_uuids': JsonConverters.toJson(section_uuids,'List',context!), 'reporting_term': reporting_term }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "CourseEvaluationSectionsRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'CourseEvaluationSectionsRequest': TypeInfo(TypeOf.Class, create:() => CourseEvaluationSectionsRequest()), });