/* Options: Date: 2025-05-06 21:41:03 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-consumer-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProfileUpdateHomeLocationRequest.* //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="/profile/update-home", Verbs="PUT") open class ProfileUpdateHomeLocationRequest : IReturn, IPut { open var home:HomeLocation? = null companion object { private val responseType = ProfileUpdateHomeLocationResponse::class.java } override fun getResponseType(): Any? = ProfileUpdateHomeLocationRequest.responseType } open class ProfileUpdateHomeLocationResponse { open var homeLocation:HomeLocation? = null } open class HomeLocation { open var address:UserAddress? = null open var latitude:Float? = null open var longitude:Float? = null } open class UserAddress { open var streetName:String? = null open var streetNumber:String? = null open var postalCode:String? = null open var region:String? = null open var countryCode:String? = null }