/* Options: Date: 2025-09-03 19:00:51 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: UpdateMachineRequest.* //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="PUT,PATCH") open class UpdateMachineRequest : PutPatchOperationTenanted(), IReturn { var id:String? = null var name:String? = null @SerializedName("type") var Type:String? = null var manufacturedOn:Date? = null var location:String? = null var configuration:String? = null companion object { private val responseType = UpdateMachineResponse::class.java } override fun getResponseType(): Any? = UpdateMachineRequest.responseType } open class UpdateMachineResponse { var responseStatus:ResponseStatus? = null var machine:Machine? = null } open interface ITenantedRequest { var organisationId:String? } open class PutPatchOperationUnTenanted : IPatch, IPut { } open class PutPatchOperationTenanted : PutPatchOperationUnTenanted(), 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? }