1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>A <code>Block</code> represents items that are recognized in a document within a group of pixels close to each other. The information returned in a <code>Block</code> object depends on the type of operation. In text detection for documents (for example <code>DetectDocumentText</code>), you get information about the detected words and lines of text. In text analysis (for example <code>AnalyzeDocument</code>), you can also get information about the fields, tables, and selection elements that are detected in the document.</p>
/// <p>An array of <code>Block</code> objects is returned by both synchronous and asynchronous operations. In synchronous operations, such as <code>DetectDocumentText</code>, the array of <code>Block</code> objects is the entire set of results. In asynchronous operations, such as <code>GetDocumentAnalysis</code>, the array is returned over one or more responses.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/textract/latest/dg/how-it-works.html">How Amazon Textract Works</a>.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct Block {
    /// <p>The type of text item that's recognized. In operations for text detection, the following types are returned:</p>
    /// <ul>
    /// <li>
    /// <p><i>PAGE</i> - Contains a list of the LINE <code>Block</code> objects that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>WORD</i> - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.</p></li>
    /// <li>
    /// <p><i>LINE</i> - A string of tab-delimited, contiguous words that are detected on a document page.</p></li>
    /// </ul>
    /// <p>In text analysis operations, the following types are returned:</p>
    /// <ul>
    /// <li>
    /// <p><i>PAGE</i> - Contains a list of child <code>Block</code> objects that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>KEY_VALUE_SET</i> - Stores the KEY and VALUE <code>Block</code> objects for linked text that's detected on a document page. Use the <code>EntityType</code> field to determine if a KEY_VALUE_SET object is a KEY <code>Block</code> object or a VALUE <code>Block</code> object.</p></li>
    /// <li>
    /// <p><i>WORD</i> - A word that's detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.</p></li>
    /// <li>
    /// <p><i>LINE</i> - A string of tab-delimited, contiguous words that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>TABLE</i> - A table that's detected on a document page. A table is grid-based information with two or more rows or columns, with a cell span of one row and one column each.</p></li>
    /// <li>
    /// <p><i>TABLE_TITLE</i> - The title of a table. A title is typically a line of text above or below a table, or embedded as the first row of a table.</p></li>
    /// <li>
    /// <p><i>TABLE_FOOTER</i> - The footer associated with a table. A footer is typically a line or lines of text below a table or embedded as the last row of a table.</p></li>
    /// <li>
    /// <p><i>CELL</i> - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.</p></li>
    /// <li>
    /// <p><i>MERGED_CELL</i> - A cell in a table whose content spans more than one row or column. The <code>Relationships</code> array for this cell contain data from individual cells.</p></li>
    /// <li>
    /// <p><i>SELECTION_ELEMENT</i> - A selection element such as an option button (radio button) or a check box that's detected on a document page. Use the value of <code>SelectionStatus</code> to determine the status of the selection element.</p></li>
    /// <li>
    /// <p><i>SIGNATURE</i> - The location and confidence score of a signature detected on a document page. Can be returned as part of a Key-Value pair or a detected cell.</p></li>
    /// <li>
    /// <p><i>QUERY</i> - A question asked during the call of AnalyzeDocument. Contains an alias and an ID that attaches it to its answer.</p></li>
    /// <li>
    /// <p><i>QUERY_RESULT</i> - A response to a question asked during the call of analyze document. Comes with an alias and ID for ease of locating in a response. Also contains location and confidence score.</p></li>
    /// </ul>
    /// <p>The following BlockTypes are only returned for Amazon Textract Layout.</p>
    /// <ul>
    /// <li>
    /// <p><code>LAYOUT_TITLE</code> - The main title of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_HEADER</code> - Text located in the top margin of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_FOOTER</code> - Text located in the bottom margin of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_SECTION_HEADER</code> - The titles of sections within a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_PAGE_NUMBER</code> - The page number of the documents.</p></li>
    /// <li>
    /// <p><code>LAYOUT_LIST</code> - Any information grouped together in list form.</p></li>
    /// <li>
    /// <p><code>LAYOUT_FIGURE</code> - Indicates the location of an image in a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_TABLE</code> - Indicates the location of a table in the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_KEY_VALUE</code> - Indicates the location of form key-values in a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_TEXT</code> - Text that is present typically as a part of paragraphs in documents.</p></li>
    /// </ul>
    pub block_type: ::std::option::Option<crate::types::BlockType>,
    /// <p>The confidence score that Amazon Textract has in the accuracy of the recognized text and the accuracy of the geometry points around the recognized text.</p>
    pub confidence: ::std::option::Option<f32>,
    /// <p>The word or line of text that's recognized by Amazon Textract.</p>
    pub text: ::std::option::Option<::std::string::String>,
    /// <p>The kind of text that Amazon Textract has detected. Can check for handwritten text and printed text.</p>
    pub text_type: ::std::option::Option<crate::types::TextType>,
    /// <p>The row in which a table cell is located. The first row position is 1. <code>RowIndex</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub row_index: ::std::option::Option<i32>,
    /// <p>The column in which a table cell appears. The first column position is 1. <code>ColumnIndex</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub column_index: ::std::option::Option<i32>,
    /// <p>The number of rows that a table cell spans. <code>RowSpan</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub row_span: ::std::option::Option<i32>,
    /// <p>The number of columns that a table cell spans. <code>ColumnSpan</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub column_span: ::std::option::Option<i32>,
    /// <p>The location of the recognized text on the image. It includes an axis-aligned, coarse bounding box that surrounds the text, and a finer-grain polygon for more accurate spatial information.</p>
    pub geometry: ::std::option::Option<crate::types::Geometry>,
    /// <p>The identifier for the recognized text. The identifier is only unique for a single operation.</p>
    pub id: ::std::option::Option<::std::string::String>,
    /// <p>A list of relationship objects that describe how blocks are related to each other. For example, a LINE block object contains a CHILD relationship type with the WORD blocks that make up the line of text. There aren't Relationship objects in the list for relationships that don't exist, such as when the current block has no child blocks.</p>
    pub relationships: ::std::option::Option<::std::vec::Vec<crate::types::Relationship>>,
    /// <p>The type of entity.</p>
    /// <p>The following entity types can be returned by FORMS analysis:</p>
    /// <ul>
    /// <li>
    /// <p><i>KEY</i> - An identifier for a field on the document.</p></li>
    /// <li>
    /// <p><i>VALUE</i> - The field text.</p></li>
    /// </ul>
    /// <p>The following entity types can be returned by TABLES analysis:</p>
    /// <ul>
    /// <li>
    /// <p><i>COLUMN_HEADER</i> - Identifies a cell that is a header of a column.</p></li>
    /// <li>
    /// <p><i>TABLE_TITLE</i> - Identifies a cell that is a title within the table.</p></li>
    /// <li>
    /// <p><i>TABLE_SECTION_TITLE</i> - Identifies a cell that is a title of a section within a table. A section title is a cell that typically spans an entire row above a section.</p></li>
    /// <li>
    /// <p><i>TABLE_FOOTER</i> - Identifies a cell that is a footer of a table.</p></li>
    /// <li>
    /// <p><i>TABLE_SUMMARY</i> - Identifies a summary cell of a table. A summary cell can be a row of a table or an additional, smaller table that contains summary information for another table.</p></li>
    /// <li>
    /// <p><i>STRUCTURED_TABLE </i> - Identifies a table with column headers where the content of each row corresponds to the headers.</p></li>
    /// <li>
    /// <p><i>SEMI_STRUCTURED_TABLE</i> - Identifies a non-structured table.</p></li>
    /// </ul>
    /// <p><code>EntityTypes</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub entity_types: ::std::option::Option<::std::vec::Vec<crate::types::EntityType>>,
    /// <p>The selection status of a selection element, such as an option button or check box.</p>
    pub selection_status: ::std::option::Option<crate::types::SelectionStatus>,
    /// <p>The page on which a block was detected. <code>Page</code> is returned by synchronous and asynchronous operations. Page values greater than 1 are only returned for multipage documents that are in PDF or TIFF format. A scanned image (JPEG/PNG) provided to an asynchronous operation, even if it contains multiple document pages, is considered a single-page document. This means that for scanned images the value of <code>Page</code> is always 1.</p>
    pub page: ::std::option::Option<i32>,
    /// <p></p>
    pub query: ::std::option::Option<crate::types::Query>,
}
impl Block {
    /// <p>The type of text item that's recognized. In operations for text detection, the following types are returned:</p>
    /// <ul>
    /// <li>
    /// <p><i>PAGE</i> - Contains a list of the LINE <code>Block</code> objects that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>WORD</i> - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.</p></li>
    /// <li>
    /// <p><i>LINE</i> - A string of tab-delimited, contiguous words that are detected on a document page.</p></li>
    /// </ul>
    /// <p>In text analysis operations, the following types are returned:</p>
    /// <ul>
    /// <li>
    /// <p><i>PAGE</i> - Contains a list of child <code>Block</code> objects that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>KEY_VALUE_SET</i> - Stores the KEY and VALUE <code>Block</code> objects for linked text that's detected on a document page. Use the <code>EntityType</code> field to determine if a KEY_VALUE_SET object is a KEY <code>Block</code> object or a VALUE <code>Block</code> object.</p></li>
    /// <li>
    /// <p><i>WORD</i> - A word that's detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.</p></li>
    /// <li>
    /// <p><i>LINE</i> - A string of tab-delimited, contiguous words that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>TABLE</i> - A table that's detected on a document page. A table is grid-based information with two or more rows or columns, with a cell span of one row and one column each.</p></li>
    /// <li>
    /// <p><i>TABLE_TITLE</i> - The title of a table. A title is typically a line of text above or below a table, or embedded as the first row of a table.</p></li>
    /// <li>
    /// <p><i>TABLE_FOOTER</i> - The footer associated with a table. A footer is typically a line or lines of text below a table or embedded as the last row of a table.</p></li>
    /// <li>
    /// <p><i>CELL</i> - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.</p></li>
    /// <li>
    /// <p><i>MERGED_CELL</i> - A cell in a table whose content spans more than one row or column. The <code>Relationships</code> array for this cell contain data from individual cells.</p></li>
    /// <li>
    /// <p><i>SELECTION_ELEMENT</i> - A selection element such as an option button (radio button) or a check box that's detected on a document page. Use the value of <code>SelectionStatus</code> to determine the status of the selection element.</p></li>
    /// <li>
    /// <p><i>SIGNATURE</i> - The location and confidence score of a signature detected on a document page. Can be returned as part of a Key-Value pair or a detected cell.</p></li>
    /// <li>
    /// <p><i>QUERY</i> - A question asked during the call of AnalyzeDocument. Contains an alias and an ID that attaches it to its answer.</p></li>
    /// <li>
    /// <p><i>QUERY_RESULT</i> - A response to a question asked during the call of analyze document. Comes with an alias and ID for ease of locating in a response. Also contains location and confidence score.</p></li>
    /// </ul>
    /// <p>The following BlockTypes are only returned for Amazon Textract Layout.</p>
    /// <ul>
    /// <li>
    /// <p><code>LAYOUT_TITLE</code> - The main title of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_HEADER</code> - Text located in the top margin of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_FOOTER</code> - Text located in the bottom margin of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_SECTION_HEADER</code> - The titles of sections within a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_PAGE_NUMBER</code> - The page number of the documents.</p></li>
    /// <li>
    /// <p><code>LAYOUT_LIST</code> - Any information grouped together in list form.</p></li>
    /// <li>
    /// <p><code>LAYOUT_FIGURE</code> - Indicates the location of an image in a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_TABLE</code> - Indicates the location of a table in the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_KEY_VALUE</code> - Indicates the location of form key-values in a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_TEXT</code> - Text that is present typically as a part of paragraphs in documents.</p></li>
    /// </ul>
    pub fn block_type(&self) -> ::std::option::Option<&crate::types::BlockType> {
        self.block_type.as_ref()
    }
    /// <p>The confidence score that Amazon Textract has in the accuracy of the recognized text and the accuracy of the geometry points around the recognized text.</p>
    pub fn confidence(&self) -> ::std::option::Option<f32> {
        self.confidence
    }
    /// <p>The word or line of text that's recognized by Amazon Textract.</p>
    pub fn text(&self) -> ::std::option::Option<&str> {
        self.text.as_deref()
    }
    /// <p>The kind of text that Amazon Textract has detected. Can check for handwritten text and printed text.</p>
    pub fn text_type(&self) -> ::std::option::Option<&crate::types::TextType> {
        self.text_type.as_ref()
    }
    /// <p>The row in which a table cell is located. The first row position is 1. <code>RowIndex</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn row_index(&self) -> ::std::option::Option<i32> {
        self.row_index
    }
    /// <p>The column in which a table cell appears. The first column position is 1. <code>ColumnIndex</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn column_index(&self) -> ::std::option::Option<i32> {
        self.column_index
    }
    /// <p>The number of rows that a table cell spans. <code>RowSpan</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn row_span(&self) -> ::std::option::Option<i32> {
        self.row_span
    }
    /// <p>The number of columns that a table cell spans. <code>ColumnSpan</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn column_span(&self) -> ::std::option::Option<i32> {
        self.column_span
    }
    /// <p>The location of the recognized text on the image. It includes an axis-aligned, coarse bounding box that surrounds the text, and a finer-grain polygon for more accurate spatial information.</p>
    pub fn geometry(&self) -> ::std::option::Option<&crate::types::Geometry> {
        self.geometry.as_ref()
    }
    /// <p>The identifier for the recognized text. The identifier is only unique for a single operation.</p>
    pub fn id(&self) -> ::std::option::Option<&str> {
        self.id.as_deref()
    }
    /// <p>A list of relationship objects that describe how blocks are related to each other. For example, a LINE block object contains a CHILD relationship type with the WORD blocks that make up the line of text. There aren't Relationship objects in the list for relationships that don't exist, such as when the current block has no child blocks.</p>
    ///
    /// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.relationships.is_none()`.
    pub fn relationships(&self) -> &[crate::types::Relationship] {
        self.relationships.as_deref().unwrap_or_default()
    }
    /// <p>The type of entity.</p>
    /// <p>The following entity types can be returned by FORMS analysis:</p>
    /// <ul>
    /// <li>
    /// <p><i>KEY</i> - An identifier for a field on the document.</p></li>
    /// <li>
    /// <p><i>VALUE</i> - The field text.</p></li>
    /// </ul>
    /// <p>The following entity types can be returned by TABLES analysis:</p>
    /// <ul>
    /// <li>
    /// <p><i>COLUMN_HEADER</i> - Identifies a cell that is a header of a column.</p></li>
    /// <li>
    /// <p><i>TABLE_TITLE</i> - Identifies a cell that is a title within the table.</p></li>
    /// <li>
    /// <p><i>TABLE_SECTION_TITLE</i> - Identifies a cell that is a title of a section within a table. A section title is a cell that typically spans an entire row above a section.</p></li>
    /// <li>
    /// <p><i>TABLE_FOOTER</i> - Identifies a cell that is a footer of a table.</p></li>
    /// <li>
    /// <p><i>TABLE_SUMMARY</i> - Identifies a summary cell of a table. A summary cell can be a row of a table or an additional, smaller table that contains summary information for another table.</p></li>
    /// <li>
    /// <p><i>STRUCTURED_TABLE </i> - Identifies a table with column headers where the content of each row corresponds to the headers.</p></li>
    /// <li>
    /// <p><i>SEMI_STRUCTURED_TABLE</i> - Identifies a non-structured table.</p></li>
    /// </ul>
    /// <p><code>EntityTypes</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    ///
    /// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.entity_types.is_none()`.
    pub fn entity_types(&self) -> &[crate::types::EntityType] {
        self.entity_types.as_deref().unwrap_or_default()
    }
    /// <p>The selection status of a selection element, such as an option button or check box.</p>
    pub fn selection_status(&self) -> ::std::option::Option<&crate::types::SelectionStatus> {
        self.selection_status.as_ref()
    }
    /// <p>The page on which a block was detected. <code>Page</code> is returned by synchronous and asynchronous operations. Page values greater than 1 are only returned for multipage documents that are in PDF or TIFF format. A scanned image (JPEG/PNG) provided to an asynchronous operation, even if it contains multiple document pages, is considered a single-page document. This means that for scanned images the value of <code>Page</code> is always 1.</p>
    pub fn page(&self) -> ::std::option::Option<i32> {
        self.page
    }
    /// <p></p>
    pub fn query(&self) -> ::std::option::Option<&crate::types::Query> {
        self.query.as_ref()
    }
}
impl Block {
    /// Creates a new builder-style object to manufacture [`Block`](crate::types::Block).
    pub fn builder() -> crate::types::builders::BlockBuilder {
        crate::types::builders::BlockBuilder::default()
    }
}

