Package net.gini.pay.bank.capture.digitalinvoice.details

Contains the Activity and Fragments used for the return assistant's Line Item Details Screen.

Screen API

The net.gini.pay.bank.capture.digitalinvoice.details.LineItemDetailsActivity is launched by the net.gini.pay.bank.capture.digitalinvoice.DigitalInvoiceActivity when the user tapps on a line item to edit it. It displays the line item and allows editing it.

Component API

To use the Component API you have to include the net.gini.android.vision.digitalinvoice.details.LineItemDetailsFragment in an Activity in your app (a dedicated Activity is recommended). To receive events from the Fragment your Activity must implement the net.gini.android.vision.digitalinvoice.details.LineItemDetailsFragmentListener interface.

Types

LineItemDetailsActivity
Link copied to clipboard
public final class LineItemDetailsActivity extends AppCompatActivity implements LineItemDetailsFragmentListener
When you use the Screen API, the LineItemDetailsActivity displays a line item to be edited by the user.
LineItemDetailsFragment
Link copied to clipboard
public final class LineItemDetailsFragment extends Fragment implements LineItemDetailsScreenContract.View, LineItemDetailsFragmentInterface
When you use the Component API the LineItemDetailsFragment displays a line item to be edited by the user.
LineItemDetailsFragmentInterface
Link copied to clipboard
public interface LineItemDetailsFragmentInterface
Public API of the LineItemDetailsFragment.
LineItemDetailsFragmentListener
Link copied to clipboard
public interface LineItemDetailsFragmentListener
Interface used by the LineItemDetailsFragment to dispatch events to the hosting Activity.