Skip to content

Commit 7ba8692

Browse files
committed
Update to v19.10
1 parent 95e0880 commit 7ba8692

29 files changed

+4960
-961
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ Class | Method | HTTP request | Description
143143
*PdfApi* | [**getBookmark**](sdk/docs/PdfApi.md#getBookmark) | **GET** /pdf/\{name}/bookmarks/bookmark/\{bookmarkPath} | Read document bookmark.
144144
*PdfApi* | [**getBookmarks**](sdk/docs/PdfApi.md#getBookmarks) | **GET** /pdf/\{name}/bookmarks/list/\{bookmarkPath} | Read document bookmarks node list.
145145
*PdfApi* | [**getCaretAnnotation**](sdk/docs/PdfApi.md#getCaretAnnotation) | **GET** /pdf/\{name}/annotations/caret/\{annotationId} | Read document page caret annotation by ID.
146+
*PdfApi* | [**getCheckBoxField**](sdk/docs/PdfApi.md#getCheckBoxField) | **GET** /pdf/\{name}/fields/checkbox/\{fieldName} | Read document checkbox field by name.
146147
*PdfApi* | [**getCircleAnnotation**](sdk/docs/PdfApi.md#getCircleAnnotation) | **GET** /pdf/\{name}/annotations/circle/\{annotationId} | Read document page circle annotation by ID.
147148
*PdfApi* | [**getDiscUsage**](sdk/docs/PdfApi.md#getDiscUsage) | **GET** /pdf/storage/disc | Get disc usage
148149
*PdfApi* | [**getDocument**](sdk/docs/PdfApi.md#getDocument) | **GET** /pdf/\{name} | Read common document info.
@@ -151,6 +152,7 @@ Class | Method | HTTP request | Description
151152
*PdfApi* | [**getDocumentAttachments**](sdk/docs/PdfApi.md#getDocumentAttachments) | **GET** /pdf/\{name}/attachments | Read document attachments info.
152153
*PdfApi* | [**getDocumentBookmarks**](sdk/docs/PdfApi.md#getDocumentBookmarks) | **GET** /pdf/\{name}/bookmarks/tree | Read document bookmarks tree.
153154
*PdfApi* | [**getDocumentCaretAnnotations**](sdk/docs/PdfApi.md#getDocumentCaretAnnotations) | **GET** /pdf/\{name}/annotations/caret | Read document caret annotations.
155+
*PdfApi* | [**getDocumentCheckBoxFields**](sdk/docs/PdfApi.md#getDocumentCheckBoxFields) | **GET** /pdf/\{name}/fields/checkbox | Read document checkbox fields.
154156
*PdfApi* | [**getDocumentCircleAnnotations**](sdk/docs/PdfApi.md#getDocumentCircleAnnotations) | **GET** /pdf/\{name}/annotations/circle | Read document circle annotations.
155157
*PdfApi* | [**getDocumentFileAttachmentAnnotations**](sdk/docs/PdfApi.md#getDocumentFileAttachmentAnnotations) | **GET** /pdf/\{name}/annotations/fileattachment | Read document FileAttachment annotations.
156158
*PdfApi* | [**getDocumentFreeTextAnnotations**](sdk/docs/PdfApi.md#getDocumentFreeTextAnnotations) | **GET** /pdf/\{name}/annotations/freetext | Read document free text annotations.
@@ -164,6 +166,7 @@ Class | Method | HTTP request | Description
164166
*PdfApi* | [**getDocumentPopupAnnotationsByParent**](sdk/docs/PdfApi.md#getDocumentPopupAnnotationsByParent) | **GET** /pdf/\{name}/annotations/\{annotationId}/popup | Read document popup annotations by parent id.
165167
*PdfApi* | [**getDocumentProperties**](sdk/docs/PdfApi.md#getDocumentProperties) | **GET** /pdf/\{name}/documentproperties | Read document properties.
166168
*PdfApi* | [**getDocumentProperty**](sdk/docs/PdfApi.md#getDocumentProperty) | **GET** /pdf/\{name}/documentproperties/\{propertyName} | Read document property by name.
169+
*PdfApi* | [**getDocumentRadioButtonFields**](sdk/docs/PdfApi.md#getDocumentRadioButtonFields) | **GET** /pdf/\{name}/fields/radiobutton | Read document radiobutton fields.
167170
*PdfApi* | [**getDocumentRedactionAnnotations**](sdk/docs/PdfApi.md#getDocumentRedactionAnnotations) | **GET** /pdf/\{name}/annotations/redaction | Read document redaction annotations.
168171
*PdfApi* | [**getDocumentScreenAnnotations**](sdk/docs/PdfApi.md#getDocumentScreenAnnotations) | **GET** /pdf/\{name}/annotations/screen | Read document screen annotations.
169172
*PdfApi* | [**getDocumentSignatureFields**](sdk/docs/PdfApi.md#getDocumentSignatureFields) | **GET** /pdf/\{name}/fields/signature | Read document signature fields.
@@ -210,6 +213,7 @@ Class | Method | HTTP request | Description
210213
*PdfApi* | [**getPage**](sdk/docs/PdfApi.md#getPage) | **GET** /pdf/\{name}/pages/\{pageNumber} | Read document page info.
211214
*PdfApi* | [**getPageAnnotations**](sdk/docs/PdfApi.md#getPageAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations | Read document page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
212215
*PdfApi* | [**getPageCaretAnnotations**](sdk/docs/PdfApi.md#getPageCaretAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/caret | Read document page caret annotations.
216+
*PdfApi* | [**getPageCheckBoxFields**](sdk/docs/PdfApi.md#getPageCheckBoxFields) | **GET** /pdf/\{name}/page/\{pageNumber}/fields/checkbox | Read document page checkbox fields.
213217
*PdfApi* | [**getPageCircleAnnotations**](sdk/docs/PdfApi.md#getPageCircleAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/circle | Read document page circle annotations.
214218
*PdfApi* | [**getPageConvertToBmp**](sdk/docs/PdfApi.md#getPageConvertToBmp) | **GET** /pdf/\{name}/pages/\{pageNumber}/convert/bmp | Convert document page to Bmp image and return resulting file in response.
215219
*PdfApi* | [**getPageConvertToEmf**](sdk/docs/PdfApi.md#getPageConvertToEmf) | **GET** /pdf/\{name}/pages/\{pageNumber}/convert/emf | Convert document page to Emf image and return resulting file in response.
@@ -228,6 +232,7 @@ Class | Method | HTTP request | Description
228232
*PdfApi* | [**getPagePolyLineAnnotations**](sdk/docs/PdfApi.md#getPagePolyLineAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/polyline | Read document page polyline annotations.
229233
*PdfApi* | [**getPagePolygonAnnotations**](sdk/docs/PdfApi.md#getPagePolygonAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/polygon | Read document page polygon annotations.
230234
*PdfApi* | [**getPagePopupAnnotations**](sdk/docs/PdfApi.md#getPagePopupAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/popup | Read document page popup annotations.
235+
*PdfApi* | [**getPageRadioButtonFields**](sdk/docs/PdfApi.md#getPageRadioButtonFields) | **GET** /pdf/\{name}/page/\{pageNumber}/fields/radiobutton | Read document page radiobutton fields.
231236
*PdfApi* | [**getPageRedactionAnnotations**](sdk/docs/PdfApi.md#getPageRedactionAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/redaction | Read document page redaction annotations.
232237
*PdfApi* | [**getPageScreenAnnotations**](sdk/docs/PdfApi.md#getPageScreenAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/screen | Read document page screen annotations.
233238
*PdfApi* | [**getPageSignatureFields**](sdk/docs/PdfApi.md#getPageSignatureFields) | **GET** /pdf/\{name}/page/\{pageNumber}/fields/signature | Read document page signature fields.
@@ -261,6 +266,7 @@ Class | Method | HTTP request | Description
261266
*PdfApi* | [**getPolygonAnnotation**](sdk/docs/PdfApi.md#getPolygonAnnotation) | **GET** /pdf/\{name}/annotations/polygon/\{annotationId} | Read document page polygon annotation by ID.
262267
*PdfApi* | [**getPopupAnnotation**](sdk/docs/PdfApi.md#getPopupAnnotation) | **GET** /pdf/\{name}/annotations/popup/\{annotationId} | Read document page popup annotation by ID.
263268
*PdfApi* | [**getPsInStorageToPdf**](sdk/docs/PdfApi.md#getPsInStorageToPdf) | **GET** /pdf/create/ps | Convert PS file (located on storage) to PDF format and return resulting file in response.
269+
*PdfApi* | [**getRadioButtonField**](sdk/docs/PdfApi.md#getRadioButtonField) | **GET** /pdf/\{name}/fields/radiobutton/\{fieldName} | Read document RadioButton field by name.
264270
*PdfApi* | [**getRedactionAnnotation**](sdk/docs/PdfApi.md#getRedactionAnnotation) | **GET** /pdf/\{name}/annotations/redaction/\{annotationId} | Read document page redaction annotation by ID.
265271
*PdfApi* | [**getScreenAnnotation**](sdk/docs/PdfApi.md#getScreenAnnotation) | **GET** /pdf/\{name}/annotations/screen/\{annotationId} | Read document page screen annotation by ID.
266272
*PdfApi* | [**getScreenAnnotationData**](sdk/docs/PdfApi.md#getScreenAnnotationData) | **GET** /pdf/\{name}/annotations/screen/\{annotationId}/data | Read document page screen annotation by ID.
@@ -291,6 +297,7 @@ Class | Method | HTTP request | Description
291297
*PdfApi* | [**postAppendDocument**](sdk/docs/PdfApi.md#postAppendDocument) | **POST** /pdf/\{name}/appendDocument | Append document to existing one.
292298
*PdfApi* | [**postBookmark**](sdk/docs/PdfApi.md#postBookmark) | **POST** /pdf/\{name}/bookmarks/bookmark/\{bookmarkPath} | Add document bookmarks.
293299
*PdfApi* | [**postChangePasswordDocumentInStorage**](sdk/docs/PdfApi.md#postChangePasswordDocumentInStorage) | **POST** /pdf/\{name}/changepassword | Change document password in storage.
300+
*PdfApi* | [**postCheckBoxFields**](sdk/docs/PdfApi.md#postCheckBoxFields) | **POST** /pdf/\{name}/fields/checkbox | Add document checkbox fields.
294301
*PdfApi* | [**postCreateField**](sdk/docs/PdfApi.md#postCreateField) | **POST** /pdf/\{name}/fields | Create field.
295302
*PdfApi* | [**postDecryptDocumentInStorage**](sdk/docs/PdfApi.md#postDecryptDocumentInStorage) | **POST** /pdf/\{name}/decrypt | Decrypt document in storage.
296303
*PdfApi* | [**postDocumentImageFooter**](sdk/docs/PdfApi.md#postDocumentImageFooter) | **POST** /pdf/\{name}/footer/image | Add document image footer.
@@ -334,6 +341,7 @@ Class | Method | HTTP request | Description
334341
*PdfApi* | [**postPageTextStamps**](sdk/docs/PdfApi.md#postPageTextStamps) | **POST** /pdf/\{name}/pages/\{pageNumber}/stamps/text | Add document page text stamps.
335342
*PdfApi* | [**postPageUnderlineAnnotations**](sdk/docs/PdfApi.md#postPageUnderlineAnnotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/underline | Add document page underline annotations.
336343
*PdfApi* | [**postPopupAnnotation**](sdk/docs/PdfApi.md#postPopupAnnotation) | **POST** /pdf/\{name}/annotations/\{annotationId}/popup | Add document popup annotations.
344+
*PdfApi* | [**postRadioButtonFields**](sdk/docs/PdfApi.md#postRadioButtonFields) | **POST** /pdf/\{name}/fields/radiobutton | Add document RadioButton fields.
337345
*PdfApi* | [**postSignDocument**](sdk/docs/PdfApi.md#postSignDocument) | **POST** /pdf/\{name}/sign | Sign document.
338346
*PdfApi* | [**postSignPage**](sdk/docs/PdfApi.md#postSignPage) | **POST** /pdf/\{name}/pages/\{pageNumber}/sign | Sign page.
339347
*PdfApi* | [**postSplitDocument**](sdk/docs/PdfApi.md#postSplitDocument) | **POST** /pdf/\{name}/split | Split document to parts.
@@ -344,6 +352,7 @@ Class | Method | HTTP request | Description
344352
*PdfApi* | [**putBookmark**](sdk/docs/PdfApi.md#putBookmark) | **PUT** /pdf/\{name}/bookmarks/bookmark/\{bookmarkPath} | Update document bookmark.
345353
*PdfApi* | [**putCaretAnnotation**](sdk/docs/PdfApi.md#putCaretAnnotation) | **PUT** /pdf/\{name}/annotations/caret/\{annotationId} | Replace document caret annotation
346354
*PdfApi* | [**putChangePasswordDocument**](sdk/docs/PdfApi.md#putChangePasswordDocument) | **PUT** /pdf/changepassword | Change document password from content.
355+
*PdfApi* | [**putCheckBoxField**](sdk/docs/PdfApi.md#putCheckBoxField) | **PUT** /pdf/\{name}/fields/checkbox/\{fieldName} | Replace document checkbox field
347356
*PdfApi* | [**putCircleAnnotation**](sdk/docs/PdfApi.md#putCircleAnnotation) | **PUT** /pdf/\{name}/annotations/circle/\{annotationId} | Replace document circle annotation
348357
*PdfApi* | [**putCreateDocument**](sdk/docs/PdfApi.md#putCreateDocument) | **PUT** /pdf/\{name} | Create empty document.
349358
*PdfApi* | [**putDecryptDocument**](sdk/docs/PdfApi.md#putDecryptDocument) | **PUT** /pdf/decrypt | Decrypt document from content.
@@ -417,6 +426,7 @@ Class | Method | HTTP request | Description
417426
*PdfApi* | [**putPopupAnnotation**](sdk/docs/PdfApi.md#putPopupAnnotation) | **PUT** /pdf/\{name}/annotations/popup/\{annotationId} | Replace document popup annotation
418427
*PdfApi* | [**putPrivileges**](sdk/docs/PdfApi.md#putPrivileges) | **PUT** /pdf/\{name}/privileges | Update privilege document.
419428
*PdfApi* | [**putPsInStorageToPdf**](sdk/docs/PdfApi.md#putPsInStorageToPdf) | **PUT** /pdf/\{name}/create/ps | Convert PS file (located on storage) to PDF format and upload resulting file to storage.
429+
*PdfApi* | [**putRadioButtonField**](sdk/docs/PdfApi.md#putRadioButtonField) | **PUT** /pdf/\{name}/fields/radiobutton/\{fieldName} | Replace document RadioButton field
420430
*PdfApi* | [**putRedactionAnnotation**](sdk/docs/PdfApi.md#putRedactionAnnotation) | **PUT** /pdf/\{name}/annotations/redaction/\{annotationId} | Replace document redaction annotation
421431
*PdfApi* | [**putReplaceImage**](sdk/docs/PdfApi.md#putReplaceImage) | **PUT** /pdf/\{name}/images/\{imageId} | Replace document image.
422432
*PdfApi* | [**putScreenAnnotation**](sdk/docs/PdfApi.md#putScreenAnnotation) | **PUT** /pdf/\{name}/annotations/screen/\{annotationId} | Replace document screen annotation
@@ -456,6 +466,7 @@ Class | Method | HTTP request | Description
456466
- [AsposeResponse](sdk/docs/AsposeResponse.md)
457467
- [BorderCornerStyle](sdk/docs/BorderCornerStyle.md)
458468
- [BorderInfo](sdk/docs/BorderInfo.md)
469+
- [BoxStyle](sdk/docs/BoxStyle.md)
459470
- [CapStyle](sdk/docs/CapStyle.md)
460471
- [CaptionPosition](sdk/docs/CaptionPosition.md)
461472
- [CaretSymbol](sdk/docs/CaretSymbol.md)
@@ -503,6 +514,7 @@ Class | Method | HTTP request | Description
503514
- [MergeDocuments](sdk/docs/MergeDocuments.md)
504515
- [ObjectExist](sdk/docs/ObjectExist.md)
505516
- [OptimizeOptions](sdk/docs/OptimizeOptions.md)
517+
- [Option](sdk/docs/Option.md)
506518
- [PageWordCount](sdk/docs/PageWordCount.md)
507519
- [Paragraph](sdk/docs/Paragraph.md)
508520
- [PartsEmbeddingModes](sdk/docs/PartsEmbeddingModes.md)
@@ -557,6 +569,9 @@ Class | Method | HTTP request | Description
557569
- [CaretAnnotationResponse](sdk/docs/CaretAnnotationResponse.md)
558570
- [CaretAnnotations](sdk/docs/CaretAnnotations.md)
559571
- [CaretAnnotationsResponse](sdk/docs/CaretAnnotationsResponse.md)
572+
- [CheckBoxFieldResponse](sdk/docs/CheckBoxFieldResponse.md)
573+
- [CheckBoxFields](sdk/docs/CheckBoxFields.md)
574+
- [CheckBoxFieldsResponse](sdk/docs/CheckBoxFieldsResponse.md)
560575
- [CircleAnnotationResponse](sdk/docs/CircleAnnotationResponse.md)
561576
- [CircleAnnotations](sdk/docs/CircleAnnotations.md)
562577
- [CircleAnnotationsResponse](sdk/docs/CircleAnnotationsResponse.md)
@@ -611,6 +626,9 @@ Class | Method | HTTP request | Description
611626
- [PopupAnnotationResponse](sdk/docs/PopupAnnotationResponse.md)
612627
- [PopupAnnotations](sdk/docs/PopupAnnotations.md)
613628
- [PopupAnnotationsResponse](sdk/docs/PopupAnnotationsResponse.md)
629+
- [RadioButtonFieldResponse](sdk/docs/RadioButtonFieldResponse.md)
630+
- [RadioButtonFields](sdk/docs/RadioButtonFields.md)
631+
- [RadioButtonFieldsResponse](sdk/docs/RadioButtonFieldsResponse.md)
614632
- [RedactionAnnotationResponse](sdk/docs/RedactionAnnotationResponse.md)
615633
- [RedactionAnnotations](sdk/docs/RedactionAnnotations.md)
616634
- [RedactionAnnotationsResponse](sdk/docs/RedactionAnnotationsResponse.md)
@@ -660,6 +678,8 @@ Class | Method | HTTP request | Description
660678
- [UnderlineAnnotationsResponse](sdk/docs/UnderlineAnnotationsResponse.md)
661679
- [WordCountResponse](sdk/docs/WordCountResponse.md)
662680
- [AnnotationInfo](sdk/docs/AnnotationInfo.md)
681+
- [CheckBoxField](sdk/docs/CheckBoxField.md)
682+
- [ChoiceField](sdk/docs/ChoiceField.md)
663683
- [ImageFooter](sdk/docs/ImageFooter.md)
664684
- [ImageHeader](sdk/docs/ImageHeader.md)
665685
- [ImageStamp](sdk/docs/ImageStamp.md)
@@ -668,6 +688,7 @@ Class | Method | HTTP request | Description
668688
- [PageNumberStamp](sdk/docs/PageNumberStamp.md)
669689
- [PdfPageStamp](sdk/docs/PdfPageStamp.md)
670690
- [PopupAnnotation](sdk/docs/PopupAnnotation.md)
691+
- [RadioButtonOptionField](sdk/docs/RadioButtonOptionField.md)
671692
- [RedactionAnnotation](sdk/docs/RedactionAnnotation.md)
672693
- [ScreenAnnotation](sdk/docs/ScreenAnnotation.md)
673694
- [SignatureField](sdk/docs/SignatureField.md)
@@ -684,6 +705,7 @@ Class | Method | HTTP request | Description
684705
- [LineAnnotation](sdk/docs/LineAnnotation.md)
685706
- [PolyAnnotation](sdk/docs/PolyAnnotation.md)
686707
- [PopupAnnotationWithParent](sdk/docs/PopupAnnotationWithParent.md)
708+
- [RadioButtonField](sdk/docs/RadioButtonField.md)
687709
- [SoundAnnotation](sdk/docs/SoundAnnotation.md)
688710
- [SquigglyAnnotation](sdk/docs/SquigglyAnnotation.md)
689711
- [StampAnnotation](sdk/docs/StampAnnotation.md)

sdk/docs/BoxStyle.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
# BoxStyle
3+
Represents an enumeration of available BoxStyle types.
4+
5+
## Enum
6+
Name | Description
7+
------------ | ------------
8+
**Circle** | Circle style.
9+
**Check** | Check style.
10+
**Cross** | Cross style.
11+
**Diamond** | Diamond style.
12+
**Square** | Square style.
13+
**Star** | Star style.
14+
15+
16+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
17+
18+

sdk/docs/CheckBoxField.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
2+
# CheckBoxField
3+
Provides CheckBoxField.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**allowedStates** | **List<String>** | Returns list of allowed states. | [optional]
9+
**style** | [**BoxStyle**](BoxStyle.md) | Gets or sets style of check box. | [optional]
10+
**activeState** | **String** | Gets or sets current annotation appearance state. | [optional]
11+
**checked** | **Boolean** | Gets or sets state of check box. |
12+
**exportValue** | **String** | Gets or sets export value of CheckBox field. | [optional]
13+
**partialName** | **String** | Field name. | [optional]
14+
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
15+
**value** | **String** | Field value. | [optional]
16+
**pageIndex** | **Integer** | Page index. |
17+
**height** | **Double** | Gets or sets height of the field. | [optional]
18+
**width** | **Double** | Gets or sets width of the field. | [optional]
19+
**zIndex** | **Integer** | Z index. | [optional]
20+
**isGroup** | **Boolean** | Is group. |
21+
**parent** | [**FormField**](FormField.md) | Gets field parent. | [optional]
22+
**isSharedField** | **Boolean** | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | [optional]
23+
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the field. | [optional]
24+
**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
25+
**contents** | **String** | Get the field content. | [optional]
26+
**margin** | [**MarginInfo**](MarginInfo.md) | Gets or sets a outer margin for paragraph (for pdf generation) | [optional]
27+
**highlighting** | [**LinkHighlightingMode**](LinkHighlightingMode.md) | Field highlighting mode. | [optional]
28+
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the field. | [optional]
29+
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets VerticalAlignment of the field. | [optional]
30+
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
31+
32+
33+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
34+
35+

sdk/docs/CheckBoxFieldResponse.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
# CheckBoxFieldResponse
3+
Represents response containing single checkbox field object
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**field** | [**CheckBoxField**](CheckBoxField.md) | Checkbox field object | [optional]
9+
**code** | **Integer** | Response status code. |
10+
**status** | **String** | Response status. | [optional]
11+
12+
13+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
14+
15+

sdk/docs/CheckBoxFields.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
# CheckBoxFields
3+
Object representing a list of checkbox fields.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**list** | [**List<CheckBoxField>**](CheckBoxField.md) | List of checkbox fields. | [optional]
9+
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
10+
11+
12+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
13+
14+

0 commit comments

Comments
 (0)