docs/SubmissionDataBatchRequest.md in docspring-1.4.1 vs docs/SubmissionDataBatchRequest.md in docspring-2.0.0
- old
+ new
@@ -1,13 +1,30 @@
# DocSpring::SubmissionDataBatchRequest
## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**css** | **String** | | [optional]
-**metadata** | **Object** | | [optional]
-**data** | **Object** | | [optional]
-**test** | **BOOLEAN** | | [optional]
-**html** | **String** | | [optional]
-**template_id** | **String** | | [optional]
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **css** | **String** | | [optional] |
+| **data** | **Object** | | |
+| **html** | **String** | | [optional] |
+| **metadata** | **Object** | | [optional] |
+| **template_id** | **String** | | |
+| **template_version** | **String** | | [optional] |
+| **test** | **Boolean** | | [optional] |
+
+## Example
+
+```ruby
+require 'docspring'
+
+instance = DocSpring::SubmissionDataBatchRequest.new(
+ css: null,
+ data: null,
+ html: null,
+ metadata: null,
+ template_id: null,
+ template_version: null,
+ test: null
+)
+```