/* Options: Date: 2025-12-06 07:25:35 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: AgentStoreNameChangeRequest.* //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/AgentStoreNameChange", Verbs="POST,OPTIONS") open class AgentStoreNameChangeRequest : IReturn { open var AgentStoreName:String? = null open var AgentStoreNameNew:String? = null open var AgentId:Int? = null companion object { private val responseType = AgentStoreNameResponse::class.java } override fun getResponseType(): Any? = AgentStoreNameChangeRequest.responseType } open class AgentStoreNameResponse { open var ResponseStatus:ResponseStatus? = null open var AgentStoreName:String? = null }