/* Options: Date: 2026-08-17 09:23:47 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WebshopDroppLocationsRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class WebshopDroppLocationsResult { public locations: string; public statusCode: number; public message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/Webshop/Dropp/Locations", "GET") export class WebshopDroppLocationsRequest implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'WebshopDroppLocationsRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new WebshopDroppLocationsResult(); } }