/* Options: Date: 2026-06-01 15:33:57 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://imzagerservices.eyyubiye.bel.tr //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UploadEYPDocument.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class BaseResponse { public ServiceSuccessResult: boolean; public ErrorMesage: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class UploadEYPDocumentResponse extends BaseResponse { public Result: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @Route("/UploadEYPDocument/{ClientKey}") export class UploadEYPDocument implements IReturn { public ClientKey: string; public AuthorizationID: string; public Username: string; public FileName: string; public DocumentContent: string; public MimeType: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UploadEYPDocument'; } public getMethod() { return 'POST'; } public createResponse() { return new UploadEYPDocumentResponse(); } }