(* Options: Date: 2025-12-16 07:40:45 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://mds-api.mojomotorcycles.com.au //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: Part.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Mds.Api.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type PartDetail() = member val Id:Int32 = new Int32() with get,set member val InventoryId:String = null with get,set member val Name:String = null with get,set member val Active:Boolean = new Boolean() with get,set member val DateLastUpdate:Nullable = new Nullable() with get,set member val RRP:Nullable = new Nullable() with get,set member val TradePrice:Nullable = new Nullable() with get,set member val DealerPrice:Nullable = new Nullable() with get,set [] type PartResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val IsSuccess:Boolean = new Boolean() with get,set member val Message:String = null with get,set member val Item:PartDetail = null with get,set [] [] type Part() = interface IReturn member val PartId:Int32 = new Int32() with get,set