/* Options: Date: 2025-05-06 15:09:11 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BorgunTest3DVerificationRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class BorgunResValidationRequest { public paRes: string; public cRes: string; public md: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BorgunResValidationResponse { public xId: string; public mdStatus: string; public mdErrorMessage: string; public enrollmentStatus: string; public authenticationStatus: string; public eci: string; public cavv: string; public cavvAlgorithm: string; public paResVerified: string; public paResSyntaxOK: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BorgunTest3DVerificationResponse { public response: BorgunResValidationResponse; public statusCode: number; public message: string; public forcedPath: string; public forcedJSONRequest: string; public jsonRequest: string; public jsonResponse: string; public requestPath: string; public requestSent: string; public requestReceived: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/borgunTest3D/ResVerification", "POST") export class BorgunTest3DVerificationRequest implements IReturn { public request: BorgunResValidationRequest; public forcedPath: string; public forcedJSONRequest: string; public skipBorgunCall?: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'BorgunTest3DVerificationRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new BorgunTest3DVerificationResponse(); } }