/* Options: Date: 2025-12-06 05:25:07 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: FFSectionTypeRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class FFSectionType implements IConvertible { int? Id; String? Name; bool? CanDuplicate; FFSectionType({this.Id,this.Name,this.CanDuplicate}); FFSectionType.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; Name = json['Name']; CanDuplicate = json['CanDuplicate']; return this; } Map toJson() => { 'Id': Id, 'Name': Name, 'CanDuplicate': CanDuplicate }; getTypeName() => "FFSectionType"; TypeContext? context = _ctx; } class FFSectionTypeResponse implements IConvertible { ResponseStatus? ResponseStatus; List? FFSectionType = []; FFSectionTypeResponse({this.ResponseStatus,this.FFSectionType}); FFSectionTypeResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); FFSectionType = JsonConverters.fromJson(json['FFSectionType'],'List',context!); return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!), 'FFSectionType': JsonConverters.toJson(FFSectionType,'List',context!) }; getTypeName() => "FFSectionTypeResponse"; TypeContext? context = _ctx; } // @Route("/v1/FFSectionType", "GET") class FFSectionTypeRequest implements IReturn, IConvertible, IGet { FFSectionTypeRequest(); FFSectionTypeRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => FFSectionTypeResponse(); getResponseTypeName() => "FFSectionTypeResponse"; getTypeName() => "FFSectionTypeRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'FFSectionType': TypeInfo(TypeOf.Class, create:() => FFSectionType()), 'FFSectionTypeResponse': TypeInfo(TypeOf.Class, create:() => FFSectionTypeResponse()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'FFSectionTypeRequest': TypeInfo(TypeOf.Class, create:() => FFSectionTypeRequest()), });