/* Options: Date: 2025-04-04 17:49:01 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.AddProspectCommandRequest.* //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; } enum Gender { Unknown, Male, Female, Other, PreferNotToSay, } abstract class ICommandResult { } class AddProspectResult implements ICommandResult, IConvertible { int? MemberId; bool? IsExistingMember; String? MemberKey; String? AppRegistrationId; AddProspectResult({this.MemberId,this.IsExistingMember,this.MemberKey,this.AppRegistrationId}); AddProspectResult.fromJson(Map json) { fromMap(json); } fromMap(Map json) { MemberId = json['MemberId']; IsExistingMember = json['IsExistingMember']; MemberKey = json['MemberKey']; AppRegistrationId = json['AppRegistrationId']; return this; } Map toJson() => { 'MemberId': MemberId, 'IsExistingMember': IsExistingMember, 'MemberKey': MemberKey, 'AppRegistrationId': AppRegistrationId }; getTypeName() => "AddProspectResult"; TypeContext? context = _ctx; } // @Route("/api/Command/AddProspectCommand", "POST") class AddProspectCommandRequest implements IReturn, IConvertible { Gender? Gender; List? Tags; bool? AgreedToTerms; bool? IsOnlineJoining; bool? PhotoPermission; bool? FirstAidPermission; bool? GiftAidPermission; bool? OptInEmail; bool? OptInSms; bool? OptInNotification; bool? OptInPostal; bool? OptInTelephone; List? CustomAttributes; int? MemberId; String? Title; String? Forenames; String? Surname; String? CompanyName; String? Address1; String? Address2; String? City; String? County; String? Country; String? Postcode; DateTime? DateOfBirth; String? EmailAddress; String? HomePhone; String? MobilePhone; String? EmergencyContact; String? ParentName; String? ParentSurname; String? MedicalInformation; String? Recaptcha; AddProspectCommandRequest({this.Gender,this.Tags,this.AgreedToTerms,this.IsOnlineJoining,this.PhotoPermission,this.FirstAidPermission,this.GiftAidPermission,this.OptInEmail,this.OptInSms,this.OptInNotification,this.OptInPostal,this.OptInTelephone,this.CustomAttributes,this.MemberId,this.Title,this.Forenames,this.Surname,this.CompanyName,this.Address1,this.Address2,this.City,this.County,this.Country,this.Postcode,this.DateOfBirth,this.EmailAddress,this.HomePhone,this.MobilePhone,this.EmergencyContact,this.ParentName,this.ParentSurname,this.MedicalInformation,this.Recaptcha}); AddProspectCommandRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Gender = JsonConverters.fromJson(json['Gender'],'Gender',context!); Tags = JsonConverters.fromJson(json['Tags'],'List',context!); AgreedToTerms = json['AgreedToTerms']; IsOnlineJoining = json['IsOnlineJoining']; PhotoPermission = json['PhotoPermission']; FirstAidPermission = json['FirstAidPermission']; GiftAidPermission = json['GiftAidPermission']; OptInEmail = json['OptInEmail']; OptInSms = json['OptInSms']; OptInNotification = json['OptInNotification']; OptInPostal = json['OptInPostal']; OptInTelephone = json['OptInTelephone']; CustomAttributes = JsonConverters.fromJson(json['CustomAttributes'],'List',context!); MemberId = json['MemberId']; Title = json['Title']; Forenames = json['Forenames']; Surname = json['Surname']; CompanyName = json['CompanyName']; Address1 = json['Address1']; Address2 = json['Address2']; City = json['City']; County = json['County']; Country = json['Country']; Postcode = json['Postcode']; DateOfBirth = JsonConverters.fromJson(json['DateOfBirth'],'DateTime',context!); EmailAddress = json['EmailAddress']; HomePhone = json['HomePhone']; MobilePhone = json['MobilePhone']; EmergencyContact = json['EmergencyContact']; ParentName = json['ParentName']; ParentSurname = json['ParentSurname']; MedicalInformation = json['MedicalInformation']; Recaptcha = json['Recaptcha']; return this; } Map toJson() => { 'Gender': JsonConverters.toJson(Gender,'Gender',context!), 'Tags': JsonConverters.toJson(Tags,'List',context!), 'AgreedToTerms': AgreedToTerms, 'IsOnlineJoining': IsOnlineJoining, 'PhotoPermission': PhotoPermission, 'FirstAidPermission': FirstAidPermission, 'GiftAidPermission': GiftAidPermission, 'OptInEmail': OptInEmail, 'OptInSms': OptInSms, 'OptInNotification': OptInNotification, 'OptInPostal': OptInPostal, 'OptInTelephone': OptInTelephone, 'CustomAttributes': JsonConverters.toJson(CustomAttributes,'List',context!), 'MemberId': MemberId, 'Title': Title, 'Forenames': Forenames, 'Surname': Surname, 'CompanyName': CompanyName, 'Address1': Address1, 'Address2': Address2, 'City': City, 'County': County, 'Country': Country, 'Postcode': Postcode, 'DateOfBirth': JsonConverters.toJson(DateOfBirth,'DateTime',context!), 'EmailAddress': EmailAddress, 'HomePhone': HomePhone, 'MobilePhone': MobilePhone, 'EmergencyContact': EmergencyContact, 'ParentName': ParentName, 'ParentSurname': ParentSurname, 'MedicalInformation': MedicalInformation, 'Recaptcha': Recaptcha }; createResponse() => AddProspectResult(); getResponseTypeName() => "AddProspectResult"; getTypeName() => "AddProspectCommandRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'CustomAttributeValue': TypeInfo(TypeOf.Class, create:() => CustomAttributeValue()), 'Gender': TypeInfo(TypeOf.Enum, enumValues:Gender.values), 'ICommandResult': TypeInfo(TypeOf.Interface), 'AddProspectResult': TypeInfo(TypeOf.Class, create:() => AddProspectResult()), 'AddProspectCommandRequest': TypeInfo(TypeOf.Class, create:() => AddProspectCommandRequest()), 'List': TypeInfo(TypeOf.Class, create:() => []), });