/* Options: Date: 2025-04-04 18:03:51 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.AddToTasterSessionCommandRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; abstract class ICommandResult { } class AddToTasterSessionResult implements ICommandResult, IConvertible { String? MemberKey; String? AddToCalendarHtml; AddToTasterSessionResult({this.MemberKey,this.AddToCalendarHtml}); AddToTasterSessionResult.fromJson(Map json) { fromMap(json); } fromMap(Map json) { MemberKey = json['MemberKey']; AddToCalendarHtml = json['AddToCalendarHtml']; return this; } Map toJson() => { 'MemberKey': MemberKey, 'AddToCalendarHtml': AddToCalendarHtml }; getTypeName() => "AddToTasterSessionResult"; TypeContext? context = _ctx; } // @Route("/api/Command/AddToTasterSessionCommand", "POST") class AddToTasterSessionCommandRequest implements IReturn, IConvertible { int? BookingId; bool? AgreedToTerms; List? Tags; String? Forenames; String? Surname; String? Email; String? Mobile; String? MedicalInformation; String? DateOfBirth; String? MemberName; String? ParentSurname; AddToTasterSessionCommandRequest({this.BookingId,this.AgreedToTerms,this.Tags,this.Forenames,this.Surname,this.Email,this.Mobile,this.MedicalInformation,this.DateOfBirth,this.MemberName,this.ParentSurname}); AddToTasterSessionCommandRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { BookingId = json['BookingId']; AgreedToTerms = json['AgreedToTerms']; Tags = JsonConverters.fromJson(json['Tags'],'List',context!); Forenames = json['Forenames']; Surname = json['Surname']; Email = json['Email']; Mobile = json['Mobile']; MedicalInformation = json['MedicalInformation']; DateOfBirth = json['DateOfBirth']; MemberName = json['MemberName']; ParentSurname = json['ParentSurname']; return this; } Map toJson() => { 'BookingId': BookingId, 'AgreedToTerms': AgreedToTerms, 'Tags': JsonConverters.toJson(Tags,'List',context!), 'Forenames': Forenames, 'Surname': Surname, 'Email': Email, 'Mobile': Mobile, 'MedicalInformation': MedicalInformation, 'DateOfBirth': DateOfBirth, 'MemberName': MemberName, 'ParentSurname': ParentSurname }; createResponse() => AddToTasterSessionResult(); getResponseTypeName() => "AddToTasterSessionResult"; getTypeName() => "AddToTasterSessionCommandRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'ICommandResult': TypeInfo(TypeOf.Interface), 'AddToTasterSessionResult': TypeInfo(TypeOf.Class, create:() => AddToTasterSessionResult()), 'AddToTasterSessionCommandRequest': TypeInfo(TypeOf.Class, create:() => AddToTasterSessionCommandRequest()), });