ExtractionsContainer

public class ExtractionsContainer extends ExtractionsContainer

The ExtractionsContainer contains specific extractions (e.g. "amountToPay"), compound extractions (e.g. "lineItems") and return reasons (used to allow users to specify in the Return Assistant why they return an item).

See the Gini Bank API documentation for a list of the names of the specific extractions and compound specific extractions.

Constructors

Link copied to clipboard
void ExtractionsContainer(@NonNull() Map<String, SpecificExtraction> specificExtractions, @NonNull() Map<String, CompoundExtraction> compoundExtractions, @NonNull() List<ReturnReason> returnReasons)
Contains a document's extractions from the Gini Bank API.

Functions

Link copied to clipboard
int describeContents()
Link copied to clipboard
Map<String, CompoundExtraction> getCompoundExtractions()
Link copied to clipboard
List<ReturnReason> getReturnReasons()
Link copied to clipboard
Map<String, SpecificExtraction> getSpecificExtractions()
Link copied to clipboard
void writeToParcel(@NonNull() Parcel dest, int flags)

Properties

Link copied to clipboard
public final static Parcelable.Creator<ExtractionsContainer> CREATOR