(* Options: Date: 2025-09-05 04:42:34 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: AddTelemetryRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Application.Interfaces.Resources open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO [] type ITenantedRequest = abstract OrganisationId:String with get,set [] type PutPatchOperationUnTenanted<'TResponse>() = interface IPatch interface IPut [] type PutPatchOperationTenanted<'TResponse>() = inherit PutPatchOperationUnTenanted() member val OrganisationId:String = null with get,set [] type Telemetry() = member val Type:String = null with get,set member val Value:String = null with get,set member val ObservedAt:DateTime = new DateTime() with get,set member val Id:String = null with get,set [] type IIdentifiableResource = abstract Id:String with get,set [] type AddTelemetryResponse() = member val ResponseStatus:ResponseStatus = null with get,set [] [] type AddTelemetryRequest() = inherit PutPatchOperationTenanted() interface IReturn member val MachineId:String = null with get,set member val Telemetries:ResizeArray = new ResizeArray() with get,set