(* Options: Date: 2025-09-03 18:55: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: CreateMachineRequest.* //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 PostOperationUnTenanted<'TResponse>() = interface IPost [] type ITenantedRequest = abstract OrganisationId:String with get,set [] type PostOperationTenanted<'TResponse>() = inherit PostOperationUnTenanted() member val OrganisationId:String = null with get,set [] type Machine() = member val Name:String = null with get,set member val Type:String = null with get,set member val ManufacturedOn:DateOnly = new DateOnly() with get,set member val Location:String = null with get,set member val Configuration:String = null with get,set member val Id:String = null with get,set [] type IIdentifiableResource = abstract Id:String with get,set [] type CreateMachineResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val Machine:Machine = null with get,set member val ApiKey:String = null with get,set [] [] type CreateMachineRequest() = inherit PostOperationTenanted() interface IReturn member val Name:String = null with get,set member val Type:String = null with get,set member val ManufacturedOn:DateOnly = new DateOnly() with get,set member val Location:String = null with get,set member val Timezone:String = null with get,set