/* Options: Date: 2025-08-03 09:38:30 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BrowseSupplierAddress.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/supplier/{supplierid}/address/{supplieraddressid}", Verbs="GET") open class BrowseSupplierAddress : IReturn, IGet { var SupplierId:Int? = null var SupplierAddressId:Int? = null companion object { private val responseType = BrowseSupplierAddressResponse::class.java } override fun getResponseType(): Any? = BrowseSupplierAddress.responseType } open class BrowseSupplierAddressResponse : ResponseBase() { var SupplierAddress:SupplierAddressSimple? = null } open interface IConcurrencyStamp { var ConcurrencyStamp:String? } enum class AddressType(val value:Int) { @SerializedName("0") Postal(0), @SerializedName("1") HeadQuarters(1), @SerializedName("2") Site(2), } open class SupplierAddressBase : ModifyRequestBase() { var CountryId:Int? = null var AddressType:AddressType? = null var ZipCode:String? = null var City:String? = null var Address:String? = null var StreetAddress:String? = null var StreetType:String? = null var HouseNumber:String? = null var Building:String? = null var Staircase:String? = null var Floor:String? = null var Door:String? = null var POB:String? = null var Other:String? = null } open class ResponseBase { var ResponseStatus:ResponseStatus? = null } open class SupplierAddressSimple : SupplierAddressBase() { var Id:Int? = null var CountryCode:String? = null var CountryName:String? = null } open class ModifyRequestBase : IConcurrencyStamp { var ConcurrencyStamp:String? = null }