/* Options: Date: 2026-08-20 13:05:42 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RecordsExemptionsRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class ExemptionDto implements IConvertible { String? Name; String? Citation; String? Clause; ExemptionDto({this.Name,this.Citation,this.Clause}); ExemptionDto.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Name = json['Name']; Citation = json['Citation']; Clause = json['Clause']; return this; } Map toJson() => { 'Name': Name, 'Citation': Citation, 'Clause': Clause }; getTypeName() => "ExemptionDto"; TypeContext? context = _ctx; } class RecordsExemptionsResponse implements IConvertible { ResponseStatus? ResponseStatus; List? Government = []; List? Standard = []; String? Mode; RecordsExemptionsResponse({this.ResponseStatus,this.Government,this.Standard,this.Mode}); RecordsExemptionsResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); Government = JsonConverters.fromJson(json['Government'],'List',context!); Standard = JsonConverters.fromJson(json['Standard'],'List',context!); Mode = json['Mode']; return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!), 'Government': JsonConverters.toJson(Government,'List',context!), 'Standard': JsonConverters.toJson(Standard,'List',context!), 'Mode': Mode }; getTypeName() => "RecordsExemptionsResponse"; TypeContext? context = _ctx; } // @Route("/v1/records/settings/exemptions", "GET,OPTIONS") class RecordsExemptionsRequest implements IReturn, IConvertible, IGet { RecordsExemptionsRequest(); RecordsExemptionsRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => RecordsExemptionsResponse(); getResponseTypeName() => "RecordsExemptionsResponse"; getTypeName() => "RecordsExemptionsRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'ExemptionDto': TypeInfo(TypeOf.Class, create:() => ExemptionDto()), 'RecordsExemptionsResponse': TypeInfo(TypeOf.Class, create:() => RecordsExemptionsResponse()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'RecordsExemptionsRequest': TypeInfo(TypeOf.Class, create:() => RecordsExemptionsRequest()), });