(* Options: Date: 2026-03-13 22:06:33 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://milliet.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: payment_webhook.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace WS_RESTRICTED_API open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type eapi_payment_target_enum = | LABANQUEPOSTALE = 0 | PAYBOX = 1 | MILLIET = 2 type eapi_payment_run_mode_enum = | TEST = 0 | LIVE = 1 | FORCE_LIVE = 2 /// ///Paiements : webhooks - retour des formulaires de règlements /// [] [] [] type payment_webhook() = member val payment_target:eapi_payment_target_enum = new eapi_payment_target_enum() with get,set member val payment_run_mode:eapi_payment_run_mode_enum = new eapi_payment_run_mode_enum() with get,set member val webhook_callback:String = null with get,set member val type:String = null with get,set