/* Options: Date: 2026-08-17 09:14:34 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: GiftCardIssueRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class GiftCardIssueResult implements IConvertible { bool? success; int? giftCardId; String? code; String? codeLast4; String? status; DateTime? expiresAt; String? paymentId; int? statusCode; String? message; GiftCardIssueResult({this.success,this.giftCardId,this.code,this.codeLast4,this.status,this.expiresAt,this.paymentId,this.statusCode,this.message}); GiftCardIssueResult.fromJson(Map json) { fromMap(json); } fromMap(Map json) { success = json['success']; giftCardId = json['giftCardId']; code = json['code']; codeLast4 = json['codeLast4']; status = json['status']; expiresAt = JsonConverters.fromJson(json['expiresAt'],'DateTime',context!); paymentId = json['paymentId']; statusCode = json['statusCode']; message = json['message']; return this; } Map toJson() => { 'success': success, 'giftCardId': giftCardId, 'code': code, 'codeLast4': codeLast4, 'status': status, 'expiresAt': JsonConverters.toJson(expiresAt,'DateTime',context!), 'paymentId': paymentId, 'statusCode': statusCode, 'message': message }; getTypeName() => "GiftCardIssueResult"; TypeContext? context = _ctx; } // @Route("/GiftCard/Issue", "POST") class GiftCardIssueRequest implements IReturn, IConvertible { int? giftCardTypeId; int? amountMinor; String? code; bool? activate; String? buyerName; String? buyerEmail; String? buyerPhone; String? recipientName; String? idempotencyKey; String? note; GiftCardIssueRequest({this.giftCardTypeId,this.amountMinor,this.code,this.activate,this.buyerName,this.buyerEmail,this.buyerPhone,this.recipientName,this.idempotencyKey,this.note}); GiftCardIssueRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { giftCardTypeId = json['giftCardTypeId']; amountMinor = json['amountMinor']; code = json['code']; activate = json['activate']; buyerName = json['buyerName']; buyerEmail = json['buyerEmail']; buyerPhone = json['buyerPhone']; recipientName = json['recipientName']; idempotencyKey = json['idempotencyKey']; note = json['note']; return this; } Map toJson() => { 'giftCardTypeId': giftCardTypeId, 'amountMinor': amountMinor, 'code': code, 'activate': activate, 'buyerName': buyerName, 'buyerEmail': buyerEmail, 'buyerPhone': buyerPhone, 'recipientName': recipientName, 'idempotencyKey': idempotencyKey, 'note': note }; createResponse() => GiftCardIssueResult(); getResponseTypeName() => "GiftCardIssueResult"; getTypeName() => "GiftCardIssueRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'stubbur_app.azurewebsites.net', types: { 'GiftCardIssueResult': TypeInfo(TypeOf.Class, create:() => GiftCardIssueResult()), 'GiftCardIssueRequest': TypeInfo(TypeOf.Class, create:() => GiftCardIssueRequest()), });