/* Options: Date: 2026-06-01 15:16:16 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://remservices.eyyubiye.bel.tr //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Authentication.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class AuthenticationResponse { public Result: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/Authentication/{ClientKey}") export class Authentication implements IReturn { public ClientKey: string; public SecretKey: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'Authentication'; } public getMethod() { return 'POST'; } public createResponse() { return new AuthenticationResponse(); } }