(* Options: Date: 2025-09-01 05:12:09 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: GetJobRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Application.Interfaces open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO [] type GetOperationUnTenanted<'TResponse>() = interface IGet member val Embed:String = null with get,set [] type IHasGetOptions = abstract Embed:String with get,set [] type ITenantedRequest = abstract OrganisationId:String with get,set [] type GetOperationTenanted<'TResponse>() = inherit GetOperationUnTenanted() member val OrganisationId:String = null with get,set [] type Job() = member val MachineId:String = null with get,set member val Name:String = null with get,set member val TotalLayers:Int32 = new Int32() with get,set member val StartedAt:DateTime = new DateTime() with get,set member val FinishedAt:Nullable = new Nullable() with get,set member val Aborted:Boolean = new Boolean() with get,set member val Id:String = null with get,set [] type IIdentifiableResource = abstract Id:String with get,set [] type GetJobResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val Job:Job = null with get,set [] [] type GetJobRequest() = inherit GetOperationTenanted() interface IReturn member val Id:String = null with get,set