groupdocs_conversion_cloud 25.5 → 25.8

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 (57) hide show
  1. checksums.yaml +4 -4
  2. data/lib/groupdocs_conversion_cloud/models/cad_load_options.rb +25 -15
  3. data/lib/groupdocs_conversion_cloud/models/cf2_load_options.rb +25 -15
  4. data/lib/groupdocs_conversion_cloud/models/csv_load_options.rb +230 -61
  5. data/lib/groupdocs_conversion_cloud/models/dgn_load_options.rb +25 -15
  6. data/lib/groupdocs_conversion_cloud/models/doc_load_options.rb +356 -34
  7. data/lib/groupdocs_conversion_cloud/models/docm_load_options.rb +356 -34
  8. data/lib/groupdocs_conversion_cloud/models/docx_load_options.rb +356 -34
  9. data/lib/groupdocs_conversion_cloud/models/dot_load_options.rb +356 -34
  10. data/lib/groupdocs_conversion_cloud/models/dotm_load_options.rb +356 -34
  11. data/lib/groupdocs_conversion_cloud/models/dotx_load_options.rb +356 -34
  12. data/lib/groupdocs_conversion_cloud/models/dwf_load_options.rb +25 -15
  13. data/lib/groupdocs_conversion_cloud/models/dwfx_load_options.rb +25 -15
  14. data/lib/groupdocs_conversion_cloud/models/dwg_load_options.rb +25 -15
  15. data/lib/groupdocs_conversion_cloud/models/dwt_load_options.rb +25 -15
  16. data/lib/groupdocs_conversion_cloud/models/dxf_load_options.rb +25 -15
  17. data/lib/groupdocs_conversion_cloud/models/email_load_options.rb +142 -77
  18. data/lib/groupdocs_conversion_cloud/models/eml_load_options.rb +142 -77
  19. data/lib/groupdocs_conversion_cloud/models/emlx_load_options.rb +142 -77
  20. data/lib/groupdocs_conversion_cloud/models/ifc_load_options.rb +25 -15
  21. data/lib/groupdocs_conversion_cloud/models/igs_load_options.rb +25 -15
  22. data/lib/groupdocs_conversion_cloud/models/mht_load_options.rb +142 -77
  23. data/lib/groupdocs_conversion_cloud/models/mobi_load_options.rb +356 -34
  24. data/lib/groupdocs_conversion_cloud/models/msg_load_options.rb +142 -77
  25. data/lib/groupdocs_conversion_cloud/models/odp_load_options.rb +3 -3
  26. data/lib/groupdocs_conversion_cloud/models/ods_load_options.rb +233 -64
  27. data/lib/groupdocs_conversion_cloud/models/odt_load_options.rb +356 -34
  28. data/lib/groupdocs_conversion_cloud/models/ost_load_options.rb +142 -77
  29. data/lib/groupdocs_conversion_cloud/models/otp_load_options.rb +3 -3
  30. data/lib/groupdocs_conversion_cloud/models/ots_load_options.rb +233 -64
  31. data/lib/groupdocs_conversion_cloud/models/ott_load_options.rb +356 -34
  32. data/lib/groupdocs_conversion_cloud/models/pdf_load_options.rb +110 -28
  33. data/lib/groupdocs_conversion_cloud/models/plt_load_options.rb +25 -15
  34. data/lib/groupdocs_conversion_cloud/models/potm_load_options.rb +3 -3
  35. data/lib/groupdocs_conversion_cloud/models/potx_load_options.rb +3 -3
  36. data/lib/groupdocs_conversion_cloud/models/pps_load_options.rb +3 -3
  37. data/lib/groupdocs_conversion_cloud/models/ppsm_load_options.rb +3 -3
  38. data/lib/groupdocs_conversion_cloud/models/ppsx_load_options.rb +3 -3
  39. data/lib/groupdocs_conversion_cloud/models/ppt_load_options.rb +3 -3
  40. data/lib/groupdocs_conversion_cloud/models/pptm_load_options.rb +3 -3
  41. data/lib/groupdocs_conversion_cloud/models/pptx_load_options.rb +3 -3
  42. data/lib/groupdocs_conversion_cloud/models/presentation_load_options.rb +3 -3
  43. data/lib/groupdocs_conversion_cloud/models/pst_load_options.rb +142 -77
  44. data/lib/groupdocs_conversion_cloud/models/spreadsheet_load_options.rb +233 -64
  45. data/lib/groupdocs_conversion_cloud/models/stl_load_options.rb +25 -15
  46. data/lib/groupdocs_conversion_cloud/models/tsv_load_options.rb +233 -64
  47. data/lib/groupdocs_conversion_cloud/models/web_load_options.rb +81 -4
  48. data/lib/groupdocs_conversion_cloud/models/word_processing_load_options.rb +356 -34
  49. data/lib/groupdocs_conversion_cloud/models/xls2003_load_options.rb +233 -64
  50. data/lib/groupdocs_conversion_cloud/models/xls_load_options.rb +233 -64
  51. data/lib/groupdocs_conversion_cloud/models/xlsb_load_options.rb +233 -64
  52. data/lib/groupdocs_conversion_cloud/models/xlsm_load_options.rb +233 -64
  53. data/lib/groupdocs_conversion_cloud/models/xlsx_load_options.rb +233 -64
  54. data/lib/groupdocs_conversion_cloud/models/xltm_load_options.rb +233 -64
  55. data/lib/groupdocs_conversion_cloud/models/xltx_load_options.rb +233 -64
  56. data/lib/groupdocs_conversion_cloud/version.rb +1 -1
  57. metadata +2 -2
