/* 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 //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetMachineRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/machines/{Id}", Verbs="GET") open class GetMachineRequest : GetOperationTenanted(), IReturn { var id:String? = null companion object { private val responseType = GetMachineResponse::class.java } override fun getResponseType(): Any? = GetMachineRequest.responseType } open class GetMachineResponse { var responseStatus:ResponseStatus? = null var machine:Machine? = null } open class GetOperationUnTenanted : IHasGetOptions, IGet { var embed:String? = null } open interface IHasGetOptions { var embed:String? } open interface ITenantedRequest { var organisationId:String? } open class GetOperationTenanted : GetOperationUnTenanted(), ITenantedRequest { var organisationId:String? = null } open class Machine : IIdentifiableResource { var name:String? = null @SerializedName("type") var Type:String? = null var manufacturedOn:Date? = null var location:String? = null var configuration:String? = null var id:String? = null } open interface IIdentifiableResource { var id:String? }