(* Options: Date: 2026-03-13 22:08:00 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_bank.* //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 : appel des formulaires de règlements (PAYBOX, LA BANQUE POSTALE, etc...) /// [] [] [] type payment_bank() = /// ///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 /// ///référence du paiement : 'uuid' /// [] member val reference:String = null with get,set /// ///montant du paiement dans sa plus petite unité monétaire (le centime pour l'euro) /// [] member val amout:String = null with get,set /// ///email client /// [] member val email:String = null with get,set