' Options: 'Date: 2025-09-23 02:59:53 'Version: 6.21 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://accounts.dev.healthmonix.com/api/ ' '''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: CreatePurchaseOrder.* '''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 Hmx.Accounts.ServiceModels Namespace Global Namespace Hmx.Accounts.ServiceModels Public Partial Class BillingInformationDto Public Overridable Property CardNumber As String Public Overridable Property CardType As String Public Overridable Property ExpireMonth As Integer Public Overridable Property ExpireYear As Integer Public Overridable Property Cvv2 As String Public Overridable Property FirstName As String Public Overridable Property LastName As String Public Overridable Property City As String Public Overridable Property CountryCode As String Public Overridable Property Line1 As String Public Overridable Property PostalCode As String Public Overridable Property State As String End Class Public Partial Class CreatePurchaseOrder Implements IReturn(Of CreatePurchaseOrderResponse) Public Sub New() OrderItems = New List(Of PurchaseOrderItemDto) End Sub Public Overridable Property UserId As String Public Overridable Property UserEmail As String Public Overridable Property CreatedDate As Date Public Overridable Property Void As Boolean Public Overridable Property CouponCode As String Public Overridable Property OrderItems As List(Of PurchaseOrderItemDto) Public Overridable Property PaymentType As String Public Overridable Property BillingInformationDto As BillingInformationDto End Class Public Partial Class CreatePurchaseOrderResponse Public Sub New() Details = New List(Of Details) End Sub Public Overridable Property Message As String Public Overridable Property Status As HttpStatusCode Public Overridable Property PurchaseOrder As PurchaseOrderDto Public Overridable Property Details As List(Of Details) End Class Public Partial Class Details Public Overridable Property Code As String Public Overridable Property Field As String Public Overridable Property Issue As String End Class Public Partial Class PurchaseOrderDto Public Sub New() OrderItems = New List(Of PurchaseOrderItem) End Sub Public Overridable Property Id As Integer Public Overridable Property UserId As String Public Overridable Property CreatedDate As Date Public Overridable Property PaymentType As String Public Overridable Property Void As Boolean Public Overridable Property Paid As Boolean Public Overridable Property TransactionIdentifier As String Public Overridable Property CouponCode As String Public Overridable Property OrderItems As List(Of PurchaseOrderItem) Public Overridable Property Payer As String Public Overridable Property BillingAddressLine1 As String Public Overridable Property BillingAddressCity As String Public Overridable Property BillingAddressState As String Public Overridable Property BillingAddressPostalCode As String Public Overridable Property BillingAddressCountryCode As String End Class Public Partial Class PurchaseOrderItemDto Public Overridable Property Id As Integer Public Overridable Property PurchaseOrderId As Integer Public Overridable Property ProductId As String Public Overridable Property ProductName As String Public Overridable Property Quantity As Integer Public Overridable Property Price As Decimal Public Overridable Property DiscountDescription As String Public Overridable Property DiscountSource As String Public Overridable Property Discount As Decimal Public Overridable Property CreatedDate As Date End Class End Namespace End Namespace