Skip to end of banner
Go to start of banner

[Android] Transaction Docs

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Overview

Please make sure to contact Gini customer support to enable this feature in our backend platform.

We highly recommend having a QA session with Gini before releasing the Transaction Docs feature to your customers.

The Transaction Docs feature allows end users to:

  1. Attach a document during the Photo Payment flow. Here, 3 options: “Attach files”, “Always attach”, “Don’t attach files”, are available.

  2. View the attached document on the Transaction Summary screen .

  3. Open the attached document in a full screen mode from the Transaction Summary screen when tapping on the already attached file.

  4. Delete an attached document from the Transaction Summary screen.

Initialization

Please note that in GiniBankSDK this feature is enabled by default in the SDK in the transactionDocsEnabled property with the true value.

Please make sure that you will initialize the Gini Bank SDK at the start of your banking application in order to pull the value of the Transaction Docs feature flag. This flag instructs the SDK if the Transaction Docs feature is enabled for your account.

To disable this feature, set transactionDocsEnabledto falsein the CaptureConfiguration object inside the Bank-SDK:

var captureConfiguration = CaptureConfiguration(
            transactionDocsEnabled = false,
            ....
        )
GiniBank.setCaptureConfiguration(context, captureConfiguration)

Transaction Docs attachment settings

Value of three options for attaching a document (namely: “Attach files”, “Always attach”, “Don’t attach files”) is in the current version of the Transaction Docs feature stored locally on end user’s device.

Attachments view component

You can use a new Attachments view component anywhere in the application. This new component allows end users to

  • see an attached document with its file name and extension

  • delete an attached document after tapping on the “More” option

  • tap on the attached document to see a document preview

Find out more configuration options for the Transaction Docs feature here.

Find out how to customize this feature here.

  • No labels