@@ -34,26 +34,50 @@ module GroupDocsConversionCloud
34
34
  # The format of input file, (\"docx\", for example). This field must be filled with correct input file format when using ConvertDirect method, which accept input file as binary stream, and, because of that, API can correctly handle LoadOptions. In regular conversion, the input file format taken from the input file name and this field ignored.
35
35
  attr_accessor :format
36
36
 
37
- # Remove embedded files
38
- attr_accessor :remove_embedded_files
37
+ # Clear built-in document properties
38
+ attr_accessor :clear_built_in_document_properties
39
39
 
40
- # Set password to unprotect protected document
41
- attr_accessor :password
40
+ # Clear custom document properties
41
+ attr_accessor :clear_custom_document_properties
42
42
 
43
- # Hide annotations in Pdf documents
44
- attr_accessor :hide_pdf_annotations
43
+ # Enable or disable generation of page numbering in converted document. Default: false
44
+ attr_accessor :page_numbering
45
45
 
46
46
  # Flatten all the fields of the PDF form
47
47
  attr_accessor :flatten_all_fields
48
48
 
49
+ # Hide annotations in Pdf documents
50
+ attr_accessor :hide_pdf_annotations
51
+
52
+ # Default font for Pdf document. The following font will be used if a font is missing.
53
+ attr_accessor :default_font
54
+
55
+ # Set password to unprotect protected document
56
+ attr_accessor :password
57
+
58
+ # Remove javascript
59
+ attr_accessor :remove_javascript
60
+
61
+ # Remove embedded files
62
+ attr_accessor :remove_embedded_files
63
+
64
+ # Substitute specific fonts when converting Words document.
65
+ attr_accessor :font_substitutes
66
+
49
67
  # Attribute mapping from ruby-style variable name to JSON key.
50
68
  def self.attribute_map
51
69
  {
52
70
  :'format' => :'Format',
53
- :'remove_embedded_files' => :'RemoveEmbeddedFiles',
54
- :'password' => :'Password',
71
+ :'clear_built_in_document_properties' => :'ClearBuiltInDocumentProperties',
72
+ :'clear_custom_document_properties' => :'ClearCustomDocumentProperties',
73
+ :'page_numbering' => :'PageNumbering',
74
+ :'flatten_all_fields' => :'FlattenAllFields',
55
75
  :'hide_pdf_annotations' => :'HidePdfAnnotations',
56
- :'flatten_all_fields' => :'FlattenAllFields'
76
+ :'default_font' => :'DefaultFont',
77
+ :'password' => :'Password',
78
+ :'remove_javascript' => :'RemoveJavascript',
79
+ :'remove_embedded_files' => :'RemoveEmbeddedFiles',
80
+ :'font_substitutes' => :'FontSubstitutes'
57
81
  }
58
82
  end
59
83
 
@@ -61,10 +85,16 @@ module GroupDocsConversionCloud
61
85
  def self.swagger_types
