Struct aws_sdk_textract::model::ExpenseDocument
source · #[non_exhaustive]pub struct ExpenseDocument { /* private fields */ }
Expand description
The structure holding all the information returned by AnalyzeExpense
Implementations§
source§impl ExpenseDocument
impl ExpenseDocument
sourcepub fn expense_index(&self) -> Option<i32>
pub fn expense_index(&self) -> Option<i32>
Denotes which invoice or receipt in the document the information is coming from. First document will be 1, the second 2, and so on.
sourcepub fn summary_fields(&self) -> Option<&[ExpenseField]>
pub fn summary_fields(&self) -> Option<&[ExpenseField]>
Any information found outside of a table by Amazon Textract.
sourcepub fn line_item_groups(&self) -> Option<&[LineItemGroup]>
pub fn line_item_groups(&self) -> Option<&[LineItemGroup]>
Information detected on each table of a document, seperated into LineItems
.
source§impl ExpenseDocument
impl ExpenseDocument
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ExpenseDocument
.
Trait Implementations§
source§impl Clone for ExpenseDocument
impl Clone for ExpenseDocument
source§fn clone(&self) -> ExpenseDocument
fn clone(&self) -> ExpenseDocument
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ExpenseDocument
impl Debug for ExpenseDocument
source§impl PartialEq<ExpenseDocument> for ExpenseDocument
impl PartialEq<ExpenseDocument> for ExpenseDocument
source§fn eq(&self, other: &ExpenseDocument) -> bool
fn eq(&self, other: &ExpenseDocument) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.