(* Options: Date: 2025-08-03 00:34:24 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: BrowseSupplierAddress.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Portal.Common open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO [] type IConcurrencyStamp = abstract ConcurrencyStamp:String with get,set type AddressType = | Postal = 0 | HeadQuarters = 1 | Site = 2 [] type ModifyRequestBase() = member val ConcurrencyStamp:String = null with get,set [] type SupplierAddressBase() = inherit ModifyRequestBase() member val CountryId:Int32 = new Int32() with get,set member val AddressType:AddressType = new AddressType() with get,set member val ZipCode:String = null with get,set member val City:String = null with get,set member val Address:String = null with get,set member val StreetAddress:String = null with get,set member val StreetType:String = null with get,set member val HouseNumber:String = null with get,set member val Building:String = null with get,set member val Staircase:String = null with get,set member val Floor:String = null with get,set member val Door:String = null with get,set member val POB:String = null with get,set member val Other:String = null with get,set [] type ResponseBase() = member val ResponseStatus:ResponseStatus = null with get,set [] type SupplierAddressSimple() = inherit SupplierAddressBase() member val Id:Int32 = new Int32() with get,set member val CountryCode:String = null with get,set member val CountryName:String = null with get,set [] type BrowseSupplierAddressResponse() = inherit ResponseBase() member val SupplierAddress:SupplierAddressSimple = null with get,set [] [] type BrowseSupplierAddress() = interface IReturn interface IGet member val SupplierId:Int32 = new Int32() with get,set member val SupplierAddressId:Int32 = new Int32() with get,set