/* Options: Date: 2025-05-06 15:22:57 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: PaymentServices.PaymentInfoRequest.* //ExcludeTypes: //DefaultImports: */ export class PaymentInfoResponse { public status: string; public message: string; public paymentMethodId: string; public jsonResponse: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/payments/info", "GET POST") export class PaymentInfoRequest implements IReturn { public paymentMethodId: string; public paymentId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'PaymentServices.PaymentInfoRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new PaymentInfoResponse(); } }