/* Options: Date: 2024-12-29 03:39:50 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: SectionTAUpdateRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/Sections/TA/Update/{uuid}", "POST") class SectionTAUpdateRequest implements IReturn, IConvertible, IPost { String? uuid; String? authorizing_uuid; List? tA_regent_ids; SectionTAUpdateRequest({this.uuid,this.authorizing_uuid,this.tA_regent_ids}); SectionTAUpdateRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { uuid = json['uuid']; authorizing_uuid = json['authorizing_uuid']; tA_regent_ids = JsonConverters.fromJson(json['tA_regent_ids'],'List',context!); return this; } Map toJson() => { 'uuid': uuid, 'authorizing_uuid': authorizing_uuid, 'tA_regent_ids': JsonConverters.toJson(tA_regent_ids,'List',context!) }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "SectionTAUpdateRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'SectionTAUpdateRequest': TypeInfo(TypeOf.Class, create:() => SectionTAUpdateRequest()), });