/* Options: Date: 2026-04-15 21:20:25 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://api.booklinker.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LoginRequest.* //ExcludeTypes: //DefaultImports: */ // @Route("/v1/login", "POST") export class LoginRequest { public token: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'LoginRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }