(* Options: Date: 2026-03-13 22:08:36 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_initiate.* //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 type eapi_payment_type_enum = | DIRECT_SEPA = 0 | SEPA = 1 | CB = 2 | AMEX = 3 | COMPTABILITE = 4 /// ///Paiements : initier un règlement /// [] [] [] [] type payment_initiate() = /// ///environnement cible : PAYBOX, LA BANQUE POSTALE, MILLIET /// [] member val payment_target:eapi_payment_target_enum = new eapi_payment_target_enum() with get,set /// ///mode : LIVE, TEST /// [] member val payment_run_mode:eapi_payment_run_mode_enum = new eapi_payment_run_mode_enum() with get,set /// ///type de paiement : CB, AMEX, SEPA, SEPA_DIRECT, COMPTABILITE /// [] member val payment_type:eapi_payment_type_enum = new eapi_payment_type_enum() with get,set /// ///initiateur de la demande : web, dcp, télévente, compta, ibar, etc /// [] member val id_origin:String = null with get,set /// ///numéro société : 1-J. Milliet BBC, 2-BCASH Chapelle, 3-BCASH Bagneux, 6-BCASH Clichy, etc... /// [] member val id_societe:String = null with get,set /// ///numéro client : 2263-David, 13846-Fabien, etc... /// [] member val id_client:String = null with get,set /// ///numéro commande : dans le cas du DCP, sinon 0 ... OU PAS !!! (évolution pour télévente, compta, etc...) /// [] member val id_commande:String = null with get,set /// ///type : CB, AMEX, SEPA, SEPA_DIRECT /// [] member val type_paiement:eapi_payment_type_enum = new eapi_payment_type_enum() with get,set /// ///montant du paiement dans sa plus petite unité monétaire (le centime pour l'euro) /// [] member val amount:String = null with get,set /// ///email client /// [] member val email:String = null with get,set /// ///commentaire /// [] member val commentaire:String = null with get,set