docspring 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile.lock +1 -1
  4. data/README.md +20 -15
  5. data/docs/AddFieldsData.md +8 -0
  6. data/docs/AddFieldsTemplateResponse.md +10 -0
  7. data/docs/CreateHtmlTemplateData.md +8 -0
  8. data/docs/CreateTemplateFromUploadData.md +8 -0
  9. data/docs/{TemplatesdesccachedUploadTemplate.md → HtmlTemplateData.md} +1 -2
  10. data/docs/PDFApi.md +60 -8
  11. data/docs/PendingTemplate.md +1 -0
  12. data/docs/Submission.md +1 -0
  13. data/docs/Template.md +1 -0
  14. data/docs/{TemplatestemplateIdTemplate.md → TemplateData.md} +1 -1
  15. data/docs/TemplatestemplateIdaddFieldsFields.md +92 -0
  16. data/docs/UpdateTemplateData.md +1 -1
  17. data/docs/UploadTemplateData.md +25 -0
  18. data/docs/UploadTemplateDataDocument.md +10 -0
  19. data/docs/{TemplatesdesccachedUploadTemplateDocumentMetadata.md → UploadTemplateDataDocumentMetadata.md} +1 -1
  20. data/lib/docspring.rb +10 -6
  21. data/lib/docspring/api/pdf_api.rb +77 -18
  22. data/lib/docspring/models/add_fields_data.rb +190 -0
  23. data/lib/docspring/models/add_fields_template_response.rb +239 -0
  24. data/lib/docspring/models/{create_template_data.rb → create_html_template_data.rb} +2 -2
  25. data/lib/docspring/models/{create_template_data1.rb → create_template_from_upload_data.rb} +2 -2
  26. data/lib/docspring/models/html_template_data.rb +373 -0
  27. data/lib/docspring/models/pending_template.rb +10 -1
  28. data/lib/docspring/models/submission.rb +10 -1
  29. data/lib/docspring/models/template.rb +10 -1
  30. data/lib/docspring/models/{templatestemplate_id_template.rb → template_data.rb} +1 -1
  31. data/lib/docspring/models/templatestemplate_idadd_fields_fields.rb +1306 -0
  32. data/lib/docspring/models/update_template_data.rb +1 -1
  33. data/lib/docspring/models/{templatesdesccached_upload_template.rb → upload_template_data.rb} +2 -2
  34. data/lib/docspring/models/{templatesdesccached_upload_template_document.rb → upload_template_data_document.rb} +2 -2
  35. data/lib/docspring/models/{templatesdesccached_upload_template_document_metadata.rb → upload_template_data_document_metadata.rb} +1 -1
  36. data/lib/docspring/version.rb +1 -1
  37. data/spec/api/pdf_api_integration_spec.rb +49 -18
  38. data/spec/api/pdf_api_spec_original.skipped.rb +20 -6
  39. data/spec/models/add_fields_data_spec.rb +41 -0
  40. data/spec/models/add_fields_template_response_spec.rb +57 -0
  41. data/spec/models/{create_template_data_spec.rb → create_html_template_data_spec.rb} +6 -6
  42. data/spec/models/{create_template_data1_spec.rb → create_template_from_upload_data_spec.rb} +6 -6
  43. data/spec/models/html_template_data_spec.rb +145 -0
  44. data/spec/models/pending_template_spec.rb +6 -0
  45. data/spec/models/submission_spec.rb +6 -0
  46. data/spec/models/{templatestemplate_id_template_spec.rb → template_data_spec.rb} +6 -6
  47. data/spec/models/template_spec.rb +6 -0
  48. data/spec/models/templatestemplate_idadd_fields_fields_spec.rb +589 -0
  49. data/spec/models/{templatesdesccached_upload_template_document_metadata_spec.rb → upload_template_data_document_metadata_spec.rb} +6 -6
  50. data/spec/models/{templatesdesccached_upload_template_document_spec.rb → upload_template_data_document_spec.rb} +6 -6
  51. data/spec/models/{templatesdesccached_upload_template_spec.rb → upload_template_data_spec.rb} +6 -6
  52. metadata +42 -26
  53. data/docs/CreateTemplateData.md +0 -8
  54. data/docs/CreateTemplateData1.md +0 -8
  55. data/docs/TemplatesdesccachedUploadTemplateDocument.md +0 -10
