/* Options: Date: 2026-05-19 05:43:20 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: OwnerSeriesTicketSeatingSectionsSearchRequest.* //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 OwnerSeriesTicketSeatingSectionsSearchResult implements IConvertible { List? ticketSeatingSections; int? statusCode; String? message; OwnerSeriesTicketSeatingSectionsSearchResult({this.ticketSeatingSections,this.statusCode,this.message}); OwnerSeriesTicketSeatingSectionsSearchResult.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ticketSeatingSections = JsonConverters.fromJson(json['ticketSeatingSections'],'List',context!); statusCode = json['statusCode']; message = json['message']; return this; } Map toJson() => { 'ticketSeatingSections': JsonConverters.toJson(ticketSeatingSections,'List',context!), 'statusCode': statusCode, 'message': message }; getTypeName() => "OwnerSeriesTicketSeatingSectionsSearchResult"; TypeContext? context = _ctx; } // @Route("/seriesTicketOwnerSeatingSections/Search", "POST") class OwnerSeriesTicketSeatingSectionsSearchRequest implements IReturn, IConvertible { int? ownerId; OwnerSeriesTicketSeatingSectionsSearchRequest({this.ownerId}); OwnerSeriesTicketSeatingSectionsSearchRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ownerId = json['ownerId']; return this; } Map toJson() => { 'ownerId': ownerId }; createResponse() => OwnerSeriesTicketSeatingSectionsSearchResult(); getResponseTypeName() => "OwnerSeriesTicketSeatingSectionsSearchResult"; getTypeName() => "OwnerSeriesTicketSeatingSectionsSearchRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'stubbur_app.azurewebsites.net', types: { 'EventSeriesTicketOwnerSeatingSection': TypeInfo(TypeOf.Class, create:() => EventSeriesTicketOwnerSeatingSection()), 'OwnerSeriesTicketSeatingSectionsSearchResult': TypeInfo(TypeOf.Class, create:() => OwnerSeriesTicketSeatingSectionsSearchResult()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'OwnerSeriesTicketSeatingSectionsSearchRequest': TypeInfo(TypeOf.Class, create:() => OwnerSeriesTicketSeatingSectionsSearchRequest()), });