/* Options: Date: 2025-12-06 05:19:20 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: LocationsRequest.* //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/Locations", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/Locations/{Id}", Verbs="GET,POST,PUT,DELETE,OPTIONS") open class LocationsRequest : IReturn { open var Id:UUID? = null open var Locations:ArrayList = ArrayList() companion object { private val responseType = LocationsResponse::class.java } override fun getResponseType(): Any? = LocationsRequest.responseType } open class LocationsResponse { open var ResponseStatus:ResponseStatus? = null open var Locations:ArrayList = ArrayList() } open class Location { open var Id:UUID? = null open var ClientId:UUID? = null open var Name:String? = null open var Address1:String? = null open var Address2:String? = null open var City:String? = null open var State:String? = null open var Zip:String? = null open var Phone:String? = null open var Fax:String? = null open var TimeZone:String? = null open var Active:Boolean? = null open var EntDate:Date? = null open var ModDate:Date? = null }