@@ -0,0 +1,145 @@
1
+ =begin
2
+ #API v1
3
+
4
+ #DocSpring is a service that helps you fill out and sign PDF templates.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 3.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for DocSpring::HtmlTemplateData
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'HtmlTemplateData' do
21
+ before do
22
+ # run before each test
23
+ @instance = DocSpring::HtmlTemplateData.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of HtmlTemplateData' do
31
+ it 'should create an instance of HtmlTemplateData' do
32
+ expect(@instance).to be_instance_of(DocSpring::HtmlTemplateData)
33
+ end
34
+ end
35
+ describe 'test attribute "expiration_interval"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["minutes", "hours", "days"])
39
+ # validator.allowable_values.each do |value|
40
+ # expect { @instance.expiration_interval = value }.not_to raise_error
41
+ # end
42
+ end
43
+ end
44
+
45
+ describe 'test attribute "webhook_url"' do
46
+ it 'should work' do
47
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
48
+ end
49
+ end
50
+
51
+ describe 'test attribute "scss"' do
52
+ it 'should work' do
53
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
54
+ end
55
+ end
56
+
57
+ describe 'test attribute "expire_after"' do
58
+ it 'should work' do
59
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
60
+ end
61
+ end
62
+
63
+ describe 'test attribute "allow_additional_properties"' do
64
+ it 'should work' do
65
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
66
+ end
67
+ end
68
+
69
+ describe 'test attribute "description"' do
70
+ it 'should work' do
71
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
72
+ end
73
+ end
74
+
75
+ describe 'test attribute "public_submissions"' do
76
+ it 'should work' do
77
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
78
+ end
79
+ end
80
+
81
+ describe 'test attribute "slack_webhook_url"' do
82
+ it 'should work' do
83
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
84
+ end
85
+ end
86
+
87
+ describe 'test attribute "header_html"' do
88
+ it 'should work' do
89
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
+ end
91
+ end
92
+
93
+ describe 'test attribute "public_web_form"' do
94
+ it 'should work' do
95
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
96
+ end
97
+ end
98
+
99
+ describe 'test attribute "editable_submissions"' do
100
+ it 'should work' do
101
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
102
+ end
103
+ end
104
+
105
+ describe 'test attribute "expire_submissions"' do
106
+ it 'should work' do
107
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
108
+ end
109
+ end
110
+
111
+ describe 'test attribute "name"' do
112
+ it 'should work' do
113
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
114
+ end
115
+ end
116
+
117
+ describe 'test attribute "html"' do
118
+ it 'should work' do
119
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
120
+ end
121
+ end
122
+
123
+ describe 'test attribute "footer_html"' do
124
+ it 'should work' do
125
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
126
+ end
127
+ end
128
+
129
+ describe 'test attribute "template_type"' do
130
+ it 'should work' do
131
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
132
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["pdf", "html"])
133
+ # validator.allowable_values.each do |value|
134
+ # expect { @instance.template_type = value }.not_to raise_error
135
+ # end
136
+ end
137
+ end
138
+
139
+ describe 'test attribute "redirect_url"' do
140
+ it 'should work' do
141
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
142
+ end
143
+ end
144
+
145
+ end
@@ -126,6 +126,12 @@ describe 'PendingTemplate' do
126
126
  end
127
127
  end
128
128
 
129
+ describe 'test attribute "locked"' do
130
+ it 'should work' do
131
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
132
+ end
133
+ end
134
+
129
135
  describe 'test attribute "redirect_url"' do