62
86
  {
63
87
  :'format' => :'String',
64
- :'remove_embedded_files' => :'BOOLEAN',
65
- :'password' => :'String',
88
+ :'clear_built_in_document_properties' => :'BOOLEAN',
89
+ :'clear_custom_document_properties' => :'BOOLEAN',
90
+ :'page_numbering' => :'BOOLEAN',
91
+ :'flatten_all_fields' => :'BOOLEAN',
66
92
  :'hide_pdf_annotations' => :'BOOLEAN',
67
- :'flatten_all_fields' => :'BOOLEAN'
93
+ :'default_font' => :'String',
94
+ :'password' => :'String',
95
+ :'remove_javascript' => :'BOOLEAN',
96
+ :'remove_embedded_files' => :'BOOLEAN',
97
+ :'font_substitutes' => :'Hash<String, String>'
68
98
  }
69
99
  end
70
100
 
@@ -80,49 +110,95 @@ module GroupDocsConversionCloud
80
110
  self.format = attributes[:'Format']
81
111
  end
82
112
 
83
- if attributes.key?(:'RemoveEmbeddedFiles')
84
- self.remove_embedded_files = attributes[:'RemoveEmbeddedFiles']
113
+ if attributes.key?(:'ClearBuiltInDocumentProperties')
114
+ self.clear_built_in_document_properties = attributes[:'ClearBuiltInDocumentProperties']
85
115
  end
86
116
 
87
- if attributes.key?(:'Password')
88
- self.password = attributes[:'Password']
117
+ if attributes.key?(:'ClearCustomDocumentProperties')
118
+ self.clear_custom_document_properties = attributes[:'ClearCustomDocumentProperties']
89
119
  end
90
120
 
91
- if attributes.key?(:'HidePdfAnnotations')
92
- self.hide_pdf_annotations = attributes[:'HidePdfAnnotations']
121
+ if attributes.key?(:'PageNumbering')
122
+ self.page_numbering = attributes[:'PageNumbering']
93
123
  end
94
124
 
95
125
  if attributes.key?(:'FlattenAllFields')
96
126
  self.flatten_all_fields = attributes[:'FlattenAllFields']
97
127
  end
98
128
 
129
+ if attributes.key?(:'HidePdfAnnotations')
130
+ self.hide_pdf_annotations = attributes[:'HidePdfAnnotations']
131
+ end
132
+
133
+ if attributes.key?(:'DefaultFont')
134
+ self.default_font = attributes[:'DefaultFont']
135
+ end
136
+
137
+ if attributes.key?(:'Password')
138
+ self.password = attributes[:'Password']
139
+ end
140
+
141
+ if attributes.key?(:'RemoveJavascript')
142
+ self.remove_javascript = attributes[:'RemoveJavascript']
143
+ end
144
+
145
+ if attributes.key?(:'RemoveEmbeddedFiles')
146
+ self.remove_embedded_files = attributes[:'RemoveEmbeddedFiles']
147
+ end
148
+
149
+ if attributes.key?(:'FontSubstitutes')
150
+ if (value = attributes[:'FontSubstitutes']).is_a?(Hash)
151
+ self.font_substitutes = value
152
+ end
153
+ end
154
+
99
155
  end
100
156
 
101
157
  # Show invalid properties with the reasons. Usually used together with valid?
102
158
  # @return Array for valid properies with the reasons
103
159
  def list_invalid_properties
104
160
  invalid_properties = []
105
- if @remove_embedded_files.nil?
106
- invalid_properties.push("invalid value for 'remove_embedded_files', remove_embedded_files cannot be nil.")
161
+ if @clear_built_in_document_properties.nil?
162
+ invalid_properties.push("invalid value for 'clear_built_in_document_properties', clear_built_in_document_properties cannot be nil.")
107
163
  end
108
164
 
109
- if @hide_pdf_annotations.nil?
110
- invalid_properties.push("invalid value for 'hide_pdf_annotations', hide_pdf_annotations cannot be nil.")
165
+ if @clear_custom_document_properties.nil?
166
+ invalid_properties.push("invalid value for 'clear_custom_document_properties', clear_custom_document_properties cannot be nil.")
167
+ end
168
+
169
+ if @page_numbering.nil?
170
+ invalid_properties.push("invalid value for 'page_numbering', page_numbering cannot be nil.")
111
171
  end
112
172
 
113
173
  if @flatten_all_fields.nil?
