/* Options: Date: 2025-05-06 16:08:01 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: OwnerSeriesTicketSeatingSectionRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class EventSeriesTicketOwnerSeatingSection implements IConvertible { int? id; int? eventSeriesTicketTypeId; int? eventSeriesOwnerSeatingSectionId; int? ownerId; bool? eventSeriesTicketAllowed; EventSeriesTicketOwnerSeatingSection({this.id,this.eventSeriesTicketTypeId,this.eventSeriesOwnerSeatingSectionId,this.ownerId,this.eventSeriesTicketAllowed}); EventSeriesTicketOwnerSeatingSection.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; eventSeriesTicketTypeId = json['eventSeriesTicketTypeId']; eventSeriesOwnerSeatingSectionId = json['eventSeriesOwnerSeatingSectionId']; ownerId = json['ownerId']; eventSeriesTicketAllowed = json['eventSeriesTicketAllowed']; return this; } Map toJson() => { 'id': id, 'eventSeriesTicketTypeId': eventSeriesTicketTypeId, 'eventSeriesOwnerSeatingSectionId': eventSeriesOwnerSeatingSectionId, 'ownerId': ownerId, 'eventSeriesTicketAllowed': eventSeriesTicketAllowed }; getTypeName() => "EventSeriesTicketOwnerSeatingSection"; TypeContext? context = _ctx; } class OwnerSeriesTicketSeatingSectionResult implements IConvertible { EventSeriesTicketOwnerSeatingSection? ticketSeatingSection; int? statusCode; String? message; OwnerSeriesTicketSeatingSectionResult({this.ticketSeatingSection,this.statusCode,this.message}); OwnerSeriesTicketSeatingSectionResult.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ticketSeatingSection = JsonConverters.fromJson(json['ticketSeatingSection'],'EventSeriesTicketOwnerSeatingSection',context!); statusCode = json['statusCode']; message = json['message']; return this; } Map toJson() => { 'ticketSeatingSection': JsonConverters.toJson(ticketSeatingSection,'EventSeriesTicketOwnerSeatingSection',context!), 'statusCode': statusCode, 'message': message }; getTypeName() => "OwnerSeriesTicketSeatingSectionResult"; TypeContext? context = _ctx; } // @Route("/seriesTicketOwnerSeatingSection", "GET PUT POST") class OwnerSeriesTicketSeatingSectionRequest implements IReturn, IConvertible { EventSeriesTicketOwnerSeatingSection? ticketSeatingSection; OwnerSeriesTicketSeatingSectionRequest({this.ticketSeatingSection}); OwnerSeriesTicketSeatingSectionRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ticketSeatingSection = JsonConverters.fromJson(json['ticketSeatingSection'],'EventSeriesTicketOwnerSeatingSection',context!); return this; } Map toJson() => { 'ticketSeatingSection': JsonConverters.toJson(ticketSeatingSection,'EventSeriesTicketOwnerSeatingSection',context!) }; createResponse() => OwnerSeriesTicketSeatingSectionResult(); getResponseTypeName() => "OwnerSeriesTicketSeatingSectionResult"; getTypeName() => "OwnerSeriesTicketSeatingSectionRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'stubbur_autoupdates_live.smartnewapis.com', types: { 'EventSeriesTicketOwnerSeatingSection': TypeInfo(TypeOf.Class, create:() => EventSeriesTicketOwnerSeatingSection()), 'OwnerSeriesTicketSeatingSectionResult': TypeInfo(TypeOf.Class, create:() => OwnerSeriesTicketSeatingSectionResult()), 'OwnerSeriesTicketSeatingSectionRequest': TypeInfo(TypeOf.Class, create:() => OwnerSeriesTicketSeatingSectionRequest()), });