/* Options: Date: 2025-12-06 06:29:26 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: AgentOfficeLocationRequest.* //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/AgentCrmGetOfficeLocations", Verbs="GET,OPTIONS") open class AgentOfficeLocationRequest : IReturn { companion object { private val responseType = AgentOfficeLocationResponse::class.java } override fun getResponseType(): Any? = AgentOfficeLocationRequest.responseType } open class AgentOfficeLocationResponse { open var ResponseStatus:ResponseStatus? = null open var AgentOfficeLocations:ArrayList = ArrayList() } open class AgentOfficeLocation { open var Id:Int? = null open var City:String? = null open var State:String? = null }