/* Options: Date: 2025-04-04 18:08:42 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.ValidateAttributesRequest.* //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, } class CustomAttributeValue implements IConvertible { int? CustomAttributeId; int? CustomAttributeValueId; int? InstanceId; String? StoredValue; String? TypeName; bool? ReadOnly; CustomAttributeValue({this.CustomAttributeId,this.CustomAttributeValueId,this.InstanceId,this.StoredValue,this.TypeName,this.ReadOnly}); CustomAttributeValue.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CustomAttributeId = json['CustomAttributeId']; CustomAttributeValueId = json['CustomAttributeValueId']; InstanceId = json['InstanceId']; StoredValue = json['StoredValue']; TypeName = json['TypeName']; ReadOnly = json['ReadOnly']; return this; } Map toJson() => { 'CustomAttributeId': CustomAttributeId, 'CustomAttributeValueId': CustomAttributeValueId, 'InstanceId': InstanceId, 'StoredValue': StoredValue, 'TypeName': TypeName, 'ReadOnly': ReadOnly }; getTypeName() => "CustomAttributeValue"; TypeContext? context = _ctx; } // @Route("/api/CustomAttribute/ValidateAttributes", "POST,GET") class ValidateAttributesRequest implements IReturnVoid, IConvertible { CustomAttributeTarget? Target; List? CustomAttributeValues; String? GroupName; int? Id; ValidateAttributesRequest({this.Target,this.CustomAttributeValues,this.GroupName,this.Id}); ValidateAttributesRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Target = JsonConverters.fromJson(json['Target'],'CustomAttributeTarget',context!); CustomAttributeValues = JsonConverters.fromJson(json['CustomAttributeValues'],'List',context!); GroupName = json['GroupName']; Id = json['Id']; return this; } Map toJson() => { 'Target': JsonConverters.toJson(Target,'CustomAttributeTarget',context!), 'CustomAttributeValues': JsonConverters.toJson(CustomAttributeValues,'List',context!), 'GroupName': GroupName, 'Id': Id }; createResponse() {} getTypeName() => "ValidateAttributesRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'CustomAttributeTarget': TypeInfo(TypeOf.Enum, enumValues:CustomAttributeTarget.values), 'CustomAttributeValue': TypeInfo(TypeOf.Class, create:() => CustomAttributeValue()), 'ValidateAttributesRequest': TypeInfo(TypeOf.Class, create:() => ValidateAttributesRequest()), 'List': TypeInfo(TypeOf.Class, create:() => []), });