libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit b4043689d321034d06aa39dfe3f34e9609966943
parent 772028772401c181e0bc2c9b5114a3b8f6a15927
Author: MS <ms@taler.net>
Date:   Thu, 16 Nov 2023 17:42:09 +0100

EBICS 3: enabling ES.

Diffstat:
Mutil/src/main/kotlin/ebics_h005/Ebics3Request.kt | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/util/src/main/kotlin/ebics_h005/Ebics3Request.kt b/util/src/main/kotlin/ebics_h005/Ebics3Request.kt @@ -202,6 +202,14 @@ class Ebics3Request { @get:XmlElement(name = "Service", required = true) lateinit var service: Service + /** + * This element activates the ES signature scheme (disabling + * hence the EDS). It *would* admit a @requestEDS attribute, + * but its omission means false. + */ + @get:XmlElement(name = "SignatureFlag", required = true) + var signatureFlag: Boolean = true + @get:XmlElement(name = "DateRange", required = true) var dateRange: DateRange? = null }