/* Options: Date: 2025-12-06 08:53:15 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: FFAgentConfigTemplateRequest.* //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/FFAgentConfigTemplate", Verbs="POST,OPTIONS") open class FFAgentConfigTemplateRequest : IReturn { open var FFAgentConfigId:UUID? = null open var TemplateId:UUID? = null companion object { private val responseType = FFAgentConfigResponse::class.java } override fun getResponseType(): Any? = FFAgentConfigTemplateRequest.responseType } open class FFAgentConfigResponse { open var ResponseStatus:ResponseStatus? = null open var FFAgentConfig:FFAgentConfigExtended? = null } open class FFAgentConfigExtended : FFAgentConfig() { open var FFSections:ArrayList = ArrayList() } open class FFFieldExtended : FFField() { open var Name:String? = null open var IsYesNo:Boolean? = null } open class FFSectionExtended : FFSection() { open var SectionTypeDesc:String? = null open var FFFields:ArrayList = ArrayList() } open class FFAgentConfig { open var Id:UUID? = null open var AgentId:Int? = null open var DateCreated:Date? = null open var DateModified:Date? = null } open class FFField { open var Id:UUID? = null open var FFSectionId:UUID? = null open var FieldTypeId:Int? = null open var x:Int? = null open var y:Int? = null open var height:Int? = null open var width:Int? = null open var Text:String? = null } open class FFSection { open var Id:UUID? = null open var FFAgentConfigId:UUID? = null open var SectionTypeId:Int? = null open var Nickname:String? = null open var ShowHeader:Boolean? = null open var Header:String? = null open var height:Int? = null open var width:Int? = null open var x:Int? = null open var y:Int? = null open var IsActive:Boolean? = null open var HasBorder:Boolean? = null open var BorderColor:String? = null open var BorderWidth:Int? = null open var BorderRadius:Int? = null open var DateCreated:Date? = null open var DateModified:Date? = null }