/* Options: Date: 2026-03-13 22:05:48 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://milliet.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: payment_webhook.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { /** * Paiements : webhooks - retour des formulaires de règlements */ @Route(Path="/payment_webhook/{payment_target}/{payment_run_mode}/{webhook_callback}", Verbs="GET,POST") @Api(Description="Paiements : webhooks - retour des formulaires de règlements") public static class payment_webhook { public eapi_payment_target_enum payment_target = null; public eapi_payment_run_mode_enum payment_run_mode = null; public String webhook_callback = null; public String type = null; public eapi_payment_target_enum getPaymentTarget() { return payment_target; } public payment_webhook setPaymentTarget(eapi_payment_target_enum value) { this.payment_target = value; return this; } public eapi_payment_run_mode_enum getPaymentRunMode() { return payment_run_mode; } public payment_webhook setPaymentRunMode(eapi_payment_run_mode_enum value) { this.payment_run_mode = value; return this; } public String getWebhookCallback() { return webhook_callback; } public payment_webhook setWebhookCallback(String value) { this.webhook_callback = value; return this; } public String getType() { return type; } public payment_webhook setType(String value) { this.type = value; return this; } } public static enum eapi_payment_target_enum { Labanquepostale, Paybox, Milliet; } public static enum eapi_payment_run_mode_enum { Test, Live, ForceLive; } }