/* Options: Date: 2024-10-06 10:33:59 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: CRMApplicationRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/DynamicsCRM/Application/{regent_id}", "POST") class CRMApplicationRequest implements IReturn>, IConvertible, IPost { int? regent_id; CRMApplicationRequest({this.regent_id}); CRMApplicationRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { regent_id = json['regent_id']; return this; } Map toJson() => { 'regent_id': regent_id }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "CRMApplicationRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'CRMApplicationRequest': TypeInfo(TypeOf.Class, create:() => CRMApplicationRequest()), });