/* Options: Date: 2025-12-06 06:28:02 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: AgentNBCSummaryRequest.* //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/AgentNBCSummary", Verbs="GET,OPTIONS") // @Route(Path="/v1/AgentNBCSummary/{AgentId}", Verbs="GET,OPTIONS") open class AgentNBCSummaryRequest : IReturn { open var AgentId:Int? = null companion object { private val responseType = AgentNBCSummaryResponse::class.java } override fun getResponseType(): Any? = AgentNBCSummaryRequest.responseType } open class AgentNBCSummaryResponse { open var ResponseStatus:ResponseStatus? = null open var result:ArrayList = ArrayList() } open class AgentNBCSummary { open var PolicyType:String? = null open var PolicyCount:Int? = null open var LifePolicyValue:BigDecimal? = null open var FlowModalPremium:BigDecimal? = null open var FlowAnnualPremium:BigDecimal? = null open var TransferAmount:BigDecimal? = null }