Struct aws_sdk_textract::types::builders::LineItemGroupBuilder
source · #[non_exhaustive]pub struct LineItemGroupBuilder { /* private fields */ }
Expand description
A builder for LineItemGroup
.
Implementations§
source§impl LineItemGroupBuilder
impl LineItemGroupBuilder
sourcepub fn line_item_group_index(self, input: i32) -> Self
pub fn line_item_group_index(self, input: i32) -> Self
The number used to identify a specific table in a document. The first table encountered will have a LineItemGroupIndex of 1, the second 2, etc.
sourcepub fn set_line_item_group_index(self, input: Option<i32>) -> Self
pub fn set_line_item_group_index(self, input: Option<i32>) -> Self
The number used to identify a specific table in a document. The first table encountered will have a LineItemGroupIndex of 1, the second 2, etc.
sourcepub fn get_line_item_group_index(&self) -> &Option<i32>
pub fn get_line_item_group_index(&self) -> &Option<i32>
The number used to identify a specific table in a document. The first table encountered will have a LineItemGroupIndex of 1, the second 2, etc.
sourcepub fn line_items(self, input: LineItemFields) -> Self
pub fn line_items(self, input: LineItemFields) -> Self
Appends an item to line_items
.
To override the contents of this collection use set_line_items
.
The breakdown of information on a particular line of a table.
sourcepub fn set_line_items(self, input: Option<Vec<LineItemFields>>) -> Self
pub fn set_line_items(self, input: Option<Vec<LineItemFields>>) -> Self
The breakdown of information on a particular line of a table.
sourcepub fn get_line_items(&self) -> &Option<Vec<LineItemFields>>
pub fn get_line_items(&self) -> &Option<Vec<LineItemFields>>
The breakdown of information on a particular line of a table.
sourcepub fn build(self) -> LineItemGroup
pub fn build(self) -> LineItemGroup
Consumes the builder and constructs a LineItemGroup
.
Trait Implementations§
source§impl Clone for LineItemGroupBuilder
impl Clone for LineItemGroupBuilder
source§fn clone(&self) -> LineItemGroupBuilder
fn clone(&self) -> LineItemGroupBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LineItemGroupBuilder
impl Debug for LineItemGroupBuilder
source§impl Default for LineItemGroupBuilder
impl Default for LineItemGroupBuilder
source§fn default() -> LineItemGroupBuilder
fn default() -> LineItemGroupBuilder
source§impl PartialEq for LineItemGroupBuilder
impl PartialEq for LineItemGroupBuilder
source§fn eq(&self, other: &LineItemGroupBuilder) -> bool
fn eq(&self, other: &LineItemGroupBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.