/* Options: Date: 2025-12-06 09:24:47 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PutInspectionReport.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/v1/InspectionReport/{AgentUID}/", Verbs="PUT,OPTIONS") open class PutInspectionReport : IReturn { open var AgentUID:UUID? = null open var IsAcceptingChats:Boolean? = null companion object { private val responseType = PutInspectionReportResponse::class.java } override fun getResponseType(): Any? = PutInspectionReport.responseType } open class PutInspectionReportResponse { open var Result:Boolean? = null open var ResponseStatus:ResponseStatus? = null }