/* Options: Date: 2025-12-06 09:24:47 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: CustomerToLocations.* //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/CustomerToLocations", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/CustomerToLocations/{CustomerId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") open class CustomerToLocations : CustomerToLocationObject(), IReturn { open var ApiKey:UUID? = null companion object { private val responseType = CustomerToLocationsResponse::class.java } override fun getResponseType(): Any? = CustomerToLocations.responseType } open class CustomerToLocationsResponse { open var ResponseStatus:ResponseStatus? = null open var CustomerToLocations:ArrayList = ArrayList() } open class CustomerToLocationObject { open var CustomerId:UUID? = null open var LocationId:UUID? = null }