/* Options: Date: 2025-04-04 18:24:00 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FileAttachmentService.GetPublicAllowedImagesRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/api/FileAttachment/GetPublicAllowedImages", "POST,GET") class GetPublicAllowedImagesRequest implements IReturn>, IConvertible { bool? IncludeBranch; bool? IncludeAchievements; bool? IncludeInstructors; bool? IncludeProducts; GetPublicAllowedImagesRequest({this.IncludeBranch,this.IncludeAchievements,this.IncludeInstructors,this.IncludeProducts}); GetPublicAllowedImagesRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { IncludeBranch = json['IncludeBranch']; IncludeAchievements = json['IncludeAchievements']; IncludeInstructors = json['IncludeInstructors']; IncludeProducts = json['IncludeProducts']; return this; } Map toJson() => { 'IncludeBranch': IncludeBranch, 'IncludeAchievements': IncludeAchievements, 'IncludeInstructors': IncludeInstructors, 'IncludeProducts': IncludeProducts }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetPublicAllowedImagesRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'GetPublicAllowedImagesRequest': TypeInfo(TypeOf.Class, create:() => GetPublicAllowedImagesRequest()), });