/* Options: Date: 2025-04-04 17:49: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: Command.SimpleContactCommandRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; 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; } abstract class ICommandResult { } class SimpleContactResult implements ICommandResult, IConvertible { String? MemberKey; SimpleContactResult({this.MemberKey}); SimpleContactResult.fromJson(Map json) { fromMap(json); } fromMap(Map json) { MemberKey = json['MemberKey']; return this; } Map toJson() => { 'MemberKey': MemberKey }; getTypeName() => "SimpleContactResult"; TypeContext? context = _ctx; } // @Route("/api/Command/SimpleContactCommand", "POST") class SimpleContactCommandRequest implements IReturn, IConvertible { List? Tags; List? CustomAttributes; String? Forenames; String? Surname; String? Email; String? Mobile; String? Message; DateTime? DateOfBirth; String? MemberName; String? ParentSurname; SimpleContactCommandRequest({this.Tags,this.CustomAttributes,this.Forenames,this.Surname,this.Email,this.Mobile,this.Message,this.DateOfBirth,this.MemberName,this.ParentSurname}); SimpleContactCommandRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Tags = JsonConverters.fromJson(json['Tags'],'List',context!); CustomAttributes = JsonConverters.fromJson(json['CustomAttributes'],'List',context!); Forenames = json['Forenames']; Surname = json['Surname']; Email = json['Email']; Mobile = json['Mobile']; Message = json['Message']; DateOfBirth = JsonConverters.fromJson(json['DateOfBirth'],'DateTime',context!); MemberName = json['MemberName']; ParentSurname = json['ParentSurname']; return this; } Map toJson() => { 'Tags': JsonConverters.toJson(Tags,'List',context!), 'CustomAttributes': JsonConverters.toJson(CustomAttributes,'List',context!), 'Forenames': Forenames, 'Surname': Surname, 'Email': Email, 'Mobile': Mobile, 'Message': Message, 'DateOfBirth': JsonConverters.toJson(DateOfBirth,'DateTime',context!), 'MemberName': MemberName, 'ParentSurname': ParentSurname }; createResponse() => SimpleContactResult(); getResponseTypeName() => "SimpleContactResult"; getTypeName() => "SimpleContactCommandRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'CustomAttributeValue': TypeInfo(TypeOf.Class, create:() => CustomAttributeValue()), 'ICommandResult': TypeInfo(TypeOf.Interface), 'SimpleContactResult': TypeInfo(TypeOf.Class, create:() => SimpleContactResult()), 'SimpleContactCommandRequest': TypeInfo(TypeOf.Class, create:() => SimpleContactCommandRequest()), 'List': TypeInfo(TypeOf.Class, create:() => []), });