/* Options: Date: 2025-12-06 07:18:24 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: LineAnswersRequest.* //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/LineAnswers", Verbs="POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/LineAnswers/{CustomerCheckInId}", Verbs="GET, OPTIONS") open class LineAnswersRequest : IReturn { open var LineAnswers:ArrayList = ArrayList() open var CustomerCheckInId:UUID? = null companion object { private val responseType = LineQuestionsResponse::class.java } override fun getResponseType(): Any? = LineAnswersRequest.responseType } open class LineQuestionsResponse { open var ResponseStatus:ResponseStatus? = null open var LineQuestions:ArrayList = ArrayList() } open class LineAnswer { open var Id:Int? = null open var CustomerCheckInId:UUID? = null open var LineQuestionId:Int? = null open var Question:String? = null open var Answer:String? = null } 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 }