/* Options: Date: 2025-08-03 00:48:26 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: BrowseSupplierAddress.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.IO; using Portal.Common; using Portal.ServiceDto; namespace Portal.Common { public enum AddressType { Postal = 0, HeadQuarters = 1, Site = 2, } public partial interface IConcurrencyStamp { string ConcurrencyStamp { get; set; } } } namespace Portal.ServiceDto { [Route("/supplier/{supplierid}/address/{supplieraddressid}", "GET")] public partial class BrowseSupplierAddress : IReturn, IGet { public virtual int SupplierId { get; set; } public virtual int SupplierAddressId { get; set; } } public partial class BrowseSupplierAddressResponse : ResponseBase { public virtual SupplierAddressSimple SupplierAddress { get; set; } } public partial class ModifyRequestBase : IConcurrencyStamp { public virtual string ConcurrencyStamp { get; set; } } public partial class ResponseBase { public virtual ResponseStatus ResponseStatus { get; set; } } public partial class SupplierAddressBase : ModifyRequestBase { public virtual int CountryId { get; set; } public virtual AddressType AddressType { get; set; } public virtual string ZipCode { get; set; } public virtual string City { get; set; } public virtual string Address { get; set; } public virtual string StreetAddress { get; set; } public virtual string StreetType { get; set; } public virtual string HouseNumber { get; set; } public virtual string Building { get; set; } public virtual string Staircase { get; set; } public virtual string Floor { get; set; } public virtual string Door { get; set; } public virtual string POB { get; set; } public virtual string Other { get; set; } } public partial class SupplierAddressSimple : SupplierAddressBase { public virtual int Id { get; set; } public virtual string CountryCode { get; set; } public virtual string CountryName { get; set; } } }