(* Options: Date: 2025-09-01 05:47:45 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: DeleteMachineRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Infrastructure.Api.Interfaces.ServiceOperations open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO [] type DeleteOperationUnTenanted<'TResponse>() = interface IDelete [] type ITenantedRequest = abstract OrganisationId:String with get,set [] type DeleteOperationTenanted<'TResponse>() = inherit DeleteOperationUnTenanted() member val OrganisationId:String = null with get,set [] type DeleteMachineResponse() = member val ResponseStatus:ResponseStatus = null with get,set [] [] type DeleteMachineRequest() = inherit DeleteOperationTenanted() interface IReturn member val Id:String = null with get,set