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