(* Options: Date: 2024-10-06 10:32:45 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: FinanceCreateSaleRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace regis.ClassLibrary.Requests open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type FinanceCreateSaleItemsRequest() = member val amount:Decimal = new Decimal() with get,set member val code:String = null with get,set [] [] type FinanceCreateSaleRequest() = interface IReturn member val regent_id:Int32 = new Int32() with get,set member val amount:Decimal = new Decimal() with get,set member val code:String = null with get,set member val rebate_code:String = null with get,set member val rebate_amount:Nullable = new Nullable() with get,set member val payment_id:String = null with get,set member val reporting_term:String = null with get,set member val sale_items:ResizeArray = new ResizeArray() with get,set