/* Options: Date: 2024-07-06 12:05:06 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://wp-cddws-test.worldpay.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CDDResponseRequest.* //ExcludeTypes: //DefaultImports: */ export class EventResponse { public ApplicationGUID: string; public AuditFileID: string; public ResponseDesc: string; public ReportURL: string; public EventType: string; public DateChecked?: string; public CDDCheckID?: number; public StatusCode?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/response/request", "POST") export class CDDResponseRequest implements IReturn { public ApplicationGUID: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CDDResponseRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new EventResponse(); } }