/* Options: Date: 2026-03-13 22:06:59 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://milliet.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: payment_webhook.* //ExcludeTypes: //DefaultImports: */ export enum eapi_payment_target_enum { LABANQUEPOSTALE = 'LABANQUEPOSTALE', PAYBOX = 'PAYBOX', MILLIET = 'MILLIET', } export enum eapi_payment_run_mode_enum { TEST = 'TEST', LIVE = 'LIVE', FORCE_LIVE = 'FORCE_LIVE', } /** @description Paiements : webhooks - retour des formulaires de règlements */ // @Route("/payment_webhook/{payment_target}/{payment_run_mode}/{webhook_callback}", "GET,POST") // @Api(Description="Paiements : webhooks - retour des formulaires de règlements") export class payment_webhook { public payment_target: eapi_payment_target_enum; public payment_run_mode: eapi_payment_run_mode_enum; public webhook_callback: string; public type: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'payment_webhook'; } public getMethod() { return 'POST'; } public createResponse() {} }