/* Options: Date: 2025-09-03 18:55:59 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: AddTelemetryRequest.* //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/{MachineId}/telemetries", Verbs="POST") open class AddTelemetryRequest : PutPatchOperationTenanted(), IReturn { var machineId:String? = null var telemetries:ArrayList = ArrayList() companion object { private val responseType = AddTelemetryResponse::class.java } override fun getResponseType(): Any? = AddTelemetryRequest.responseType } open class AddTelemetryResponse { var responseStatus:ResponseStatus? = null } open interface ITenantedRequest { var organisationId:String? } open class PutPatchOperationUnTenanted : IPatch, IPut { } open class PutPatchOperationTenanted : PutPatchOperationUnTenanted(), ITenantedRequest { var organisationId:String? = null } open class Telemetry : IIdentifiableResource { @SerializedName("type") var Type:String? = null var value:String? = null var observedAt:Date? = null var id:String? = null } open interface IIdentifiableResource { var id:String? }