/* Options: Date: 2025-12-06 05:25:18 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: AgentBackOfficeAnswersRequest.* //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/AgentBackofficeAnswers/{AgentRegistrationTempId}", Verbs="POST,OPTIONS") open class AgentBackOfficeAnswersRequest : IReturn { open var AgentRegistrationTempId:Int? = null open var AgentRegistrationAnswers:ArrayList = ArrayList() companion object { private val responseType = AgentBackofficeAnswersResponse::class.java } override fun getResponseType(): Any? = AgentBackOfficeAnswersRequest.responseType } open class AgentBackofficeAnswersResponse { open var ResponseStatus:ResponseStatus? = null open var Success:Boolean? = null } open class AgentRegistrationAnswer { open var AgentRegistrationTempId:Int? = null open var QuestionId:Int? = null open var AnswerYN:Boolean? = null open var AnswerText:String? = null open var DateCreated:Date? = null }