how to set Transaction expiry days
Monday, January 7, 2019 at 10:36pmHello!
How to set days when translation will expired.
Thanks
OneSpan Introduces DigipassONE, Bringing a Unified Platform Approach to Authentication Modernization
A new authentication platform helps financial institutions support diverse customer authentication preferences while modernizing at their own pace Learn More
Reply to: how to set Transaction expiry days
Tuesday, January 8, 2019 at 02:46amint expiryDay = 15; Calendar calendar = new GregorianCalendar(); calendar.add(Calendar.DATE, expiryDay); Date expiryDate = calendar.getTime(); DocumentPackage newPackage = newPackageNamed("Test Due") ... .expiresAt(expiryDate) .build();Hope this could help! Duo