docs/SubmissionBatch.md in docspring-1.4.1 vs docs/SubmissionBatch.md in docspring-2.0.0

- old
+ new

@@ -1,16 +1,34 @@ # DocSpring::SubmissionBatch ## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**pending_count** | **Integer** | | [optional] -**completion_percentage** | **Integer** | | [optional] -**metadata** | **Object** | | [optional] -**total_count** | **Integer** | | [optional] -**submissions** | [**Array<Submission>**](Submission.md) | | [optional] -**processed_at** | **String** | | [optional] -**id** | **String** | | [optional] -**state** | **String** | | [optional] -**error_count** | **Integer** | | [optional] +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **id** | **String** | | | +| **total_count** | **Integer** | | | +| **pending_count** | **Integer** | | | +| **error_count** | **Integer** | | | +| **completion_percentage** | **Integer** | | | +| **state** | **String** | | | +| **processed_at** | **String** | | | +| **metadata** | **Object** | | | +| **submissions** | [**Array<Submission>**](Submission.md) | | [optional] | + +## Example + +```ruby +require 'docspring' + +instance = DocSpring::SubmissionBatch.new( + id: null, + total_count: null, + pending_count: null, + error_count: null, + completion_percentage: null, + state: null, + processed_at: null, + metadata: null, + submissions: null +) +```