114
174
  invalid_properties.push("invalid value for 'flatten_all_fields', flatten_all_fields cannot be nil.")
115
175
  end
116
176
 
177
+ if @hide_pdf_annotations.nil?
178
+ invalid_properties.push("invalid value for 'hide_pdf_annotations', hide_pdf_annotations cannot be nil.")
179
+ end
180
+
181
+ if @remove_javascript.nil?
182
+ invalid_properties.push("invalid value for 'remove_javascript', remove_javascript cannot be nil.")
183
+ end
184
+
185
+ if @remove_embedded_files.nil?
186
+ invalid_properties.push("invalid value for 'remove_embedded_files', remove_embedded_files cannot be nil.")
187
+ end
188
+
117
189
  return invalid_properties
118
190
  end
119
191
 
120
192
  # Check to see if the all the properties in the model are valid
121
193
  # @return true if the model is valid
122
194
  def valid?
123
- return false if @remove_embedded_files.nil?
124
- return false if @hide_pdf_annotations.nil?
195
+ return false if @clear_built_in_document_properties.nil?
196
+ return false if @clear_custom_document_properties.nil?
197
+ return false if @page_numbering.nil?
125
198
  return false if @flatten_all_fields.nil?
199
+ return false if @hide_pdf_annotations.nil?
200
+ return false if @remove_javascript.nil?
201
+ return false if @remove_embedded_files.nil?
126
202
  return true
127
203
  end
128
204
 
@@ -132,10 +208,16 @@ module GroupDocsConversionCloud
132
208
  return true if self.equal?(other)
133
209
  self.class == other.class &&
134
210
  format == other.format &&
135
- remove_embedded_files == other.remove_embedded_files &&
136
- password == other.password &&
211
+ clear_built_in_document_properties == other.clear_built_in_document_properties &&
212
+ clear_custom_document_properties == other.clear_custom_document_properties &&
213
+ page_numbering == other.page_numbering &&
214
+ flatten_all_fields == other.flatten_all_fields &&
137
215
  hide_pdf_annotations == other.hide_pdf_annotations &&
138
- flatten_all_fields == other.flatten_all_fields
216
+ default_font == other.default_font &&
217
+ password == other.password &&
218
+ remove_javascript == other.remove_javascript &&
219
+ remove_embedded_files == other.remove_embedded_files &&
220
+ font_substitutes == other.font_substitutes
139
221
  end
140
222
 
141
223
  # @see the `==` method
@@ -147,7 +229,7 @@ module GroupDocsConversionCloud
147
229
  # Calculates hash code according to all attributes.
148
230
  # @return [Fixnum] Hash code
149
231
  def hash
150
- [format, remove_embedded_files, password, hide_pdf_annotations, flatten_all_fields].hash
232
+ [format, clear_built_in_document_properties, clear_custom_document_properties, page_numbering, flatten_all_fields, hide_pdf_annotations, default_font, password, remove_javascript, remove_embedded_files, font_substitutes].hash
151
233
  end
152
234
 
153
235
  # Downcases first letter.
@@ -37,11 +37,14 @@ module GroupDocsConversionCloud
37
37
  # Render specific CAD layouts
38
38
  attr_accessor :layout_names
39
39
 
40
- # Gets or sets a background color.
41
- attr_accessor :background_color
42
-
43
- # Gets or sets type of drawing.
40
+ # A type of drawing.
44
41
  attr_accessor :draw_type
42
+
43
+ # A foreground color.
44
+ attr_accessor :draw_color
45
+
46
+ # A background color.
47
+ attr_accessor :background_color
45
48
  class EnumAttributeValidator
46
49
  attr_reader :datatype
47
50
  attr_reader :allowable_values
@@ -69,8 +72,9 @@ module GroupDocsConversionCloud
69
72
  {
70
73
  :'format' => :'Format',
71
74
  :'layout_names' => :'LayoutNames',
72
- :'background_color' => :'BackgroundColor',
73
- :'draw_type' => :'DrawType'
75
+ :'draw_type' => :'DrawType',
76
+ :'draw_color' => :'DrawColor',
77
+ :'background_color' => :'BackgroundColor'
74
78
  }
75
79
  end
76
80
 
