(* Options: Date: 2025-09-22 22:30:31 Version: 6.21 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://accounts.dev.healthmonix.com/api/ //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetCoupon.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Hmx.Accounts.ServiceModels open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type CouponDto() = member val Id:Int32 = new Int32() with get,set member val Name:String = null with get,set member val Description:String = null with get,set member val EffectiveDate:DateTime = new DateTime() with get,set member val DiscountType:String = null with get,set member val ProductDiscounts:Dictionary = new Dictionary() with get,set [] [] type GetCoupon() = interface IReturn member val Id:Int32 = new Int32() with get,set