' Options: 'Date: 2026-08-17 09:14:31 'Version: 6.10 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://stubbur-app.azurewebsites.net ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: GiftCardLedgerRequest.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports TicketUserServices.ServiceModel Imports TicketUserServices.ServiceModel.Types Namespace Global Namespace TicketUserServices.ServiceModel Public Partial Class GiftCardLedgerRequest Implements IReturn(Of GiftCardLedgerResult) Public Overridable Property GiftCardId As Integer End Class Public Partial Class GiftCardLedgerResult Public Sub New() Transactions = New List(Of GiftCardTransaction) End Sub Public Overridable Property Card As GiftCardSummary Public Overridable Property Transactions As List(Of GiftCardTransaction) Public Overridable Property StatusCode As Integer Public Overridable Property Message As String End Class Public Partial Class GiftCardSummary Public Overridable Property ID As Integer Public Overridable Property GiftCardTypeId As Integer Public Overridable Property CodeLast4 As String Public Overridable Property Scope As String Public Overridable Property ScopeOwnerId As Nullable(Of Integer) Public Overridable Property Currency As String Public Overridable Property InitialValueMinor As Integer Public Overridable Property CurrentBalanceMinor As Integer Public Overridable Property Status As String Public Overridable Property ActivatedAt As Nullable(Of Date) Public Overridable Property ExpiresAt As Nullable(Of Date) Public Overridable Property CreatedAt As Date Public Overridable Property BuyerName As String Public Overridable Property BuyerEmail As String Public Overridable Property BuyerPhone As String Public Overridable Property PaymentId As String Public Overridable Property PaymentMethodId As String Public Overridable Property PurchasePaymentReference As String End Class End Namespace Namespace TicketUserServices.ServiceModel.Types Public Partial Class GiftCardTransaction Public Overridable Property ID As Integer Public Overridable Property GiftCardId As Integer Public Overridable Property Kind As String Public Overridable Property AmountMinor As Integer Public Overridable Property Status As String Public Overridable Property HoldExpiresAt As Nullable(Of Date) Public Overridable Property RelatedHoldId As Nullable(Of Integer) Public Overridable Property OrderPaymentReference As String Public Overridable Property EventId As Nullable(Of Integer) Public Overridable Property OwnerId As Nullable(Of Integer) Public Overridable Property IdempotencyKey As String Public Overridable Property CreatedAt As Date Public Overridable Property Note As String End Class End Namespace End Namespace