/* Options: Date: 2025-04-04 18:05:23 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: CustomAttributeService.GetAttributesRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; enum CustomAttributeTarget { Member, PaymentMethod, Membership, MembershipReview, PaymentGateway, PaymentGatewayType, User, Booking, Staff, } // @Flags() class CustomAttributeModeFlags { static const CustomAttributeModeFlags Insert = const CustomAttributeModeFlags._(1); static const CustomAttributeModeFlags Update = const CustomAttributeModeFlags._(2); static const CustomAttributeModeFlags All = const CustomAttributeModeFlags._(3); static const CustomAttributeModeFlags Public = const CustomAttributeModeFlags._(4); final int _value; const CustomAttributeModeFlags._(this._value); int get value => _value; static List get values => const [Insert,Update,All,Public]; } // @Route("/api/CustomAttribute/GetAttributes", "POST,GET") class GetAttributesRequest implements IReturn>, IConvertible { CustomAttributeTarget? Target; CustomAttributeModeFlags? Flags; bool? IsMemberFacing; String? GroupName; int? Id; GetAttributesRequest({this.Target,this.Flags,this.IsMemberFacing,this.GroupName,this.Id}); GetAttributesRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Target = JsonConverters.fromJson(json['Target'],'CustomAttributeTarget',context!); Flags = JsonConverters.fromJson(json['Flags'],'CustomAttributeModeFlags',context!); IsMemberFacing = json['IsMemberFacing']; GroupName = json['GroupName']; Id = json['Id']; return this; } Map toJson() => { 'Target': JsonConverters.toJson(Target,'CustomAttributeTarget',context!), 'Flags': JsonConverters.toJson(Flags,'CustomAttributeModeFlags',context!), 'IsMemberFacing': IsMemberFacing, 'GroupName': GroupName, 'Id': Id }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetAttributesRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'CustomAttributeTarget': TypeInfo(TypeOf.Enum, enumValues:CustomAttributeTarget.values), 'CustomAttributeModeFlags': TypeInfo(TypeOf.Enum, enumValues:CustomAttributeModeFlags.values), 'GetAttributesRequest': TypeInfo(TypeOf.Class, create:() => GetAttributesRequest()), });