@@ -123,6 +123,7 @@ Class | Method | HTTP request | Description
123
123
* PdfApi* | [ ** get_bookmark** ] ( docs/PdfApi.md#get_bookmark ) | ** GET** /pdf/\{ name}/bookmarks/bookmark/\{ bookmarkPath} | Read document bookmark.
124
124
* PdfApi* | [ ** get_bookmarks** ] ( docs/PdfApi.md#get_bookmarks ) | ** GET** /pdf/\{ name}/bookmarks/list/\{ bookmarkPath} | Read document bookmarks node list.
125
125
* PdfApi* | [ ** get_caret_annotation** ] ( docs/PdfApi.md#get_caret_annotation ) | ** GET** /pdf/\{ name}/annotations/caret/\{ annotationId} | Read document page caret annotation by ID.
126
+ * PdfApi* | [ ** get_check_box_field** ] ( docs/PdfApi.md#get_check_box_field ) | ** GET** /pdf/\{ name}/fields/checkbox/\{ fieldName} | Read document checkbox field by name.
126
127
* PdfApi* | [ ** get_circle_annotation** ] ( docs/PdfApi.md#get_circle_annotation ) | ** GET** /pdf/\{ name}/annotations/circle/\{ annotationId} | Read document page circle annotation by ID.
127
128
* PdfApi* | [ ** get_disc_usage** ] ( docs/PdfApi.md#get_disc_usage ) | ** GET** /pdf/storage/disc | Get disc usage
128
129
* PdfApi* | [ ** get_document** ] ( docs/PdfApi.md#get_document ) | ** GET** /pdf/\{ name} | Read common document info.
@@ -131,6 +132,7 @@ Class | Method | HTTP request | Description
131
132
* PdfApi* | [ ** get_document_attachments** ] ( docs/PdfApi.md#get_document_attachments ) | ** GET** /pdf/\{ name}/attachments | Read document attachments info.
132
133
* PdfApi* | [ ** get_document_bookmarks** ] ( docs/PdfApi.md#get_document_bookmarks ) | ** GET** /pdf/\{ name}/bookmarks/tree | Read document bookmarks tree.
133
134
* PdfApi* | [ ** get_document_caret_annotations** ] ( docs/PdfApi.md#get_document_caret_annotations ) | ** GET** /pdf/\{ name}/annotations/caret | Read document caret annotations.
135
+ * PdfApi* | [ ** get_document_check_box_fields** ] ( docs/PdfApi.md#get_document_check_box_fields ) | ** GET** /pdf/\{ name}/fields/checkbox | Read document checkbox fields.
134
136
* PdfApi* | [ ** get_document_circle_annotations** ] ( docs/PdfApi.md#get_document_circle_annotations ) | ** GET** /pdf/\{ name}/annotations/circle | Read document circle annotations.
135
137
* PdfApi* | [ ** get_document_file_attachment_annotations** ] ( docs/PdfApi.md#get_document_file_attachment_annotations ) | ** GET** /pdf/\{ name}/annotations/fileattachment | Read document FileAttachment annotations.
136
138
* PdfApi* | [ ** get_document_free_text_annotations** ] ( docs/PdfApi.md#get_document_free_text_annotations ) | ** GET** /pdf/\{ name}/annotations/freetext | Read document free text annotations.
@@ -144,6 +146,7 @@ Class | Method | HTTP request | Description
144
146
* PdfApi* | [ ** get_document_popup_annotations_by_parent** ] ( docs/PdfApi.md#get_document_popup_annotations_by_parent ) | ** GET** /pdf/\{ name}/annotations/\{ annotationId}/popup | Read document popup annotations by parent id.
145
147
* PdfApi* | [ ** get_document_properties** ] ( docs/PdfApi.md#get_document_properties ) | ** GET** /pdf/\{ name}/documentproperties | Read document properties.
146
148
* PdfApi* | [ ** get_document_property** ] ( docs/PdfApi.md#get_document_property ) | ** GET** /pdf/\{ name}/documentproperties/\{ propertyName} | Read document property by name.
149
+ * PdfApi* | [ ** get_document_radio_button_fields** ] ( docs/PdfApi.md#get_document_radio_button_fields ) | ** GET** /pdf/\{ name}/fields/radiobutton | Read document radiobutton fields.
147
150
* PdfApi* | [ ** get_document_redaction_annotations** ] ( docs/PdfApi.md#get_document_redaction_annotations ) | ** GET** /pdf/\{ name}/annotations/redaction | Read document redaction annotations.
148
151
* PdfApi* | [ ** get_document_screen_annotations** ] ( docs/PdfApi.md#get_document_screen_annotations ) | ** GET** /pdf/\{ name}/annotations/screen | Read document screen annotations.
149
152
* PdfApi* | [ ** get_document_signature_fields** ] ( docs/PdfApi.md#get_document_signature_fields ) | ** GET** /pdf/\{ name}/fields/signature | Read document signature fields.
@@ -190,6 +193,7 @@ Class | Method | HTTP request | Description
190
193
* PdfApi* | [ ** get_page** ] ( docs/PdfApi.md#get_page ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber} | Read document page info.
191
194
* PdfApi* | [ ** get_page_annotations** ] ( docs/PdfApi.md#get_page_annotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations | Read document page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
192
195
* PdfApi* | [ ** get_page_caret_annotations** ] ( docs/PdfApi.md#get_page_caret_annotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/caret | Read document page caret annotations.
196
+ * PdfApi* | [ ** get_page_check_box_fields** ] ( docs/PdfApi.md#get_page_check_box_fields ) | ** GET** /pdf/\{ name}/page/\{ pageNumber}/fields/checkbox | Read document page checkbox fields.
193
197
* PdfApi* | [ ** get_page_circle_annotations** ] ( docs/PdfApi.md#get_page_circle_annotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/circle | Read document page circle annotations.
194
198
* PdfApi* | [ ** get_page_convert_to_bmp** ] ( docs/PdfApi.md#get_page_convert_to_bmp ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/convert/bmp | Convert document page to Bmp image and return resulting file in response.
195
199
* PdfApi* | [ ** get_page_convert_to_emf** ] ( docs/PdfApi.md#get_page_convert_to_emf ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/convert/emf | Convert document page to Emf image and return resulting file in response.
@@ -208,6 +212,7 @@ Class | Method | HTTP request | Description
208
212
* PdfApi* | [ ** get_page_poly_line_annotations** ] ( docs/PdfApi.md#get_page_poly_line_annotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/polyline | Read document page polyline annotations.
209
213
* PdfApi* | [ ** get_page_polygon_annotations** ] ( docs/PdfApi.md#get_page_polygon_annotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/polygon | Read document page polygon annotations.
210
214
* PdfApi* | [ ** get_page_popup_annotations** ] ( docs/PdfApi.md#get_page_popup_annotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/popup | Read document page popup annotations.
215
+ * PdfApi* | [ ** get_page_radio_button_fields** ] ( docs/PdfApi.md#get_page_radio_button_fields ) | ** GET** /pdf/\{ name}/page/\{ pageNumber}/fields/radiobutton | Read document page radiobutton fields.
211
216
* PdfApi* | [ ** get_page_redaction_annotations** ] ( docs/PdfApi.md#get_page_redaction_annotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/redaction | Read document page redaction annotations.
212
217
* PdfApi* | [ ** get_page_screen_annotations** ] ( docs/PdfApi.md#get_page_screen_annotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/screen | Read document page screen annotations.
213
218
* PdfApi* | [ ** get_page_signature_fields** ] ( docs/PdfApi.md#get_page_signature_fields ) | ** GET** /pdf/\{ name}/page/\{ pageNumber}/fields/signature | Read document page signature fields.
@@ -241,6 +246,7 @@ Class | Method | HTTP request | Description
241
246
* PdfApi* | [ ** get_polygon_annotation** ] ( docs/PdfApi.md#get_polygon_annotation ) | ** GET** /pdf/\{ name}/annotations/polygon/\{ annotationId} | Read document page polygon annotation by ID.
242
247
* PdfApi* | [ ** get_popup_annotation** ] ( docs/PdfApi.md#get_popup_annotation ) | ** GET** /pdf/\{ name}/annotations/popup/\{ annotationId} | Read document page popup annotation by ID.
243
248
* PdfApi* | [ ** get_ps_in_storage_to_pdf** ] ( docs/PdfApi.md#get_ps_in_storage_to_pdf ) | ** GET** /pdf/create/ps | Convert PS file (located on storage) to PDF format and return resulting file in response.
249
+ * PdfApi* | [ ** get_radio_button_field** ] ( docs/PdfApi.md#get_radio_button_field ) | ** GET** /pdf/\{ name}/fields/radiobutton/\{ fieldName} | Read document RadioButton field by name.
244
250
* PdfApi* | [ ** get_redaction_annotation** ] ( docs/PdfApi.md#get_redaction_annotation ) | ** GET** /pdf/\{ name}/annotations/redaction/\{ annotationId} | Read document page redaction annotation by ID.
245
251
* PdfApi* | [ ** get_screen_annotation** ] ( docs/PdfApi.md#get_screen_annotation ) | ** GET** /pdf/\{ name}/annotations/screen/\{ annotationId} | Read document page screen annotation by ID.
246
252
* PdfApi* | [ ** get_screen_annotation_data** ] ( docs/PdfApi.md#get_screen_annotation_data ) | ** GET** /pdf/\{ name}/annotations/screen/\{ annotationId}/data | Read document page screen annotation by ID.
@@ -271,6 +277,7 @@ Class | Method | HTTP request | Description
271
277
* PdfApi* | [ ** post_append_document** ] ( docs/PdfApi.md#post_append_document ) | ** POST** /pdf/\{ name}/appendDocument | Append document to existing one.
272
278
* PdfApi* | [ ** post_bookmark** ] ( docs/PdfApi.md#post_bookmark ) | ** POST** /pdf/\{ name}/bookmarks/bookmark/\{ bookmarkPath} | Add document bookmarks.
273
279
* PdfApi* | [ ** post_change_password_document_in_storage** ] ( docs/PdfApi.md#post_change_password_document_in_storage ) | ** POST** /pdf/\{ name}/changepassword | Change document password in storage.
280
+ * PdfApi* | [ ** post_check_box_fields** ] ( docs/PdfApi.md#post_check_box_fields ) | ** POST** /pdf/\{ name}/fields/checkbox | Add document checkbox fields.
274
281
* PdfApi* | [ ** post_create_field** ] ( docs/PdfApi.md#post_create_field ) | ** POST** /pdf/\{ name}/fields | Create field.
275
282
* PdfApi* | [ ** post_decrypt_document_in_storage** ] ( docs/PdfApi.md#post_decrypt_document_in_storage ) | ** POST** /pdf/\{ name}/decrypt | Decrypt document in storage.
276
283
* PdfApi* | [ ** post_document_image_footer** ] ( docs/PdfApi.md#post_document_image_footer ) | ** POST** /pdf/\{ name}/footer/image | Add document image footer.
@@ -314,6 +321,7 @@ Class | Method | HTTP request | Description
314
321
* PdfApi* | [ ** post_page_text_stamps** ] ( docs/PdfApi.md#post_page_text_stamps ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/stamps/text | Add document page text stamps.
315
322
* PdfApi* | [ ** post_page_underline_annotations** ] ( docs/PdfApi.md#post_page_underline_annotations ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/annotations/underline | Add document page underline annotations.
316
323
* PdfApi* | [ ** post_popup_annotation** ] ( docs/PdfApi.md#post_popup_annotation ) | ** POST** /pdf/\{ name}/annotations/\{ annotationId}/popup | Add document popup annotations.
324
+ * PdfApi* | [ ** post_radio_button_fields** ] ( docs/PdfApi.md#post_radio_button_fields ) | ** POST** /pdf/\{ name}/fields/radiobutton | Add document RadioButton fields.
317
325
* PdfApi* | [ ** post_sign_document** ] ( docs/PdfApi.md#post_sign_document ) | ** POST** /pdf/\{ name}/sign | Sign document.
318
326
* PdfApi* | [ ** post_sign_page** ] ( docs/PdfApi.md#post_sign_page ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/sign | Sign page.
319
327
* PdfApi* | [ ** post_split_document** ] ( docs/PdfApi.md#post_split_document ) | ** POST** /pdf/\{ name}/split | Split document to parts.
@@ -324,6 +332,7 @@ Class | Method | HTTP request | Description
324
332
* PdfApi* | [ ** put_bookmark** ] ( docs/PdfApi.md#put_bookmark ) | ** PUT** /pdf/\{ name}/bookmarks/bookmark/\{ bookmarkPath} | Update document bookmark.
325
333
* PdfApi* | [ ** put_caret_annotation** ] ( docs/PdfApi.md#put_caret_annotation ) | ** PUT** /pdf/\{ name}/annotations/caret/\{ annotationId} | Replace document caret annotation
326
334
* PdfApi* | [ ** put_change_password_document** ] ( docs/PdfApi.md#put_change_password_document ) | ** PUT** /pdf/changepassword | Change document password from content.
335
+ * PdfApi* | [ ** put_check_box_field** ] ( docs/PdfApi.md#put_check_box_field ) | ** PUT** /pdf/\{ name}/fields/checkbox/\{ fieldName} | Replace document checkbox field
327
336
* PdfApi* | [ ** put_circle_annotation** ] ( docs/PdfApi.md#put_circle_annotation ) | ** PUT** /pdf/\{ name}/annotations/circle/\{ annotationId} | Replace document circle annotation
328
337
* PdfApi* | [ ** put_create_document** ] ( docs/PdfApi.md#put_create_document ) | ** PUT** /pdf/\{ name} | Create empty document.
329
338
* PdfApi* | [ ** put_decrypt_document** ] ( docs/PdfApi.md#put_decrypt_document ) | ** PUT** /pdf/decrypt | Decrypt document from content.
@@ -397,6 +406,7 @@ Class | Method | HTTP request | Description
397
406
* PdfApi* | [ ** put_popup_annotation** ] ( docs/PdfApi.md#put_popup_annotation ) | ** PUT** /pdf/\{ name}/annotations/popup/\{ annotationId} | Replace document popup annotation
398
407
* PdfApi* | [ ** put_privileges** ] ( docs/PdfApi.md#put_privileges ) | ** PUT** /pdf/\{ name}/privileges | Update privilege document.
399
408
* PdfApi* | [ ** put_ps_in_storage_to_pdf** ] ( docs/PdfApi.md#put_ps_in_storage_to_pdf ) | ** PUT** /pdf/\{ name}/create/ps | Convert PS file (located on storage) to PDF format and upload resulting file to storage.
409
+ * PdfApi* | [ ** put_radio_button_field** ] ( docs/PdfApi.md#put_radio_button_field ) | ** PUT** /pdf/\{ name}/fields/radiobutton/\{ fieldName} | Replace document RadioButton field
400
410
* PdfApi* | [ ** put_redaction_annotation** ] ( docs/PdfApi.md#put_redaction_annotation ) | ** PUT** /pdf/\{ name}/annotations/redaction/\{ annotationId} | Replace document redaction annotation
401
411
* PdfApi* | [ ** put_replace_image** ] ( docs/PdfApi.md#put_replace_image ) | ** PUT** /pdf/\{ name}/images/\{ imageId} | Replace document image.
402
412
* PdfApi* | [ ** put_screen_annotation** ] ( docs/PdfApi.md#put_screen_annotation ) | ** PUT** /pdf/\{ name}/annotations/screen/\{ annotationId} | Replace document screen annotation
@@ -436,6 +446,7 @@ Class | Method | HTTP request | Description
436
446
- [ AsposeResponse] ( docs/AsposeResponse.md )
437
447
- [ BorderCornerStyle] ( docs/BorderCornerStyle.md )
438
448
- [ BorderInfo] ( docs/BorderInfo.md )
449
+ - [ BoxStyle] ( docs/BoxStyle.md )
439
450
- [ CapStyle] ( docs/CapStyle.md )
440
451
- [ CaptionPosition] ( docs/CaptionPosition.md )
441
452
- [ CaretSymbol] ( docs/CaretSymbol.md )
@@ -483,6 +494,7 @@ Class | Method | HTTP request | Description
483
494
- [ MergeDocuments] ( docs/MergeDocuments.md )
484
495
- [ ObjectExist] ( docs/ObjectExist.md )
485
496
- [ OptimizeOptions] ( docs/OptimizeOptions.md )
497
+ - [ Option] ( docs/Option.md )
486
498
- [ PageWordCount] ( docs/PageWordCount.md )
487
499
- [ Paragraph] ( docs/Paragraph.md )
488
500
- [ PartsEmbeddingModes] ( docs/PartsEmbeddingModes.md )
@@ -537,6 +549,9 @@ Class | Method | HTTP request | Description
537
549
- [ CaretAnnotationResponse] ( docs/CaretAnnotationResponse.md )
538
550
- [ CaretAnnotations] ( docs/CaretAnnotations.md )
539
551
- [ CaretAnnotationsResponse] ( docs/CaretAnnotationsResponse.md )
552
+ - [ CheckBoxFieldResponse] ( docs/CheckBoxFieldResponse.md )
553
+ - [ CheckBoxFields] ( docs/CheckBoxFields.md )
554
+ - [ CheckBoxFieldsResponse] ( docs/CheckBoxFieldsResponse.md )
540
555
- [ CircleAnnotationResponse] ( docs/CircleAnnotationResponse.md )
541
556
- [ CircleAnnotations] ( docs/CircleAnnotations.md )
542
557
- [ CircleAnnotationsResponse] ( docs/CircleAnnotationsResponse.md )
@@ -591,6 +606,9 @@ Class | Method | HTTP request | Description
591
606
- [ PopupAnnotationResponse] ( docs/PopupAnnotationResponse.md )
592
607
- [ PopupAnnotations] ( docs/PopupAnnotations.md )
593
608
- [ PopupAnnotationsResponse] ( docs/PopupAnnotationsResponse.md )
609
+ - [ RadioButtonFieldResponse] ( docs/RadioButtonFieldResponse.md )
610
+ - [ RadioButtonFields] ( docs/RadioButtonFields.md )
611
+ - [ RadioButtonFieldsResponse] ( docs/RadioButtonFieldsResponse.md )
594
612
- [ RedactionAnnotationResponse] ( docs/RedactionAnnotationResponse.md )
595
613
- [ RedactionAnnotations] ( docs/RedactionAnnotations.md )
596
614
- [ RedactionAnnotationsResponse] ( docs/RedactionAnnotationsResponse.md )
@@ -640,6 +658,8 @@ Class | Method | HTTP request | Description
640
658
- [ UnderlineAnnotationsResponse] ( docs/UnderlineAnnotationsResponse.md )
641
659
- [ WordCountResponse] ( docs/WordCountResponse.md )
642
660
- [ AnnotationInfo] ( docs/AnnotationInfo.md )
661
+ - [ CheckBoxField] ( docs/CheckBoxField.md )
662
+ - [ ChoiceField] ( docs/ChoiceField.md )
643
663
- [ ImageFooter] ( docs/ImageFooter.md )
644
664
- [ ImageHeader] ( docs/ImageHeader.md )
645
665
- [ ImageStamp] ( docs/ImageStamp.md )
@@ -648,6 +668,7 @@ Class | Method | HTTP request | Description
648
668
- [ PageNumberStamp] ( docs/PageNumberStamp.md )
649
669
- [ PdfPageStamp] ( docs/PdfPageStamp.md )
650
670
- [ PopupAnnotation] ( docs/PopupAnnotation.md )
671
+ - [ RadioButtonOptionField] ( docs/RadioButtonOptionField.md )
651
672
- [ RedactionAnnotation] ( docs/RedactionAnnotation.md )
652
673
- [ ScreenAnnotation] ( docs/ScreenAnnotation.md )
653
674
- [ SignatureField] ( docs/SignatureField.md )
@@ -664,6 +685,7 @@ Class | Method | HTTP request | Description
664
685
- [ LineAnnotation] ( docs/LineAnnotation.md )
665
686
- [ PolyAnnotation] ( docs/PolyAnnotation.md )
666
687
- [ PopupAnnotationWithParent] ( docs/PopupAnnotationWithParent.md )
688
+ - [ RadioButtonField] ( docs/RadioButtonField.md )
667
689
- [ SoundAnnotation] ( docs/SoundAnnotation.md )
668
690
- [ SquigglyAnnotation] ( docs/SquigglyAnnotation.md )
669
691
- [ StampAnnotation] ( docs/StampAnnotation.md )
0 commit comments