(* Options: Date: 2025-09-22 22:30:00 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: GetCoupons.* //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 GetCouponsResponse() = member val Results:ResizeArray = new ResizeArray() with get,set [] [] type GetCoupons() = interface IReturn member val Name:String = null with get,set member val FromDate:Nullable = new Nullable() with get,set member val ToDate:Nullable = new Nullable() with get,set member val DiscountType:String = null with get,set