/* Options: Date: 2024-09-30 10:26:51 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CompanyCoordinatesQuery.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/companies/coordinates", Verbs="GET") open class CompanyCoordinatesQuery : IReturn { /** * Street address */ @ApiMember(Description="Street address", IsRequired=true, ParameterType="query") var Street1:String? = null /** * Street adress */ @ApiMember(Description="Street adress", ParameterType="query") var Street2:String? = null /** * Street zip code */ @ApiMember(Description="Street zip code", IsRequired=true, ParameterType="query") var ZipCode:String? = null /** * City */ @ApiMember(Description="City", IsRequired=true, ParameterType="query") var City:String? = null /** * Country Id (Example SE= Sweden) */ @ApiMember(Description="Country Id (Example SE= Sweden)", IsRequired=true, ParameterType="query") var CountryId:String? = null companion object { private val responseType = CompanyCoordinatesQueryResponse::class.java } override fun getResponseType(): Any? = CompanyCoordinatesQuery.responseType } open class CompanyCoordinatesQueryResponse { var Longitude:Double? = null var Latitude:Double? = null }