/* Options: Date: 2026-03-13 22:08:45 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://milliet.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: url_shortenerDirectUrl.* //ExcludeTypes: //DefaultImports: */ // @Route("/{url}", "GET,POST") export class url_shortenerDirectUrl { /** @description url */ // @ApiMember(DataType="string", Description="url", IsRequired=true, Name="url", ParameterType="path") public url: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'url_shortenerDirectUrl'; } public getMethod() { return 'POST'; } public createResponse() {} }