/* Options: Date: 2025-12-06 09:02:50 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: LineQuestionsRequest.* //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/LineQuestions", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/LineQuestions/{Id}", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/LineQuestions/Line/{LineId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/LineQuestions/Line/Questionnaire/{CustomerCheckInId}/{RO}", Verbs="GET,POST,PUT,DELETE,OPTIONS") open class LineQuestionsRequest : IReturn { open var Id:Int? = null open var LineId:UUID? = null open var CustomerCheckInId:UUID? = null open var RO:Boolean? = null open var LineQuestions:ArrayList = ArrayList() companion object { private val responseType = LineQuestionsResponse::class.java } override fun getResponseType(): Any? = LineQuestionsRequest.responseType } open class LineQuestionsResponse { open var ResponseStatus:ResponseStatus? = null open var LineQuestions:ArrayList = ArrayList() } open class LineQuestion { open var Id:Int? = null open var CustomerCheckInId:UUID? = null open var LineId:UUID? = null open var Question:String? = null open var Answer:String? = null open var Active:Boolean? = null }