/* Options: Date: 2026-08-17 09:17:23 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: SetSeatingSaleVisibilityRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class SetSeatingSaleVisibilityResult implements IConvertible { int? updatedCount; int? statusCode; String? message; SetSeatingSaleVisibilityResult({this.updatedCount,this.statusCode,this.message}); SetSeatingSaleVisibilityResult.fromJson(Map json) { fromMap(json); } fromMap(Map json) { updatedCount = json['updatedCount']; statusCode = json['statusCode']; message = json['message']; return this; } Map toJson() => { 'updatedCount': updatedCount, 'statusCode': statusCode, 'message': message }; getTypeName() => "SetSeatingSaleVisibilityResult"; TypeContext? context = _ctx; } // @Route("/SeatingTicketTypeConnection/SaleVisibility", "PUT") class SetSeatingSaleVisibilityRequest implements IReturn, IConvertible { int? connectionId; int? ticketTypeId; bool? isSeriesTicketType; int? eventId; bool? hiddenFromSale; SetSeatingSaleVisibilityRequest({this.connectionId,this.ticketTypeId,this.isSeriesTicketType,this.eventId,this.hiddenFromSale}); SetSeatingSaleVisibilityRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { connectionId = json['connectionId']; ticketTypeId = json['ticketTypeId']; isSeriesTicketType = json['isSeriesTicketType']; eventId = json['eventId']; hiddenFromSale = json['hiddenFromSale']; return this; } Map toJson() => { 'connectionId': connectionId, 'ticketTypeId': ticketTypeId, 'isSeriesTicketType': isSeriesTicketType, 'eventId': eventId, 'hiddenFromSale': hiddenFromSale }; createResponse() => SetSeatingSaleVisibilityResult(); getResponseTypeName() => "SetSeatingSaleVisibilityResult"; getTypeName() => "SetSeatingSaleVisibilityRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'stubbur_app.azurewebsites.net', types: { 'SetSeatingSaleVisibilityResult': TypeInfo(TypeOf.Class, create:() => SetSeatingSaleVisibilityResult()), 'SetSeatingSaleVisibilityRequest': TypeInfo(TypeOf.Class, create:() => SetSeatingSaleVisibilityRequest()), });