@@ -79,8 +83,9 @@ module GroupDocsConversionCloud
79
83
  {
80
84
  :'format' => :'String',
81
85
  :'layout_names' => :'Array<String>',
82
- :'background_color' => :'String',
83
- :'draw_type' => :'String'
86
+ :'draw_type' => :'String',
87
+ :'draw_color' => :'String',
88
+ :'background_color' => :'String'
84
89
  }
85
90
  end
86
91
 
@@ -102,14 +107,18 @@ module GroupDocsConversionCloud
102
107
  end
103
108
  end
104
109
 
105
- if attributes.key?(:'BackgroundColor')
106
- self.background_color = attributes[:'BackgroundColor']
107
- end
108
-
109
110
  if attributes.key?(:'DrawType')
110
111
  self.draw_type = attributes[:'DrawType']
111
112
  end
112
113
 
114
+ if attributes.key?(:'DrawColor')
115
+ self.draw_color = attributes[:'DrawColor']
116
+ end
117
+
118
+ if attributes.key?(:'BackgroundColor')
119
+ self.background_color = attributes[:'BackgroundColor']
120
+ end
121
+
113
122
  end
114
123
 
115
124
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -153,8 +162,9 @@ module GroupDocsConversionCloud
153
162
  self.class == other.class &&
154
163
  format == other.format &&
155
164
  layout_names == other.layout_names &&
156
- background_color == other.background_color &&
157
- draw_type == other.draw_type
165
+ draw_type == other.draw_type &&
166
+ draw_color == other.draw_color &&
167
+ background_color == other.background_color
158
168
  end
159
169
 
160
170
  # @see the `==` method
@@ -166,7 +176,7 @@ module GroupDocsConversionCloud
166
176
  # Calculates hash code according to all attributes.
167
177
  # @return [Fixnum] Hash code
168
178
  def hash
169
- [format, layout_names, background_color, draw_type].hash
179
+ [format, layout_names, draw_type, draw_color, background_color].hash
170
180
  end
171
181
 
172
182
  # Downcases first letter.
@@ -43,13 +43,13 @@ module GroupDocsConversionCloud
43
43
  # Value indicating whether built in document properties should be cleared.
44
44
  attr_accessor :clear_built_in_document_properties
45
45
 
46
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.Depth Default: 1
46
+ # Option to control how many levels in depth to perform conversion Default: 1
47
47
  attr_accessor :depth
48
48
 
49
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwned Default is false
49
+ # Option to control whether the owned documents in the documents container must be converted
50
50
  attr_accessor :convert_owned
51
51
 
52
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwner Default is true
52
+ # Option to control whether the documents container itself must be converted If this property is true the documents container will be the first converted document Default is true
53
53
  attr_accessor :convert_owner
54
54
 
55
55
  # Show hidden slides.
@@ -43,13 +43,13 @@ module GroupDocsConversionCloud
43
43
  # Value indicating whether built in document properties should be cleared.
44
44
  attr_accessor :clear_built_in_document_properties
45
45
 
46
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.Depth Default: 1
46
+ # Option to control how many levels in depth to perform conversion Default: 1
47
47
  attr_accessor :depth
48
48
 
49
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwned Default is false
49
+ # Option to control whether the owned documents in the documents container must be converted
50
50
  attr_accessor :convert_owned
51
51
 
52
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwner Default is true
52
+ # Option to control whether the documents container itself must be converted If this property is true the documents container will be the first converted document Default is true
53
53
  attr_accessor :convert_owner
54
54
 
55
55
  # Show hidden slides.
@@ -43,13 +43,13 @@ module GroupDocsConversionCloud
43
43
  # Value indicating whether built in document properties should be cleared.
44
44
  attr_accessor :clear_built_in_document_properties
45
45
 
46
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.Depth Default: 1
46
+ # Option to control how many levels in depth to perform conversion Default: 1
47
47
  attr_accessor :depth
48
48
 
49
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwned Default is false
49
+ # Option to control whether the owned documents in the documents container must be converted
50
50
  attr_accessor :convert_owned
51
51
 
52
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwner Default is true
52
+ # Option to control whether the documents container itself must be converted If this property is true the documents container will be the first converted document Default is true
53
53
  attr_accessor :convert_owner
54
54
 
55
55
  # Show hidden slides.
@@ -43,13 +43,13 @@ module GroupDocsConversionCloud
43
43
  # Value indicating whether built in document properties should be cleared.
44
44
  attr_accessor :clear_built_in_document_properties