/// A builder for [`Block`](crate::types::Block).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct BlockBuilder {
    pub(crate) block_type: ::std::option::Option<crate::types::BlockType>,
    pub(crate) confidence: ::std::option::Option<f32>,
    pub(crate) text: ::std::option::Option<::std::string::String>,
    pub(crate) text_type: ::std::option::Option<crate::types::TextType>,
    pub(crate) row_index: ::std::option::Option<i32>,
    pub(crate) column_index: ::std::option::Option<i32>,
    pub(crate) row_span: ::std::option::Option<i32>,
    pub(crate) column_span: ::std::option::Option<i32>,
    pub(crate) geometry: ::std::option::Option<crate::types::Geometry>,
    pub(crate) id: ::std::option::Option<::std::string::String>,
    pub(crate) relationships: ::std::option::Option<::std::vec::Vec<crate::types::Relationship>>,
    pub(crate) entity_types: ::std::option::Option<::std::vec::Vec<crate::types::EntityType>>,
    pub(crate) selection_status: ::std::option::Option<crate::types::SelectionStatus>,
    pub(crate) page: ::std::option::Option<i32>,
    pub(crate) query: ::std::option::Option<crate::types::Query>,
}
impl BlockBuilder {
    /// <p>The type of text item that's recognized. In operations for text detection, the following types are returned:</p>
    /// <ul>
    /// <li>
    /// <p><i>PAGE</i> - Contains a list of the LINE <code>Block</code> objects that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>WORD</i> - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.</p></li>
    /// <li>
    /// <p><i>LINE</i> - A string of tab-delimited, contiguous words that are detected on a document page.</p></li>
    /// </ul>
    /// <p>In text analysis operations, the following types are returned:</p>
    /// <ul>
    /// <li>
    /// <p><i>PAGE</i> - Contains a list of child <code>Block</code> objects that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>KEY_VALUE_SET</i> - Stores the KEY and VALUE <code>Block</code> objects for linked text that's detected on a document page. Use the <code>EntityType</code> field to determine if a KEY_VALUE_SET object is a KEY <code>Block</code> object or a VALUE <code>Block</code> object.</p></li>
    /// <li>
    /// <p><i>WORD</i> - A word that's detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.</p></li>
    /// <li>
    /// <p><i>LINE</i> - A string of tab-delimited, contiguous words that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>TABLE</i> - A table that's detected on a document page. A table is grid-based information with two or more rows or columns, with a cell span of one row and one column each.</p></li>
    /// <li>
    /// <p><i>TABLE_TITLE</i> - The title of a table. A title is typically a line of text above or below a table, or embedded as the first row of a table.</p></li>
    /// <li>
    /// <p><i>TABLE_FOOTER</i> - The footer associated with a table. A footer is typically a line or lines of text below a table or embedded as the last row of a table.</p></li>
    /// <li>
    /// <p><i>CELL</i> - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.</p></li>
    /// <li>
    /// <p><i>MERGED_CELL</i> - A cell in a table whose content spans more than one row or column. The <code>Relationships</code> array for this cell contain data from individual cells.</p></li>
    /// <li>
    /// <p><i>SELECTION_ELEMENT</i> - A selection element such as an option button (radio button) or a check box that's detected on a document page. Use the value of <code>SelectionStatus</code> to determine the status of the selection element.</p></li>
    /// <li>
    /// <p><i>SIGNATURE</i> - The location and confidence score of a signature detected on a document page. Can be returned as part of a Key-Value pair or a detected cell.</p></li>
    /// <li>
    /// <p><i>QUERY</i> - A question asked during the call of AnalyzeDocument. Contains an alias and an ID that attaches it to its answer.</p></li>
    /// <li>
    /// <p><i>QUERY_RESULT</i> - A response to a question asked during the call of analyze document. Comes with an alias and ID for ease of locating in a response. Also contains location and confidence score.</p></li>
    /// </ul>
    /// <p>The following BlockTypes are only returned for Amazon Textract Layout.</p>
    /// <ul>
    /// <li>
    /// <p><code>LAYOUT_TITLE</code> - The main title of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_HEADER</code> - Text located in the top margin of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_FOOTER</code> - Text located in the bottom margin of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_SECTION_HEADER</code> - The titles of sections within a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_PAGE_NUMBER</code> - The page number of the documents.</p></li>
    /// <li>
    /// <p><code>LAYOUT_LIST</code> - Any information grouped together in list form.</p></li>
    /// <li>
    /// <p><code>LAYOUT_FIGURE</code> - Indicates the location of an image in a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_TABLE</code> - Indicates the location of a table in the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_KEY_VALUE</code> - Indicates the location of form key-values in a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_TEXT</code> - Text that is present typically as a part of paragraphs in documents.</p></li>
    /// </ul>
    pub fn block_type(mut self, input: crate::types::BlockType) -> Self {
        self.block_type = ::std::option::Option::Some(input);
        self
    }
    /// <p>The type of text item that's recognized. In operations for text detection, the following types are returned:</p>
    /// <ul>
    /// <li>
    /// <p><i>PAGE</i> - Contains a list of the LINE <code>Block</code> objects that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>WORD</i> - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.</p></li>
    /// <li>
    /// <p><i>LINE</i> - A string of tab-delimited, contiguous words that are detected on a document page.</p></li>
    /// </ul>
    /// <p>In text analysis operations, the following types are returned:</p>
    /// <ul>
    /// <li>
    /// <p><i>PAGE</i> - Contains a list of child <code>Block</code> objects that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>KEY_VALUE_SET</i> - Stores the KEY and VALUE <code>Block</code> objects for linked text that's detected on a document page. Use the <code>EntityType</code> field to determine if a KEY_VALUE_SET object is a KEY <code>Block</code> object or a VALUE <code>Block</code> object.</p></li>
    /// <li>
    /// <p><i>WORD</i> - A word that's detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.</p></li>
    /// <li>
    /// <p><i>LINE</i> - A string of tab-delimited, contiguous words that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>TABLE</i> - A table that's detected on a document page. A table is grid-based information with two or more rows or columns, with a cell span of one row and one column each.</p></li>
    /// <li>
    /// <p><i>TABLE_TITLE</i> - The title of a table. A title is typically a line of text above or below a table, or embedded as the first row of a table.</p></li>
    /// <li>
    /// <p><i>TABLE_FOOTER</i> - The footer associated with a table. A footer is typically a line or lines of text below a table or embedded as the last row of a table.</p></li>
    /// <li>
    /// <p><i>CELL</i> - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.</p></li>
    /// <li>
    /// <p><i>MERGED_CELL</i> - A cell in a table whose content spans more than one row or column. The <code>Relationships</code> array for this cell contain data from individual cells.</p></li>
    /// <li>
    /// <p><i>SELECTION_ELEMENT</i> - A selection element such as an option button (radio button) or a check box that's detected on a document page. Use the value of <code>SelectionStatus</code> to determine the status of the selection element.</p></li>
    /// <li>
    /// <p><i>SIGNATURE</i> - The location and confidence score of a signature detected on a document page. Can be returned as part of a Key-Value pair or a detected cell.</p></li>
    /// <li>
    /// <p><i>QUERY</i> - A question asked during the call of AnalyzeDocument. Contains an alias and an ID that attaches it to its answer.</p></li>
    /// <li>
    /// <p><i>QUERY_RESULT</i> - A response to a question asked during the call of analyze document. Comes with an alias and ID for ease of locating in a response. Also contains location and confidence score.</p></li>
    /// </ul>
    /// <p>The following BlockTypes are only returned for Amazon Textract Layout.</p>
    /// <ul>
    /// <li>
    /// <p><code>LAYOUT_TITLE</code> - The main title of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_HEADER</code> - Text located in the top margin of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_FOOTER</code> - Text located in the bottom margin of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_SECTION_HEADER</code> - The titles of sections within a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_PAGE_NUMBER</code> - The page number of the documents.</p></li>
    /// <li>
    /// <p><code>LAYOUT_LIST</code> - Any information grouped together in list form.</p></li>
    /// <li>
    /// <p><code>LAYOUT_FIGURE</code> - Indicates the location of an image in a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_TABLE</code> - Indicates the location of a table in the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_KEY_VALUE</code> - Indicates the location of form key-values in a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_TEXT</code> - Text that is present typically as a part of paragraphs in documents.</p></li>
    /// </ul>
    pub fn set_block_type(mut self, input: ::std::option::Option<crate::types::BlockType>) -> Self {
        self.block_type = input;
        self
    }
    /// <p>The type of text item that's recognized. In operations for text detection, the following types are returned:</p>
    /// <ul>
    /// <li>
    /// <p><i>PAGE</i> - Contains a list of the LINE <code>Block</code> objects that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>WORD</i> - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.</p></li>
    /// <li>
    /// <p><i>LINE</i> - A string of tab-delimited, contiguous words that are detected on a document page.</p></li>
    /// </ul>
    /// <p>In text analysis operations, the following types are returned:</p>
    /// <ul>
    /// <li>
    /// <p><i>PAGE</i> - Contains a list of child <code>Block</code> objects that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>KEY_VALUE_SET</i> - Stores the KEY and VALUE <code>Block</code> objects for linked text that's detected on a document page. Use the <code>EntityType</code> field to determine if a KEY_VALUE_SET object is a KEY <code>Block</code> object or a VALUE <code>Block</code> object.</p></li>
    /// <li>
    /// <p><i>WORD</i> - A word that's detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.</p></li>
    /// <li>
    /// <p><i>LINE</i> - A string of tab-delimited, contiguous words that are detected on a document page.</p></li>
    /// <li>
    /// <p><i>TABLE</i> - A table that's detected on a document page. A table is grid-based information with two or more rows or columns, with a cell span of one row and one column each.</p></li>
    /// <li>
    /// <p><i>TABLE_TITLE</i> - The title of a table. A title is typically a line of text above or below a table, or embedded as the first row of a table.</p></li>
    /// <li>
    /// <p><i>TABLE_FOOTER</i> - The footer associated with a table. A footer is typically a line or lines of text below a table or embedded as the last row of a table.</p></li>
    /// <li>
    /// <p><i>CELL</i> - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.</p></li>
    /// <li>
    /// <p><i>MERGED_CELL</i> - A cell in a table whose content spans more than one row or column. The <code>Relationships</code> array for this cell contain data from individual cells.</p></li>
    /// <li>
    /// <p><i>SELECTION_ELEMENT</i> - A selection element such as an option button (radio button) or a check box that's detected on a document page. Use the value of <code>SelectionStatus</code> to determine the status of the selection element.</p></li>
    /// <li>
    /// <p><i>SIGNATURE</i> - The location and confidence score of a signature detected on a document page. Can be returned as part of a Key-Value pair or a detected cell.</p></li>
    /// <li>
    /// <p><i>QUERY</i> - A question asked during the call of AnalyzeDocument. Contains an alias and an ID that attaches it to its answer.</p></li>
    /// <li>
    /// <p><i>QUERY_RESULT</i> - A response to a question asked during the call of analyze document. Comes with an alias and ID for ease of locating in a response. Also contains location and confidence score.</p></li>
    /// </ul>
    /// <p>The following BlockTypes are only returned for Amazon Textract Layout.</p>
    /// <ul>
    /// <li>
    /// <p><code>LAYOUT_TITLE</code> - The main title of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_HEADER</code> - Text located in the top margin of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_FOOTER</code> - Text located in the bottom margin of the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_SECTION_HEADER</code> - The titles of sections within a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_PAGE_NUMBER</code> - The page number of the documents.</p></li>
    /// <li>
    /// <p><code>LAYOUT_LIST</code> - Any information grouped together in list form.</p></li>
    /// <li>
    /// <p><code>LAYOUT_FIGURE</code> - Indicates the location of an image in a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_TABLE</code> - Indicates the location of a table in the document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_KEY_VALUE</code> - Indicates the location of form key-values in a document.</p></li>
    /// <li>
    /// <p><code>LAYOUT_TEXT</code> - Text that is present typically as a part of paragraphs in documents.</p></li>
    /// </ul>
    pub fn get_block_type(&self) -> &::std::option::Option<crate::types::BlockType> {
        &self.block_type
    }
    /// <p>The confidence score that Amazon Textract has in the accuracy of the recognized text and the accuracy of the geometry points around the recognized text.</p>
    pub fn confidence(mut self, input: f32) -> Self {
        self.confidence = ::std::option::Option::Some(input);
        self
    }
    /// <p>The confidence score that Amazon Textract has in the accuracy of the recognized text and the accuracy of the geometry points around the recognized text.</p>
    pub fn set_confidence(mut self, input: ::std::option::Option<f32>) -> Self {
        self.confidence = input;
        self
    }
    /// <p>The confidence score that Amazon Textract has in the accuracy of the recognized text and the accuracy of the geometry points around the recognized text.</p>
    pub fn get_confidence(&self) -> &::std::option::Option<f32> {
        &self.confidence
    }
    /// <p>The word or line of text that's recognized by Amazon Textract.</p>
    pub fn text(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.text = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The word or line of text that's recognized by Amazon Textract.</p>
    pub fn set_text(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.text = input;
        self
    }
    /// <p>The word or line of text that's recognized by Amazon Textract.</p>
    pub fn get_text(&self) -> &::std::option::Option<::std::string::String> {
        &self.text
    }
    /// <p>The kind of text that Amazon Textract has detected. Can check for handwritten text and printed text.</p>
    pub fn text_type(mut self, input: crate::types::TextType) -> Self {
        self.text_type = ::std::option::Option::Some(input);
        self
    }
    /// <p>The kind of text that Amazon Textract has detected. Can check for handwritten text and printed text.</p>
    pub fn set_text_type(mut self, input: ::std::option::Option<crate::types::TextType>) -> Self {
        self.text_type = input;
        self
    }
    /// <p>The kind of text that Amazon Textract has detected. Can check for handwritten text and printed text.</p>
    pub fn get_text_type(&self) -> &::std::option::Option<crate::types::TextType> {
        &self.text_type
    }
    /// <p>The row in which a table cell is located. The first row position is 1. <code>RowIndex</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn row_index(mut self, input: i32) -> Self {
        self.row_index = ::std::option::Option::Some(input);
        self
    }
    /// <p>The row in which a table cell is located. The first row position is 1. <code>RowIndex</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn set_row_index(mut self, input: ::std::option::Option<i32>) -> Self {
        self.row_index = input;
        self
    }
    /// <p>The row in which a table cell is located. The first row position is 1. <code>RowIndex</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn get_row_index(&self) -> &::std::option::Option<i32> {
        &self.row_index
    }
    /// <p>The column in which a table cell appears. The first column position is 1. <code>ColumnIndex</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn column_index(mut self, input: i32) -> Self {
        self.column_index = ::std::option::Option::Some(input);
        self
    }
    /// <p>The column in which a table cell appears. The first column position is 1. <code>ColumnIndex</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn set_column_index(mut self, input: ::std::option::Option<i32>) -> Self {
        self.column_index = input;
        self
    }
    /// <p>The column in which a table cell appears. The first column position is 1. <code>ColumnIndex</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn get_column_index(&self) -> &::std::option::Option<i32> {
        &self.column_index
    }
    /// <p>The number of rows that a table cell spans. <code>RowSpan</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn row_span(mut self, input: i32) -> Self {
        self.row_span = ::std::option::Option::Some(input);
        self
    }
    /// <p>The number of rows that a table cell spans. <code>RowSpan</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn set_row_span(mut self, input: ::std::option::Option<i32>) -> Self {
        self.row_span = input;
        self
    }
    /// <p>The number of rows that a table cell spans. <code>RowSpan</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn get_row_span(&self) -> &::std::option::Option<i32> {
        &self.row_span
    }
    /// <p>The number of columns that a table cell spans. <code>ColumnSpan</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn column_span(mut self, input: i32) -> Self {
        self.column_span = ::std::option::Option::Some(input);
        self
    }
    /// <p>The number of columns that a table cell spans. <code>ColumnSpan</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn set_column_span(mut self, input: ::std::option::Option<i32>) -> Self {
        self.column_span = input;
        self
    }
    /// <p>The number of columns that a table cell spans. <code>ColumnSpan</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn get_column_span(&self) -> &::std::option::Option<i32> {
        &self.column_span
    }
    /// <p>The location of the recognized text on the image. It includes an axis-aligned, coarse bounding box that surrounds the text, and a finer-grain polygon for more accurate spatial information.</p>
    pub fn geometry(mut self, input: crate::types::Geometry) -> Self {
        self.geometry = ::std::option::Option::Some(input);
        self
    }
    /// <p>The location of the recognized text on the image. It includes an axis-aligned, coarse bounding box that surrounds the text, and a finer-grain polygon for more accurate spatial information.</p>
    pub fn set_geometry(mut self, input: ::std::option::Option<crate::types::Geometry>) -> Self {
        self.geometry = input;
        self
    }
    /// <p>The location of the recognized text on the image. It includes an axis-aligned, coarse bounding box that surrounds the text, and a finer-grain polygon for more accurate spatial information.</p>
    pub fn get_geometry(&self) -> &::std::option::Option<crate::types::Geometry> {
        &self.geometry
    }
    /// <p>The identifier for the recognized text. The identifier is only unique for a single operation.</p>
    pub fn id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.id = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The identifier for the recognized text. The identifier is only unique for a single operation.</p>
    pub fn set_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.id = input;
        self
    }
    /// <p>The identifier for the recognized text. The identifier is only unique for a single operation.</p>
    pub fn get_id(&self) -> &::std::option::Option<::std::string::String> {
        &self.id
    }
    /// Appends an item to `relationships`.
    ///
    /// To override the contents of this collection use [`set_relationships`](Self::set_relationships).
    ///
    /// <p>A list of relationship objects that describe how blocks are related to each other. For example, a LINE block object contains a CHILD relationship type with the WORD blocks that make up the line of text. There aren't Relationship objects in the list for relationships that don't exist, such as when the current block has no child blocks.</p>
    pub fn relationships(mut self, input: crate::types::Relationship) -> Self {
        let mut v = self.relationships.unwrap_or_default();
        v.push(input);
        self.relationships = ::std::option::Option::Some(v);
        self
    }
    /// <p>A list of relationship objects that describe how blocks are related to each other. For example, a LINE block object contains a CHILD relationship type with the WORD blocks that make up the line of text. There aren't Relationship objects in the list for relationships that don't exist, such as when the current block has no child blocks.</p>
    pub fn set_relationships(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::Relationship>>) -> Self {
        self.relationships = input;
        self
    }
    /// <p>A list of relationship objects that describe how blocks are related to each other. For example, a LINE block object contains a CHILD relationship type with the WORD blocks that make up the line of text. There aren't Relationship objects in the list for relationships that don't exist, such as when the current block has no child blocks.</p>
    pub fn get_relationships(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::Relationship>> {
        &self.relationships
    }
    /// Appends an item to `entity_types`.
    ///
    /// To override the contents of this collection use [`set_entity_types`](Self::set_entity_types).
    ///
    /// <p>The type of entity.</p>
    /// <p>The following entity types can be returned by FORMS analysis:</p>
    /// <ul>
    /// <li>
    /// <p><i>KEY</i> - An identifier for a field on the document.</p></li>
    /// <li>
    /// <p><i>VALUE</i> - The field text.</p></li>
    /// </ul>
    /// <p>The following entity types can be returned by TABLES analysis:</p>
    /// <ul>
    /// <li>
    /// <p><i>COLUMN_HEADER</i> - Identifies a cell that is a header of a column.</p></li>
    /// <li>
    /// <p><i>TABLE_TITLE</i> - Identifies a cell that is a title within the table.</p></li>
    /// <li>
    /// <p><i>TABLE_SECTION_TITLE</i> - Identifies a cell that is a title of a section within a table. A section title is a cell that typically spans an entire row above a section.</p></li>
    /// <li>
    /// <p><i>TABLE_FOOTER</i> - Identifies a cell that is a footer of a table.</p></li>
    /// <li>
    /// <p><i>TABLE_SUMMARY</i> - Identifies a summary cell of a table. A summary cell can be a row of a table or an additional, smaller table that contains summary information for another table.</p></li>
    /// <li>
    /// <p><i>STRUCTURED_TABLE </i> - Identifies a table with column headers where the content of each row corresponds to the headers.</p></li>
    /// <li>
    /// <p><i>SEMI_STRUCTURED_TABLE</i> - Identifies a non-structured table.</p></li>
    /// </ul>
    /// <p><code>EntityTypes</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn entity_types(mut self, input: crate::types::EntityType) -> Self {
        let mut v = self.entity_types.unwrap_or_default();
        v.push(input);
        self.entity_types = ::std::option::Option::Some(v);
        self
    }
    /// <p>The type of entity.</p>
    /// <p>The following entity types can be returned by FORMS analysis:</p>
    /// <ul>
    /// <li>
    /// <p><i>KEY</i> - An identifier for a field on the document.</p></li>
    /// <li>
    /// <p><i>VALUE</i> - The field text.</p></li>
    /// </ul>
    /// <p>The following entity types can be returned by TABLES analysis:</p>
    /// <ul>
    /// <li>
    /// <p><i>COLUMN_HEADER</i> - Identifies a cell that is a header of a column.</p></li>
    /// <li>
    /// <p><i>TABLE_TITLE</i> - Identifies a cell that is a title within the table.</p></li>
    /// <li>
    /// <p><i>TABLE_SECTION_TITLE</i> - Identifies a cell that is a title of a section within a table. A section title is a cell that typically spans an entire row above a section.</p></li>
    /// <li>
    /// <p><i>TABLE_FOOTER</i> - Identifies a cell that is a footer of a table.</p></li>
    /// <li>
    /// <p><i>TABLE_SUMMARY</i> - Identifies a summary cell of a table. A summary cell can be a row of a table or an additional, smaller table that contains summary information for another table.</p></li>
    /// <li>
    /// <p><i>STRUCTURED_TABLE </i> - Identifies a table with column headers where the content of each row corresponds to the headers.</p></li>
    /// <li>
    /// <p><i>SEMI_STRUCTURED_TABLE</i> - Identifies a non-structured table.</p></li>
    /// </ul>
    /// <p><code>EntityTypes</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn set_entity_types(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::EntityType>>) -> Self {
        self.entity_types = input;
        self
    }
    /// <p>The type of entity.</p>
    /// <p>The following entity types can be returned by FORMS analysis:</p>
    /// <ul>
    /// <li>
    /// <p><i>KEY</i> - An identifier for a field on the document.</p></li>
    /// <li>
    /// <p><i>VALUE</i> - The field text.</p></li>
    /// </ul>
    /// <p>The following entity types can be returned by TABLES analysis:</p>
    /// <ul>
    /// <li>
    /// <p><i>COLUMN_HEADER</i> - Identifies a cell that is a header of a column.</p></li>
    /// <li>
    /// <p><i>TABLE_TITLE</i> - Identifies a cell that is a title within the table.</p></li>
    /// <li>
    /// <p><i>TABLE_SECTION_TITLE</i> - Identifies a cell that is a title of a section within a table. A section title is a cell that typically spans an entire row above a section.</p></li>
    /// <li>
    /// <p><i>TABLE_FOOTER</i> - Identifies a cell that is a footer of a table.</p></li>
    /// <li>
    /// <p><i>TABLE_SUMMARY</i> - Identifies a summary cell of a table. A summary cell can be a row of a table or an additional, smaller table that contains summary information for another table.</p></li>
    /// <li>
    /// <p><i>STRUCTURED_TABLE </i> - Identifies a table with column headers where the content of each row corresponds to the headers.</p></li>
    /// <li>
    /// <p><i>SEMI_STRUCTURED_TABLE</i> - Identifies a non-structured table.</p></li>
    /// </ul>
    /// <p><code>EntityTypes</code> isn't returned by <code>DetectDocumentText</code> and <code>GetDocumentTextDetection</code>.</p>
    pub fn get_entity_types(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::EntityType>> {
        &self.entity_types
    }
    /// <p>The selection status of a selection element, such as an option button or check box.</p>
    pub fn selection_status(mut self, input: crate::types::SelectionStatus) -> Self {
        self.selection_status = ::std::option::Option::Some(input);
        self
    }
    /// <p>The selection status of a selection element, such as an option button or check box.</p>
    pub fn set_selection_status(mut self, input: ::std::option::Option<crate::types::SelectionStatus>) -> Self {
        self.selection_status = input;
        self
    }
    /// <p>The selection status of a selection element, such as an option button or check box.</p>
    pub fn get_selection_status(&self) -> &::std::option::Option<crate::types::SelectionStatus> {
        &self.selection_status
    }
    /// <p>The page on which a block was detected. <code>Page</code> is returned by synchronous and asynchronous operations. Page values greater than 1 are only returned for multipage documents that are in PDF or TIFF format. A scanned image (JPEG/PNG) provided to an asynchronous operation, even if it contains multiple document pages, is considered a single-page document. This means that for scanned images the value of <code>Page</code> is always 1.</p>
    pub fn page(mut self, input: i32) -> Self {
        self.page = ::std::option::Option::Some(input);
        self
    }
    /// <p>The page on which a block was detected. <code>Page</code> is returned by synchronous and asynchronous operations. Page values greater than 1 are only returned for multipage documents that are in PDF or TIFF format. A scanned image (JPEG/PNG) provided to an asynchronous operation, even if it contains multiple document pages, is considered a single-page document. This means that for scanned images the value of <code>Page</code> is always 1.</p>
    pub fn set_page(mut self, input: ::std::option::Option<i32>) -> Self {
        self.page = input;
        self
    }
    /// <p>The page on which a block was detected. <code>Page</code> is returned by synchronous and asynchronous operations. Page values greater than 1 are only returned for multipage documents that are in PDF or TIFF format. A scanned image (JPEG/PNG) provided to an asynchronous operation, even if it contains multiple document pages, is considered a single-page document. This means that for scanned images the value of <code>Page</code> is always 1.</p>
    pub fn get_page(&self) -> &::std::option::Option<i32> {
        &self.page
    }
    /// <p></p>
    pub fn query(mut self, input: crate::types::Query) -> Self {
        self.query = ::std::option::Option::Some(input);
        self
    }
    /// <p></p>
    pub fn set_query(mut self, input: ::std::option::Option<crate::types::Query>) -> Self {
        self.query = input;
        self
    }
    /// <p></p>
    pub fn get_query(&self) -> &::std::option::Option<crate::types::Query> {
        &self.query
    }
    /// Consumes the builder and constructs a [`Block`](crate::types::Block).
    pub fn build(self) -> crate::types::Block {
        crate::types::Block {
            block_type: self.block_type,
            confidence: self.confidence,
            text: self.text,
            text_type: self.text_type,
            row_index: self.row_index,
            column_index: self.column_index,
            row_span: self.row_span,
            column_span: self.column_span,
            geometry: self.geometry,
            id: self.id,
            relationships: self.relationships,
            entity_types: self.entity_types,
            selection_status: self.selection_status,
            page: self.page,
            query: self.query,
        }
    }
}