/* Options: Date: 2026-06-01 15:35:16 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: SignDocumentEYPV2.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export enum EYPImzaType { ParafOzetiImza = 1, PaketOzetiImza = 2, NihaiOzetMuhur = 3, } export class BaseResponse { public ServiceSuccessResult: boolean; public ErrorMesage: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class SignDocumentEYPResponse extends BaseResponse { public Result: boolean; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @Route("/SignDocumentEYPV2/") export class SignDocumentEYPV2 implements IReturn { public eypImzaType: EYPImzaType; public ClientKey: string; public AuthorizationID: string; public UserSSN: string; public AgentMessage: string; public DocumentId: number; public stampYn: boolean; public StampSSN: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SignDocumentEYPV2'; } public getMethod() { return 'POST'; } public createResponse() { return new SignDocumentEYPResponse(); } }