' Options: 'Date: 2025-09-22 22:25:35 '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: GetCoupons.* '''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 CouponDto Public Sub New() ProductDiscounts = New Dictionary(Of String, Decimal) End Sub Public Overridable Property Id As Integer Public Overridable Property Name As String Public Overridable Property Description As String Public Overridable Property EffectiveDate As Date Public Overridable Property DiscountType As String Public Overridable Property ProductDiscounts As Dictionary(Of String, Decimal) End Class Public Partial Class GetCoupons Implements IReturn(Of GetCouponsResponse) Public Overridable Property Name As String Public Overridable Property FromDate As Nullable(Of Date) Public Overridable Property ToDate As Nullable(Of Date) Public Overridable Property DiscountType As String End Class Public Partial Class GetCouponsResponse Public Sub New() Results = New List(Of CouponDto) End Sub Public Overridable Property Results As List(Of CouponDto) End Class End Namespace End Namespace