(* Options: Date: 2025-09-22 22:29:04 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: UpdateCoupon.* //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 UpdateCouponResponse() = member val Message:String = null with get,set member val Status:HttpStatusCode = new HttpStatusCode() with get,set [] [] type UpdateCoupon() = interface IReturn 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