45
45
 
46
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.Depth Default: 1
46
+ # Option to control how many levels in depth to perform conversion Default: 1
47
47
  attr_accessor :depth
48
48
 
49
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwned Default is false
49
+ # Option to control whether the owned documents in the documents container must be converted
50
50
  attr_accessor :convert_owned
51
51
 
52
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwner Default is true
52
+ # Option to control whether the documents container itself must be converted If this property is true the documents container will be the first converted document Default is true
53
53
  attr_accessor :convert_owner
54
54
 
55
55
  # Show hidden slides.
@@ -43,13 +43,13 @@ module GroupDocsConversionCloud
43
43
  # Value indicating whether built in document properties should be cleared.
44
44
  attr_accessor :clear_built_in_document_properties
45
45
 
46
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.Depth Default: 1
46
+ # Option to control how many levels in depth to perform conversion Default: 1
47
47
  attr_accessor :depth
48
48
 
49
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwned Default is false
49
+ # Option to control whether the owned documents in the documents container must be converted
50
50
  attr_accessor :convert_owned
51
51
 
52
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwner Default is true
52
+ # Option to control whether the documents container itself must be converted If this property is true the documents container will be the first converted document Default is true
53
53
  attr_accessor :convert_owner
54
54
 
55
55
  # Show hidden slides.
@@ -43,13 +43,13 @@ module GroupDocsConversionCloud
43
43
  # Value indicating whether built in document properties should be cleared.
44
44
  attr_accessor :clear_built_in_document_properties
45
45
 
46
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.Depth Default: 1
46
+ # Option to control how many levels in depth to perform conversion Default: 1
47
47
  attr_accessor :depth
48
48
 
49
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwned Default is false
49
+ # Option to control whether the owned documents in the documents container must be converted
50
50
  attr_accessor :convert_owned
51
51
 
52
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwner Default is true
52
+ # Option to control whether the documents container itself must be converted If this property is true the documents container will be the first converted document Default is true
53
53
  attr_accessor :convert_owner
54
54
 
55
55
  # Show hidden slides.
@@ -43,13 +43,13 @@ module GroupDocsConversionCloud
43
43
  # Value indicating whether built in document properties should be cleared.
44
44
  attr_accessor :clear_built_in_document_properties
45
45
 
46
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.Depth Default: 1
46
+ # Option to control how many levels in depth to perform conversion Default: 1
47
47
  attr_accessor :depth
48
48
 
49
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwned Default is false
49
+ # Option to control whether the owned documents in the documents container must be converted
50
50
  attr_accessor :convert_owned
51
51
 
52
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwner Default is true
52
+ # Option to control whether the documents container itself must be converted If this property is true the documents container will be the first converted document Default is true
53
53
  attr_accessor :convert_owner
54
54
 
55
55
  # Show hidden slides.
@@ -43,13 +43,13 @@ module GroupDocsConversionCloud
43
43
  # Value indicating whether built in document properties should be cleared.
44
44
  attr_accessor :clear_built_in_document_properties
45
45
 
46
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.Depth Default: 1
46
+ # Option to control how many levels in depth to perform conversion Default: 1
47
47
  attr_accessor :depth
48
48
 
49
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwned Default is false
49
+ # Option to control whether the owned documents in the documents container must be converted
50
50
  attr_accessor :convert_owned
51
51
 
52
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwner Default is true
52
+ # Option to control whether the documents container itself must be converted If this property is true the documents container will be the first converted document Default is true
53
53
  attr_accessor :convert_owner
54
54
 
55
55
  # Show hidden slides.
@@ -43,13 +43,13 @@ module GroupDocsConversionCloud
43
43
  # Value indicating whether built in document properties should be cleared.
44
44
  attr_accessor :clear_built_in_document_properties
45
45
 
46
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.Depth Default: 1
46
+ # Option to control how many levels in depth to perform conversion Default: 1
47
47
  attr_accessor :depth
48
48
 
49
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwned Default is false
49
+ # Option to control whether the owned documents in the documents container must be converted
50
50
  attr_accessor :convert_owned
51
51
 
52
- # Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwner Default is true
52
+ # Option to control whether the documents container itself must be converted If this property is true the documents container will be the first converted document Default is true
53
53
  attr_accessor :convert_owner
54
54
 
55
55
  # Show hidden slides.