/* Options: Date: 2025-08-03 10:29:07 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BrowseSupplierAddress.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } export interface IConcurrencyStamp { ConcurrencyStamp: string; } export enum AddressType { Postal = 0, HeadQuarters = 1, Site = 2, } export class ModifyRequestBase implements IConcurrencyStamp { public ConcurrencyStamp: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class SupplierAddressBase extends ModifyRequestBase { public CountryId: number; public AddressType: AddressType; public ZipCode: string; public City: string; public Address: string; public StreetAddress: string; public StreetType: string; public HouseNumber: string; public Building: string; public Staircase: string; public Floor: string; public Door: string; public POB: string; public Other: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @DataContract export class ResponseError { // @DataMember(Order=1) public ErrorCode: string; // @DataMember(Order=2) public FieldName: string; // @DataMember(Order=3) public Message: string; // @DataMember(Order=4) public Meta: { [index: string]: string; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class ResponseStatus { // @DataMember(Order=1) public ErrorCode: string; // @DataMember(Order=2) public Message: string; // @DataMember(Order=3) public StackTrace: string; // @DataMember(Order=4) public Errors: ResponseError[]; // @DataMember(Order=5) public Meta: { [index: string]: string; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ResponseBase { public ResponseStatus: ResponseStatus; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class SupplierAddressSimple extends SupplierAddressBase { public Id: number; public CountryCode: string; public CountryName: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class BrowseSupplierAddressResponse extends ResponseBase { public SupplierAddress: SupplierAddressSimple; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @Route("/supplier/{supplierid}/address/{supplieraddressid}", "GET") export class BrowseSupplierAddress implements IReturn, IGet { public SupplierId: number; public SupplierAddressId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'BrowseSupplierAddress'; } public getMethod() { return 'GET'; } public createResponse() { return new BrowseSupplierAddressResponse(); } }