/* Options: Date: 2026-09-02 00:47:18 Version: 10.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-vue.web-templates.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: QueryBookings.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; enum RoomType { Single, Double, Queen, Twin, Suite, } /** * Discount Coupons */ class Coupon implements IConvertible { String id = ""; String description = ""; int discount = 0; DateTime? expiryDate; Coupon({this.id="",this.description="",this.discount=0,this.expiryDate}); Coupon.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id'] ?? ""; description = json['description'] ?? ""; discount = json['discount'] ?? 0; expiryDate = JsonConverters.fromJson(json['expiryDate'],'DateTime',context!) ?? DateTime(0); return this; } Map toJson() => { 'id': id, 'description': description, 'discount': discount, 'expiryDate': JsonConverters.toJson(expiryDate,'DateTime',context!) }; getTypeName() => "Coupon"; TypeContext? context = _ctx; } class User implements IConvertible { String id = ""; String userName = ""; String? firstName; String? lastName; String? displayName; String? profileUrl; User({this.id="",this.userName="",this.firstName,this.lastName,this.displayName,this.profileUrl}); User.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id'] ?? ""; userName = json['userName'] ?? ""; firstName = json['firstName']; lastName = json['lastName']; displayName = json['displayName']; profileUrl = json['profileUrl']; return this; } Map toJson() => { 'id': id, 'userName': userName, 'firstName': firstName, 'lastName': lastName, 'displayName': displayName, 'profileUrl': profileUrl }; getTypeName() => "User"; TypeContext? context = _ctx; } /** * Booking Details */ class Booking extends AuditBase implements IConvertible { int id = 0; String name = ""; RoomType? roomType; int roomNumber = 0; DateTime? bookingStartDate; DateTime? bookingEndDate; double cost = 0; // @References(typeof(Coupon)) String? couponId; Coupon? discount; String? notes; bool? cancelled; User? employee; Booking({this.id=0,this.name="",this.roomType,this.roomNumber=0,this.bookingStartDate,this.bookingEndDate,this.cost=0,this.couponId,this.discount,this.notes,this.cancelled,this.employee}); Booking.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); id = json['id'] ?? 0; name = json['name'] ?? ""; roomType = JsonConverters.fromJson(json['roomType'],'RoomType',context!); roomNumber = json['roomNumber'] ?? 0; bookingStartDate = JsonConverters.fromJson(json['bookingStartDate'],'DateTime',context!) ?? DateTime(0); bookingEndDate = JsonConverters.fromJson(json['bookingEndDate'],'DateTime',context!); cost = JsonConverters.toDouble(json['cost']) ?? 0; couponId = json['couponId']; discount = JsonConverters.fromJson(json['discount'],'Coupon',context!); notes = json['notes']; cancelled = json['cancelled']; employee = JsonConverters.fromJson(json['employee'],'User',context!); return this; } Map toJson() => super.toJson()..addAll({ 'id': id, 'name': name, 'roomType': JsonConverters.toJson(roomType,'RoomType',context!), 'roomNumber': roomNumber, 'bookingStartDate': JsonConverters.toJson(bookingStartDate,'DateTime',context!), 'bookingEndDate': JsonConverters.toJson(bookingEndDate,'DateTime',context!), 'cost': cost, 'couponId': couponId, 'discount': JsonConverters.toJson(discount,'Coupon',context!), 'notes': notes, 'cancelled': cancelled, 'employee': JsonConverters.toJson(employee,'User',context!) }); getTypeName() => "Booking"; TypeContext? context = _ctx; } /** * Find Bookings */ // @Route("/bookings", "GET") // @Route("/bookings/{Id}", "GET") class QueryBookings extends QueryDb implements IReturn>, IConvertible, IGet { int? id; QueryBookings({this.id}); QueryBookings.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); id = json['id']; return this; } Map toJson() => super.toJson()..addAll({ 'id': id }); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "QueryBookings"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'blazor_vue.web_templates.io', types: { 'RoomType': TypeInfo(TypeOf.Enum, enumValues:RoomType.values), 'Coupon': TypeInfo(TypeOf.Class, create:() => Coupon()), 'User': TypeInfo(TypeOf.Class, create:() => User()), 'Booking': TypeInfo(TypeOf.Class, create:() => Booking()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'QueryBookings': TypeInfo(TypeOf.Class, create:() => QueryBookings()), 'List': TypeInfo(TypeOf.Class, create:() => []), });