(* Options: Date: 2025-09-07 09:55:50 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: BillingHistory.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace MyApp.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type Invoice() = member val OrderId:Int32 = new Int32() with get,set member val Date:DateTime = new DateTime() with get,set member val Description:String = null with get,set member val ItemQuantity:Int32 = new Int32() with get,set member val Total:Int32 = new Int32() with get,set member val Paid:Boolean = new Boolean() with get,set [] type BillingHistoryResponse() = member val Invoices:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] [] type BillingHistory() = interface IReturn