Skip to content

Commit 956de14

Browse files
Merge pull request #13 from kaferi/master
Update to v19.11
2 parents 1da1b5f + a7b4e7f commit 956de14

12 files changed

+970
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Aspose.PDF Cloud
22
- API version: 3.0
3-
- Package version: 19.10.0
3+
- Package version: 19.11.0
44

55
[Aspose.PDF Cloud](https://products.aspose.cloud/pdf) is a true REST API that enables you to perform a wide range of document processing operations including creation, manipulation, conversion and rendering of PDF documents in the cloud.
66

@@ -81,6 +81,7 @@ Class | Method | HTTP request | Description
8181
*PdfApi* | [**GetCaretAnnotation**](docs/PdfApi.md#getcaretannotation) | **Get** /pdf/{name}/annotations/caret/{annotationId} | Read document page caret annotation by ID.
8282
*PdfApi* | [**GetCheckBoxField**](docs/PdfApi.md#getcheckboxfield) | **Get** /pdf/{name}/fields/checkbox/{fieldName} | Read document checkbox field by name.
8383
*PdfApi* | [**GetCircleAnnotation**](docs/PdfApi.md#getcircleannotation) | **Get** /pdf/{name}/annotations/circle/{annotationId} | Read document page circle annotation by ID.
84+
*PdfApi* | [**GetComboBoxField**](docs/PdfApi.md#getcomboboxfield) | **Get** /pdf/{name}/fields/combobox/{fieldName} | Read document combobox field by name.
8485
*PdfApi* | [**GetDiscUsage**](docs/PdfApi.md#getdiscusage) | **Get** /pdf/storage/disc | Get disc usage
8586
*PdfApi* | [**GetDocument**](docs/PdfApi.md#getdocument) | **Get** /pdf/{name} | Read common document info.
8687
*PdfApi* | [**GetDocumentAnnotations**](docs/PdfApi.md#getdocumentannotations) | **Get** /pdf/{name}/annotations | Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
@@ -90,6 +91,7 @@ Class | Method | HTTP request | Description
9091
*PdfApi* | [**GetDocumentCaretAnnotations**](docs/PdfApi.md#getdocumentcaretannotations) | **Get** /pdf/{name}/annotations/caret | Read document caret annotations.
9192
*PdfApi* | [**GetDocumentCheckBoxFields**](docs/PdfApi.md#getdocumentcheckboxfields) | **Get** /pdf/{name}/fields/checkbox | Read document checkbox fields.
9293
*PdfApi* | [**GetDocumentCircleAnnotations**](docs/PdfApi.md#getdocumentcircleannotations) | **Get** /pdf/{name}/annotations/circle | Read document circle annotations.
94+
*PdfApi* | [**GetDocumentComboBoxFields**](docs/PdfApi.md#getdocumentcomboboxfields) | **Get** /pdf/{name}/fields/combobox | Read document combobox fields.
9395
*PdfApi* | [**GetDocumentFileAttachmentAnnotations**](docs/PdfApi.md#getdocumentfileattachmentannotations) | **Get** /pdf/{name}/annotations/fileattachment | Read document FileAttachment annotations.
9496
*PdfApi* | [**GetDocumentFreeTextAnnotations**](docs/PdfApi.md#getdocumentfreetextannotations) | **Get** /pdf/{name}/annotations/freetext | Read document free text annotations.
9597
*PdfApi* | [**GetDocumentHighlightAnnotations**](docs/PdfApi.md#getdocumenthighlightannotations) | **Get** /pdf/{name}/annotations/highlight | Read document highlight annotations.
@@ -151,6 +153,7 @@ Class | Method | HTTP request | Description
151153
*PdfApi* | [**GetPageCaretAnnotations**](docs/PdfApi.md#getpagecaretannotations) | **Get** /pdf/{name}/pages/{pageNumber}/annotations/caret | Read document page caret annotations.
152154
*PdfApi* | [**GetPageCheckBoxFields**](docs/PdfApi.md#getpagecheckboxfields) | **Get** /pdf/{name}/page/{pageNumber}/fields/checkbox | Read document page checkbox fields.
153155
*PdfApi* | [**GetPageCircleAnnotations**](docs/PdfApi.md#getpagecircleannotations) | **Get** /pdf/{name}/pages/{pageNumber}/annotations/circle | Read document page circle annotations.
156+
*PdfApi* | [**GetPageComboBoxFields**](docs/PdfApi.md#getpagecomboboxfields) | **Get** /pdf/{name}/page/{pageNumber}/fields/combobox | Read document page combobox fields.
154157
*PdfApi* | [**GetPageConvertToBmp**](docs/PdfApi.md#getpageconverttobmp) | **Get** /pdf/{name}/pages/{pageNumber}/convert/bmp | Convert document page to Bmp image and return resulting file in response.
155158
*PdfApi* | [**GetPageConvertToEmf**](docs/PdfApi.md#getpageconverttoemf) | **Get** /pdf/{name}/pages/{pageNumber}/convert/emf | Convert document page to Emf image and return resulting file in response.
156159
*PdfApi* | [**GetPageConvertToGif**](docs/PdfApi.md#getpageconverttogif) | **Get** /pdf/{name}/pages/{pageNumber}/convert/gif | Convert document page to Gif image and return resulting file in response.
@@ -234,6 +237,7 @@ Class | Method | HTTP request | Description
234237
*PdfApi* | [**PostBookmark**](docs/PdfApi.md#postbookmark) | **Post** /pdf/{name}/bookmarks/bookmark/{bookmarkPath} | Add document bookmarks.
235238
*PdfApi* | [**PostChangePasswordDocumentInStorage**](docs/PdfApi.md#postchangepassworddocumentinstorage) | **Post** /pdf/{name}/changepassword | Change document password in storage.
236239
*PdfApi* | [**PostCheckBoxFields**](docs/PdfApi.md#postcheckboxfields) | **Post** /pdf/{name}/fields/checkbox | Add document checkbox fields.
240+
*PdfApi* | [**PostComboBoxFields**](docs/PdfApi.md#postcomboboxfields) | **Post** /pdf/{name}/fields/combobox | Add document combobox fields.
237241
*PdfApi* | [**PostCreateField**](docs/PdfApi.md#postcreatefield) | **Post** /pdf/{name}/fields | Create field.
238242
*PdfApi* | [**PostDecryptDocumentInStorage**](docs/PdfApi.md#postdecryptdocumentinstorage) | **Post** /pdf/{name}/decrypt | Decrypt document in storage.
239243
*PdfApi* | [**PostDocumentImageFooter**](docs/PdfApi.md#postdocumentimagefooter) | **Post** /pdf/{name}/footer/image | Add document image footer.
@@ -290,6 +294,7 @@ Class | Method | HTTP request | Description
290294
*PdfApi* | [**PutChangePasswordDocument**](docs/PdfApi.md#putchangepassworddocument) | **Put** /pdf/changepassword | Change document password from content.
291295
*PdfApi* | [**PutCheckBoxField**](docs/PdfApi.md#putcheckboxfield) | **Put** /pdf/{name}/fields/checkbox/{fieldName} | Replace document checkbox field
292296
*PdfApi* | [**PutCircleAnnotation**](docs/PdfApi.md#putcircleannotation) | **Put** /pdf/{name}/annotations/circle/{annotationId} | Replace document circle annotation
297+
*PdfApi* | [**PutComboBoxField**](docs/PdfApi.md#putcomboboxfield) | **Put** /pdf/{name}/fields/combobox/{fieldName} | Replace document combobox field
293298
*PdfApi* | [**PutCreateDocument**](docs/PdfApi.md#putcreatedocument) | **Put** /pdf/{name} | Create empty document.
294299
*PdfApi* | [**PutDecryptDocument**](docs/PdfApi.md#putdecryptdocument) | **Put** /pdf/decrypt | Decrypt document from content.
295300
*PdfApi* | [**PutEncryptDocument**](docs/PdfApi.md#putencryptdocument) | **Put** /pdf/encrypt | Encrypt document from content.
@@ -511,6 +516,9 @@ Class | Method | HTTP request | Description
511516
- [CircleAnnotationResponse](docs/CircleAnnotationResponse.md)
512517
- [CircleAnnotations](docs/CircleAnnotations.md)
513518
- [CircleAnnotationsResponse](docs/CircleAnnotationsResponse.md)
519+
- [ComboBoxFieldResponse](docs/ComboBoxFieldResponse.md)
520+
- [ComboBoxFields](docs/ComboBoxFields.md)
521+
- [ComboBoxFieldsResponse](docs/ComboBoxFieldsResponse.md)
514522
- [Document](docs/Document.md)
515523
- [DocumentPageResponse](docs/DocumentPageResponse.md)
516524
- [DocumentPagesResponse](docs/DocumentPagesResponse.md)
@@ -633,6 +641,7 @@ Class | Method | HTTP request | Description
633641
- [TextHeader](docs/TextHeader.md)
634642
- [TextStamp](docs/TextStamp.md)
635643
- [CaretAnnotation](docs/CaretAnnotation.md)
644+
- [ComboBoxField](docs/ComboBoxField.md)
636645
- [CommonFigureAnnotation](docs/CommonFigureAnnotation.md)
637646
- [FileAttachmentAnnotation](docs/FileAttachmentAnnotation.md)
638647
- [FreeTextAnnotation](docs/FreeTextAnnotation.md)

combo_box_field.go

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
/**
2+
*
3+
* Copyright (c) 2019 Aspose.PDF Cloud
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
* The above copyright notice and this permission notice shall be included in all
11+
* copies or substantial portions of the Software.
12+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18+
* SOFTWARE.
19+
*
20+
*/
21+
package asposepdfcloud
22+
23+
// Provides ComboBoxField.
24+
type ComboBoxField struct {
25+
// Link to the document.
26+
Links []Link `json:"Links,omitempty"`
27+
// Field name.
28+
PartialName string `json:"PartialName,omitempty"`
29+
// Field rectangle.
30+
Rect *Rectangle `json:"Rect,omitempty"`
31+
// Field value.
32+
Value string `json:"Value,omitempty"`
33+
// Page index.
34+
PageIndex int32 `json:"PageIndex"`
35+
// Gets or sets height of the field.
36+
Height float64 `json:"Height,omitempty"`
37+
// Gets or sets width of the field.
38+
Width float64 `json:"Width,omitempty"`
39+
// Z index.
40+
ZIndex int32 `json:"ZIndex,omitempty"`
41+
// Is group.
42+
IsGroup bool `json:"IsGroup"`
43+
// Gets field parent.
44+
Parent *FormField `json:"Parent,omitempty"`
45+
// 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.
46+
IsSharedField bool `json:"IsSharedField,omitempty"`
47+
// Gets Flags of the field.
48+
Flags []AnnotationFlags `json:"Flags,omitempty"`
49+
// Color of the annotation.
50+
Color *Color `json:"Color,omitempty"`
51+
// Get the field content.
52+
Contents string `json:"Contents,omitempty"`
53+
// Gets or sets a outer margin for paragraph (for pdf generation)
54+
Margin *MarginInfo `json:"Margin,omitempty"`
55+
// Field highlighting mode.
56+
Highlighting LinkHighlightingMode `json:"Highlighting,omitempty"`
57+
// Gets HorizontalAlignment of the field.
58+
HorizontalAlignment HorizontalAlignment `json:"HorizontalAlignment,omitempty"`
59+
// Gets VerticalAlignment of the field.
60+
VerticalAlignment VerticalAlignment `json:"VerticalAlignment,omitempty"`
61+
// Gets or sets multiselection flag.
62+
MultiSelect bool `json:"MultiSelect,omitempty"`
63+
// Gets collection of options of the combobox.
64+
Options []Option `json:"Options,omitempty"`
65+
// Gets or sets current annotation appearance state.
66+
ActiveState string `json:"ActiveState,omitempty"`
67+
// Gets or sets editable status of the field.
68+
Editable bool `json:"Editable,omitempty"`
69+
// Gets or sets spellchaeck activiity status.
70+
SpellCheck bool `json:"SpellCheck,omitempty"`
71+
// Gets or sets index of selected item. Numbering of items is started from 1.
72+
Selected int32 `json:"Selected"`
73+
}

combo_box_field_response.go

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/**
2+
*
3+
* Copyright (c) 2019 Aspose.PDF Cloud
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
* The above copyright notice and this permission notice shall be included in all
11+
* copies or substantial portions of the Software.
12+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18+
* SOFTWARE.
19+
*
20+
*/
21+
package asposepdfcloud
22+
23+
// Represents response containing single combobox field object
24+
type ComboBoxFieldResponse struct {
25+
// Response status code.
26+
Code int32 `json:"Code"`
27+
// Response status.
28+
Status string `json:"Status,omitempty"`
29+
// Combobox field object
30+
Field *ComboBoxField `json:"Field,omitempty"`
31+
}

combo_box_fields.go

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/**
2+
*
3+
* Copyright (c) 2019 Aspose.PDF Cloud
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
* The above copyright notice and this permission notice shall be included in all
11+
* copies or substantial portions of the Software.
12+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18+
* SOFTWARE.
19+
*
20+
*/
21+
package asposepdfcloud
22+
23+
// Object representing a list of combobox fields.
24+
type ComboBoxFields struct {
25+
// Link to the document.
26+
Links []Link `json:"Links,omitempty"`
27+
// List of combobox fields.
28+
List []ComboBoxField `json:"List,omitempty"`
29+
}

combo_box_fields_response.go

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/**
2+
*
3+
* Copyright (c) 2019 Aspose.PDF Cloud
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
* The above copyright notice and this permission notice shall be included in all
11+
* copies or substantial portions of the Software.
12+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18+
* SOFTWARE.
19+
*
20+
*/
21+
package asposepdfcloud
22+
23+
// Represents response containing multiple combobox field objects
24+
type ComboBoxFieldsResponse struct {
25+
// Response status code.
26+
Code int32 `json:"Code"`
27+
// Response status.
28+
Status string `json:"Status,omitempty"`
29+
// Combobox fields object
30+
Fields *ComboBoxFields `json:"Fields,omitempty"`
31+
}

docs/ComboBoxField.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# ComboBoxField
2+
Provides ComboBoxField.
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**Links** | [**[]Link**](Link.md) | Link to the document. | [optional] [default to null]
8+
**PartialName** | **string** | Field name. | [optional] [default to null]
9+
**Rect** | [***Rectangle**](Rectangle.md) | Field rectangle. | [optional] [default to null]
10+
**Value** | **string** | Field value. | [optional] [default to null]
11+
**PageIndex** | **int32** | Page index. | [default to null]
12+
**Height** | **float64** | Gets or sets height of the field. | [optional] [default to null]
13+
**Width** | **float64** | Gets or sets width of the field. | [optional] [default to null]
14+
**ZIndex** | **int32** | Z index. | [optional] [default to null]
15+
**IsGroup** | **bool** | Is group. | [default to null]
16+
**Parent** | [***FormField**](FormField.md) | Gets field parent. | [optional] [default to null]
17+
**IsSharedField** | **bool** | 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] [default to null]
18+
**Flags** | [**[]AnnotationFlags**](AnnotationFlags.md) | Gets Flags of the field. | [optional] [default to null]
19+
**Color** | [***Color**](Color.md) | Color of the annotation. | [optional] [default to null]
20+
**Contents** | **string** | Get the field content. | [optional] [default to null]
21+
**Margin** | [***MarginInfo**](MarginInfo.md) | Gets or sets a outer margin for paragraph (for pdf generation) | [optional] [default to null]
22+
**Highlighting** | [***LinkHighlightingMode**](LinkHighlightingMode.md) | Field highlighting mode. | [optional] [default to null]
23+
**HorizontalAlignment** | [***HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the field. | [optional] [default to null]
24+
**VerticalAlignment** | [***VerticalAlignment**](VerticalAlignment.md) | Gets VerticalAlignment of the field. | [optional] [default to null]
25+
**MultiSelect** | **bool** | Gets or sets multiselection flag. | [optional] [default to null]
26+
**Options** | [**[]Option**](Option.md) | Gets collection of options of the combobox. | [optional] [default to null]
27+
**ActiveState** | **string** | Gets or sets current annotation appearance state. | [optional] [default to null]
28+
**Editable** | **bool** | Gets or sets editable status of the field. | [optional] [default to null]
29+
**SpellCheck** | **bool** | Gets or sets spellchaeck activiity status. | [optional] [default to null]
30+
**Selected** | **int32** | Gets or sets index of selected item. Numbering of items is started from 1. | [default to null]
31+
32+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)[[View Source]](../combo_box_field.go)
33+
34+

docs/ComboBoxFieldResponse.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# ComboBoxFieldResponse
2+
Represents response containing single combobox field object
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**Code** | **int32** | Response status code. | [default to null]
8+
**Status** | **string** | Response status. | [optional] [default to null]
9+
**Field** | [***ComboBoxField**](ComboBoxField.md) | Combobox field object | [optional] [default to null]
10+
11+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)[[View Source]](../combo_box_field_response.go)
12+
13+

docs/ComboBoxFields.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# ComboBoxFields
2+
Object representing a list of combobox fields.
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**Links** | [**[]Link**](Link.md) | Link to the document. | [optional] [default to null]
8+
**List** | [**[]ComboBoxField**](ComboBoxField.md) | List of combobox fields. | [optional] [default to null]
9+
10+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)[[View Source]](../combo_box_fields.go)
11+
12+

docs/ComboBoxFieldsResponse.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# ComboBoxFieldsResponse
2+
Represents response containing multiple combobox field objects
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**Code** | **int32** | Response status code. | [default to null]
8+
**Status** | **string** | Response status. | [optional] [default to null]
9+
**Fields** | [***ComboBoxFields**](ComboBoxFields.md) | Combobox fields object | [optional] [default to null]
10+
11+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)[[View Source]](../combo_box_fields_response.go)
12+
13+

0 commit comments

Comments
 (0)