130
136
  it 'should work' do
131
137
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -90,6 +90,12 @@ describe 'Submission' do
90
90
  end
91
91
  end
92
92
 
93
+ describe 'test attribute "truncated_text"' do
94
+ it 'should work' do
95
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
96
+ end
97
+ end
98
+
93
99
  describe 'test attribute "pdf_hash"' do
94
100
  it 'should work' do
95
101
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -14,22 +14,22 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for DocSpring::TemplatestemplateIdTemplate
17
+ # Unit tests for DocSpring::TemplateData
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe 'TemplatestemplateIdTemplate' do
20
+ describe 'TemplateData' do
21
21
  before do
22
22
  # run before each test
23
- @instance = DocSpring::TemplatestemplateIdTemplate.new
23
+ @instance = DocSpring::TemplateData.new
24
24
  end
25
25
 
26
26
  after do
27
27
  # run after each test
28
28
  end
29
29
 
30
- describe 'test an instance of TemplatestemplateIdTemplate' do
31
- it 'should create an instance of TemplatestemplateIdTemplate' do
32
- expect(@instance).to be_instance_of(DocSpring::TemplatestemplateIdTemplate)
30
+ describe 'test an instance of TemplateData' do
31
+ it 'should create an instance of TemplateData' do
32
+ expect(@instance).to be_instance_of(DocSpring::TemplateData)
33
33
  end
34
34
  end
35
35
  describe 'test attribute "expiration_interval"' do
@@ -138,6 +138,12 @@ describe 'Template' do
138
138
  end
139
139
  end
140
140
 
141
+ describe 'test attribute "locked"' do
142
+ it 'should work' do
143
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
144
+ end
145
+ end
146
+
141
147
  describe 'test attribute "redirect_url"' do
142
148
  it 'should work' do
143
149
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,589 @@
1
+ =begin
2
+ #API v1
3
+
4
+ #DocSpring is a service that helps you fill out and sign PDF templates.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 3.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for DocSpring::TemplatestemplateIdaddFieldsFields
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'TemplatestemplateIdaddFieldsFields' do
21
+ before do
22
+ # run before each test
23
+ @instance = DocSpring::TemplatestemplateIdaddFieldsFields.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TemplatestemplateIdaddFieldsFields' do
31
+ it 'should create an instance of TemplatestemplateIdaddFieldsFields' do
32
+ expect(@instance).to be_instance_of(DocSpring::TemplatestemplateIdaddFieldsFields)
33
+ end
34
+ end
35
+ describe 'test attribute "uppercase"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "background_color_field_name"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "metadata"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "barcode_symbology"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "min_length"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "integer"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "type"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["string", "number", "boolean", "date", "address", "country", "email", "url", "image", "signature", "barcode", "combined"])
75
+ # validator.allowable_values.each do |value|
76
+ # expect { @instance.type = value }.not_to raise_error
77
+ # end
78
+ end
79
+ end
80
+
81
+ describe 'test attribute "required"' do
82
+ it 'should work' do
83
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
84
+ end
85
+ end
86
+
87
+ describe 'test attribute "comb_value_offset"' do
88
+ it 'should work' do
89
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
+ end
91
+ end
92
+
93
+ describe 'test attribute "image_gravity"' do
94
+ it 'should work' do
95
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
96
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["NorthWest", "North", "NorthEast", "West", "Center", "East", "SouthWest", "South", "SouthEast"])
97
+ # validator.allowable_values.each do |value|
98
+ # expect { @instance.image_gravity = value }.not_to raise_error
99
+ # end
100
+ end
101
+ end
102
+
103
+ describe 'test attribute "overflow"' do
104
+ it 'should work' do
105
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
106
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["shrink_to_fit", "truncate"])
107
+ # validator.allowable_values.each do |value|
108
+ # expect { @instance.overflow = value }.not_to raise_error
109
+ # end
110
+ end
111
+ end
112
+
113
+ describe 'test attribute "qrcode_color"' do
114
+ it 'should work' do
115
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
+ end
117
+ end
118
+
119
+ describe 'test attribute "color_field_required"' do
120
+ it 'should work' do
121
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
+ end
123
+ end
124
+
125
+ describe 'test attribute "background_color_field_required"' do
126
+ it 'should work' do
127
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
+ end
129
+ end
130
+
131
+ describe 'test attribute "id"' do
132
+ it 'should work' do
133
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
+ end
135
+ end
136
+
137
+ describe 'test attribute "image_scale_type"' do
138
+ it 'should work' do
139
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
140
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["fit", "fill", "stretch"])
141
+ # validator.allowable_values.each do |value|
142
+ # expect { @instance.image_scale_type = value }.not_to raise_error
143
+ # end
144
+ end
145
+ end
146
+
147
+ describe 'test attribute "exclusive_minimum"' do
148
+ it 'should work' do
149
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
150
+ end
151
+ end
152
+
153
+ describe 'test attribute "height"' do
154
+ it 'should work' do
155
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
156
+ end
157
+ end
158
+
159
+ describe 'test attribute "number_condition_range_exclusive_max"' do
160
+ it 'should work' do
161
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
162
+ end
163
+ end
164
+
165
+ describe 'test attribute "invert_boolean_condition"' do
166
+ it 'should work' do
167
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
168
+ end
169
+ end
170
+
171
+ describe 'test attribute "static"' do
172
+ it 'should work' do
173
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
174
+ end
175
+ end
176
+
177
+ describe 'test attribute "shape_fill_color_field_name"' do
178
+ it 'should work' do
179
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
180
+ end
181
+ end
182
+
183
+ describe 'test attribute "shape_border_color_field_name"' do
184
+ it 'should work' do
185
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
186
+ end
187
+ end
188
+
189
+ describe 'test attribute "v_alignment"' do
190
+ it 'should work' do
191
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
192
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["bottom", "center", "top"])
193
+ # validator.allowable_values.each do |value|
194
+ # expect { @instance.v_alignment = value }.not_to raise_error
195
+ # end
196
+ end
197
+ end
198
+
199
+ describe 'test attribute "bold"' do
200
+ it 'should work' do
201
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
202
+ end
203
+ end
204
+
205
+ describe 'test attribute "shape_border_width"' do
206
+ it 'should work' do
207
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
208
+ end
209
+ end
210
+
211
+ describe 'test attribute "comb_number_of_cells"' do
212
+ it 'should work' do
213
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
214
+ end
215
+ end
216
+
217
+ describe 'test attribute "shape_border_color"' do
218
+ it 'should work' do
219
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
220
+ end
221
+ end
222
+
223
+ describe 'test attribute "typeface"' do
224
+ it 'should work' do
225
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
226
+ end
227
+ end
228
+
229
+ describe 'test attribute "comb"' do
230
+ it 'should work' do
231
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
232
+ end
233
+ end
234
+
235
+ describe 'test attribute "shape_type"' do
236
+ it 'should work' do
237
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
238
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["square", "rectangle", "circle", "ellipse"])
239
+ # validator.allowable_values.each do |value|
240
+ # expect { @instance.shape_type = value }.not_to raise_error
241
+ # end
242
+ end
243
+ end
244
+
245
+ describe 'test attribute "display_type"' do
246
+ it 'should work' do
247
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
248
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["text", "check", "qrcode", "barcode", "image", "shape"])
249
+ # validator.allowable_values.each do |value|
250
+ # expect { @instance.display_type = value }.not_to raise_error
251
+ # end
252
+ end
253
+ end
254
+
255
+ describe 'test attribute "condition"' do
256
+ it 'should work' do
257
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
258
+ end
259
+ end
260
+
261
+ describe 'test attribute "check_color"' do
262
+ it 'should work' do
263
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
264
+ end
265
+ end
266
+
267
+ describe 'test attribute "multiline_lines"' do
268
+ it 'should work' do
269
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
270
+ end
271
+ end
272
+
273
+ describe 'test attribute "multiline"' do
274
+ it 'should work' do
275
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
276
+ end
277
+ end
278
+
279
+ describe 'test attribute "true_text"' do
280
+ it 'should work' do
281
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
282
+ end
283
+ end
284
+
285
+ describe 'test attribute "name"' do
286
+ it 'should work' do
287
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
288
+ end
289
+ end
290
+
291
+ describe 'test attribute "font_size"' do
292
+ it 'should work' do
293
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
294
+ end
295
+ end
296
+
297
+ describe 'test attribute "page"' do
298
+ it 'should work' do
299
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
300
+ end
301
+ end
302
+
303
+ describe 'test attribute "alignment"' do
304
+ it 'should work' do
305
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
306
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["left", "center", "right"])
307
+ # validator.allowable_values.each do |value|
308
+ # expect { @instance.alignment = value }.not_to raise_error
309
+ # end
310
+ end
311
+ end
312
+
313
+ describe 'test attribute "max_length"' do
314
+ it 'should work' do
315
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
316
+ end
317
+ end
318
+
319
+ describe 'test attribute "auto_calculate_max_length"' do
320
+ it 'should work' do
321
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
322
+ end
323
+ end
324
+
325
+ describe 'test attribute "color_field_name"' do
326
+ it 'should work' do
327
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
328
+ end
329
+ end
330
+
331
+ describe 'test attribute "qrcode_color_field_name"' do
332
+ it 'should work' do
333
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
334
+ end
335
+ end
336
+
337
+ describe 'test attribute "number_condition_range_min"' do
338
+ it 'should work' do
339
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
340
+ end
341
+ end
342
+
343
+ describe 'test attribute "hidden"' do
344
+ it 'should work' do
345
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
346
+ end
347
+ end
348
+
349
+ describe 'test attribute "color"' do
350
+ it 'should work' do
351
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
352
+ end
353
+ end
354
+
355
+ describe 'test attribute "check_color_field_required"' do
356
+ it 'should work' do
357
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
358
+ end
359
+ end
360
+
361
+ describe 'test attribute "combined_field_format"' do
362
+ it 'should work' do
363
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
364
+ end
365
+ end
366
+
367
+ describe 'test attribute "description"' do
368
+ it 'should work' do
369
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
370
+ end
371
+ end
372
+
373
+ describe 'test attribute "shape_border_color_field_required"' do
374
+ it 'should work' do
375
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
376
+ end
377
+ end
378
+
379
+ describe 'test attribute "combined_field_names"' do
380
+ it 'should work' do
381
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
382
+ end
383
+ end
384
+
385
+ describe 'test attribute "title"' do
386
+ it 'should work' do
387
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
388
+ end
389
+ end
390
+
391
+ describe 'test attribute "number_condition_range_exclusive_min"' do
392
+ it 'should work' do
393
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
394
+ end
395
+ end
396
+
397
+ describe 'test attribute "combined_field_separator"' do
398
+ it 'should work' do
399
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
400
+ end
401
+ end
402
+
403
+ describe 'test attribute "exclusive_maximum"' do
404
+ it 'should work' do
405
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
406
+ end
407
+ end
408
+
409
+ describe 'test attribute "default"' do
410
+ it 'should work' do
411
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
412
+ end
413
+ end
414
+
415
+ describe 'test attribute "combined_field_type"' do
416
+ it 'should work' do
417
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
418
+ end
419
+ end
420
+
421
+ describe 'test attribute "date_time_format"' do
422
+ it 'should work' do
423
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
424
+ end
425
+ end
426
+
427
+ describe 'test attribute "qrcode_color_field_required"' do
428
+ it 'should work' do
429
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
430
+ end
431
+ end
432
+
433
+ describe 'test attribute "currency"' do
434
+ it 'should work' do
435
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
436
+ end
437
+ end
438
+
439
+ describe 'test attribute "strikethrough"' do
440
+ it 'should work' do
441
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
442
+ end
443
+ end
444
+
445
+ describe 'test attribute "false_text"' do
446
+ it 'should work' do
447
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
448
+ end
449
+ end
450
+
451
+ describe 'test attribute "character_spacing"' do
452
+ it 'should work' do
453
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
454
+ end
455
+ end
456
+
457
+ describe 'test attribute "number_condition_range_max"' do
458
+ it 'should work' do
459
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
460
+ end
461
+ end
462
+
463
+ describe 'test attribute "background_color"' do
464
+ it 'should work' do
465
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
466
+ end
467
+ end
468
+
469
+ describe 'test attribute "check_color_field_name"' do
470
+ it 'should work' do
471
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
472
+ end
473
+ end
474
+
475
+ describe 'test attribute "check_character"' do
476
+ it 'should work' do
477
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
478
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["✓", "✔", "✖", "✗", "✘"])
479
+ # validator.allowable_values.each do |value|
480
+ # expect { @instance.check_character = value }.not_to raise_error
481
+ # end
482
+ end
483
+ end
484
+
485
+ describe 'test attribute "rotation"' do
486
+ it 'should work' do
487
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
488
+ end
489
+ end
490
+
491
+ describe 'test attribute "option_list"' do
492
+ it 'should work' do
493
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
494
+ end
495
+ end
496
+
497
+ describe 'test attribute "shape_fill_color"' do
498
+ it 'should work' do
499
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
500
+ end
501
+ end
502
+
503
+ describe 'test attribute "string_condition_type"' do
504
+ it 'should work' do
505
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
506
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["equals", "contains", "starts_with", "ends_with", "regex"])
507
+ # validator.allowable_values.each do |value|
508
+ # expect { @instance.string_condition_type = value }.not_to raise_error
509
+ # end
510
+ end
511
+ end
512
+
513
+ describe 'test attribute "shape_fill_color_field_required"' do
514
+ it 'should work' do
515
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
516
+ end
517
+ end
518
+
519
+ describe 'test attribute "include_time"' do
520
+ it 'should work' do
521
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
522
+ end
523
+ end
524
+
525
+ describe 'test attribute "decimal_places"' do
526
+ it 'should work' do
527
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
528
+ end
529
+ end
530
+
531
+ describe 'test attribute "x"' do
532
+ it 'should work' do
533
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
534
+ end
535
+ end
536
+
537
+ describe 'test attribute "width"' do
538
+ it 'should work' do
539
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
540
+ end
541
+ end
542
+
543
+ describe 'test attribute "maximum"' do
544
+ it 'should work' do
545
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
546
+ end
547
+ end
548
+
549
+ describe 'test attribute "y"' do
550
+ it 'should work' do
551
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
552
+ end
553
+ end
554
+
555
+ describe 'test attribute "signature_allow_draw"' do
556
+ it 'should work' do
557
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
558
+ end
559
+ end
560
+
561
+ describe 'test attribute "opacity"' do
562
+ it 'should work' do
563
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
564
+ end
565
+ end
566
+
567
+ describe 'test attribute "number_condition_type"' do
568
+ it 'should work' do
569
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
570
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["equals", "range", "gte", "gt", "lte", "lt"])
571
+ # validator.allowable_values.each do |value|
572
+ # expect { @instance.number_condition_type = value }.not_to raise_error
573
+ # end
574
+ end
575
+ end
576
+
577
+ describe 'test attribute "minimum"' do
578
+ it 'should work' do
579
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
580
+ end
581
+ end
582
+
583
+ describe 'test attribute "signature_allow_type"' do
584
+ it 'should work' do
585
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
586
+ end
587
+ end
588
+
589
+ end