groupdocs_conversion_cloud 19.4 → 19.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/lib/groupdocs_conversion_cloud.rb +3 -1
  3. data/lib/groupdocs_conversion_cloud/api/convert_api.rb +218 -0
  4. data/lib/groupdocs_conversion_cloud/api/file_api.rb +1 -1
  5. data/lib/groupdocs_conversion_cloud/api/folder_api.rb +1 -1
  6. data/lib/groupdocs_conversion_cloud/api/{conversion_api.rb → info_api.rb} +51 -40
  7. data/lib/groupdocs_conversion_cloud/models/bmp_convert_options.rb +101 -4
  8. data/lib/groupdocs_conversion_cloud/models/cgm_convert_options.rb +101 -4
  9. data/lib/groupdocs_conversion_cloud/models/dcm_convert_options.rb +101 -4
  10. data/lib/groupdocs_conversion_cloud/models/djvu_convert_options.rb +101 -4
  11. data/lib/groupdocs_conversion_cloud/models/dng_convert_options.rb +101 -4
  12. data/lib/groupdocs_conversion_cloud/models/document_metadata.rb +396 -0
  13. data/lib/groupdocs_conversion_cloud/models/emf_convert_options.rb +101 -4
  14. data/lib/groupdocs_conversion_cloud/models/gif_convert_options.rb +101 -4
  15. data/lib/groupdocs_conversion_cloud/models/ico_convert_options.rb +101 -4
  16. data/lib/groupdocs_conversion_cloud/models/image_convert_options.rb +101 -4
  17. data/lib/groupdocs_conversion_cloud/models/j2c_convert_options.rb +98 -1
  18. data/lib/groupdocs_conversion_cloud/models/j2k_convert_options.rb +98 -1
  19. data/lib/groupdocs_conversion_cloud/models/jp2_convert_options.rb +98 -1
  20. data/lib/groupdocs_conversion_cloud/models/jpeg_convert_options.rb +98 -1
  21. data/lib/groupdocs_conversion_cloud/models/jpf_convert_options.rb +98 -1
  22. data/lib/groupdocs_conversion_cloud/models/jpg_convert_options.rb +98 -1
  23. data/lib/groupdocs_conversion_cloud/models/jpm_convert_options.rb +98 -1
  24. data/lib/groupdocs_conversion_cloud/models/jpx_convert_options.rb +98 -1
  25. data/lib/groupdocs_conversion_cloud/models/odg_convert_options.rb +101 -4
  26. data/lib/groupdocs_conversion_cloud/models/png_convert_options.rb +101 -4
  27. data/lib/groupdocs_conversion_cloud/models/psd_convert_options.rb +77 -1
  28. data/lib/groupdocs_conversion_cloud/models/tif_convert_options.rb +77 -1
  29. data/lib/groupdocs_conversion_cloud/models/tiff_convert_options.rb +77 -1
  30. data/lib/groupdocs_conversion_cloud/models/webp_convert_options.rb +98 -1
  31. data/lib/groupdocs_conversion_cloud/models/wmf_convert_options.rb +101 -4
  32. data/lib/groupdocs_conversion_cloud/version.rb +1 -1
  33. metadata +5 -3
@@ -64,6 +64,18 @@ module GroupDocsConversionCloud
64
64
  # Watermark specific options
65
65
  attr_accessor :watermark_options
66
66
 
67
+ # Adjust image brightness
68
+ attr_accessor :brightness
69
+
70
+ # Adjust image contrast
71
+ attr_accessor :contrast
72
+
73
+ # Adjust image gamma
74
+ attr_accessor :gamma
75
+
76
+ # Image flip mode
77
+ attr_accessor :flip_mode
78
+
67
79
  # Set Tiff compression
68
80
  attr_accessor :compression
69
81
  class EnumAttributeValidator
@@ -102,6 +114,10 @@ module GroupDocsConversionCloud
102
114
  :'rotate_angle' => :'RotateAngle',
103
115
  :'use_pdf' => :'UsePdf',
104
116
  :'watermark_options' => :'WatermarkOptions',
117
+ :'brightness' => :'Brightness',
118
+ :'contrast' => :'Contrast',
119
+ :'gamma' => :'Gamma',
120
+ :'flip_mode' => :'FlipMode',
105
121
  :'compression' => :'Compression'
106
122
  }
107
123
  end
@@ -120,6 +136,10 @@ module GroupDocsConversionCloud
120
136
  :'rotate_angle' => :'Integer',
121
137
  :'use_pdf' => :'BOOLEAN',
122
138
  :'watermark_options' => :'WatermarkOptions',
139
+ :'brightness' => :'Integer',
140
+ :'contrast' => :'Integer',
141
+ :'gamma' => :'Float',
142
+ :'flip_mode' => :'String',
123
143
  :'compression' => :'String'
124
144
  }
125
145
  end
@@ -178,6 +198,22 @@ module GroupDocsConversionCloud
178
198
  self.watermark_options = attributes[:'WatermarkOptions']
179
199
  end
180
200
 
201
+ if attributes.key?(:'Brightness')
202
+ self.brightness = attributes[:'Brightness']
203
+ end
204
+
205
+ if attributes.key?(:'Contrast')
206
+ self.contrast = attributes[:'Contrast']
207
+ end
208
+
209
+ if attributes.key?(:'Gamma')
210
+ self.gamma = attributes[:'Gamma']
211
+ end
212
+
213
+ if attributes.key?(:'FlipMode')
214
+ self.flip_mode = attributes[:'FlipMode']
215
+ end
216
+
181
217
  if attributes.key?(:'Compression')
182
218
  self.compression = attributes[:'Compression']
183
219
  end
@@ -224,6 +260,22 @@ module GroupDocsConversionCloud
224
260
  invalid_properties.push("invalid value for 'use_pdf', use_pdf cannot be nil.")
225
261
  end
226
262
 
263
+ if @brightness.nil?
264
+ invalid_properties.push("invalid value for 'brightness', brightness cannot be nil.")
265
+ end
266
+
267
+ if @contrast.nil?
268
+ invalid_properties.push("invalid value for 'contrast', contrast cannot be nil.")
269
+ end
270
+
271
+ if @gamma.nil?
272
+ invalid_properties.push("invalid value for 'gamma', gamma cannot be nil.")
273
+ end
274
+
275
+ if @flip_mode.nil?
276
+ invalid_properties.push("invalid value for 'flip_mode', flip_mode cannot be nil.")
277
+ end
278
+
227
279
  return invalid_properties
228
280
  end
229
281
 
@@ -239,11 +291,31 @@ module GroupDocsConversionCloud
239
291
  return false if @grayscale.nil?
240
292
  return false if @rotate_angle.nil?
241
293
  return false if @use_pdf.nil?
294
+ return false if @brightness.nil?
295
+ return false if @contrast.nil?
296
+ return false if @gamma.nil?
297
+ return false if @flip_mode.nil?
298
+ flip_mode_validator = EnumAttributeValidator.new('String', ["None", "FlipX", "FlipY", "FlipXY"])
299
+ return false unless flip_mode_validator.valid?(@flip_mode)
242
300
  compression_validator = EnumAttributeValidator.new('String', ["Lzw", "None", "Ccitt3", "Ccitt4", "Rle"])
243
301
  return false unless compression_validator.valid?(@compression)
244
302
  return true
245
303
  end
246
304
 
305
+ # Custom attribute writer method checking allowed values (enum).
306
+ # @param [Object] flip_mode Object to be assigned
307
+ def flip_mode=(flip_mode)
308
+ validator = EnumAttributeValidator.new('String', ["None", "FlipX", "FlipY", "FlipXY"])
309
+ if flip_mode.to_i == 0
310
+ unless validator.valid?(flip_mode)
311
+ raise ArgumentError, "invalid value for 'flip_mode', must be one of #{validator.allowable_values}."
312
+ end
313
+ @flip_mode = flip_mode
314
+ else
315
+ @flip_mode = validator.allowable_values[flip_mode.to_i]
316
+ end
317
+ end
318
+
247
319
  # Custom attribute writer method checking allowed values (enum).
248
320
  # @param [Object] compression Object to be assigned
249
321
  def compression=(compression)
@@ -274,6 +346,10 @@ module GroupDocsConversionCloud
274
346
  rotate_angle == other.rotate_angle &&
275
347
  use_pdf == other.use_pdf &&
276
348
  watermark_options == other.watermark_options &&
349
+ brightness == other.brightness &&
350
+ contrast == other.contrast &&
351
+ gamma == other.gamma &&
352
+ flip_mode == other.flip_mode &&
277
353
  compression == other.compression
278
354
  end
279
355
 
@@ -286,7 +362,7 @@ module GroupDocsConversionCloud
286
362
  # Calculates hash code according to all attributes.
287
363
  # @return [Fixnum] Hash code
288
364
  def hash
289
- [from_page, pages_count, pages, width, height, horizontal_resolution, vertical_resolution, grayscale, rotate_angle, use_pdf, watermark_options, compression].hash
365
+ [from_page, pages_count, pages, width, height, horizontal_resolution, vertical_resolution, grayscale, rotate_angle, use_pdf, watermark_options, brightness, contrast, gamma, flip_mode, compression].hash
290
366
  end
291
367
 
292
368
  # Downcases first letter.
@@ -64,6 +64,18 @@ module GroupDocsConversionCloud
64
64
  # Watermark specific options
65
65
  attr_accessor :watermark_options
66
66
 
67
+ # Adjust image brightness
68
+ attr_accessor :brightness
69
+
70
+ # Adjust image contrast
71
+ attr_accessor :contrast
72
+
73
+ # Adjust image gamma
74
+ attr_accessor :gamma
75
+
76
+ # Image flip mode
77
+ attr_accessor :flip_mode
78
+
67
79
  # Set Tiff compression
68
80
  attr_accessor :compression
69
81
  class EnumAttributeValidator
@@ -102,6 +114,10 @@ module GroupDocsConversionCloud
102
114
  :'rotate_angle' => :'RotateAngle',
103
115
  :'use_pdf' => :'UsePdf',
104
116
  :'watermark_options' => :'WatermarkOptions',
117
+ :'brightness' => :'Brightness',
118
+ :'contrast' => :'Contrast',
119
+ :'gamma' => :'Gamma',
120
+ :'flip_mode' => :'FlipMode',
105
121
  :'compression' => :'Compression'
106
122
  }
107
123
  end
@@ -120,6 +136,10 @@ module GroupDocsConversionCloud
120
136
  :'rotate_angle' => :'Integer',
121
137
  :'use_pdf' => :'BOOLEAN',
122
138
  :'watermark_options' => :'WatermarkOptions',
139
+ :'brightness' => :'Integer',
140
+ :'contrast' => :'Integer',
141
+ :'gamma' => :'Float',
142
+ :'flip_mode' => :'String',
123
143
  :'compression' => :'String'
124
144
  }
125
145
  end
@@ -178,6 +198,22 @@ module GroupDocsConversionCloud
178
198
  self.watermark_options = attributes[:'WatermarkOptions']
179
199
  end
180
200
 
201
+ if attributes.key?(:'Brightness')
202
+ self.brightness = attributes[:'Brightness']
203
+ end
204
+
205
+ if attributes.key?(:'Contrast')
206
+ self.contrast = attributes[:'Contrast']
207
+ end
208
+
209
+ if attributes.key?(:'Gamma')
210
+ self.gamma = attributes[:'Gamma']
211
+ end
212
+
213
+ if attributes.key?(:'FlipMode')
214
+ self.flip_mode = attributes[:'FlipMode']
215
+ end
216
+
181
217
  if attributes.key?(:'Compression')
182
218
  self.compression = attributes[:'Compression']
183
219
  end
@@ -224,6 +260,22 @@ module GroupDocsConversionCloud
224
260
  invalid_properties.push("invalid value for 'use_pdf', use_pdf cannot be nil.")
225
261
  end
226
262
 
263
+ if @brightness.nil?
264
+ invalid_properties.push("invalid value for 'brightness', brightness cannot be nil.")
265
+ end
266
+
267
+ if @contrast.nil?
268
+ invalid_properties.push("invalid value for 'contrast', contrast cannot be nil.")
269
+ end
270
+
271
+ if @gamma.nil?
272
+ invalid_properties.push("invalid value for 'gamma', gamma cannot be nil.")
273
+ end
274
+
275
+ if @flip_mode.nil?
276
+ invalid_properties.push("invalid value for 'flip_mode', flip_mode cannot be nil.")
277
+ end
278
+
227
279
  return invalid_properties
228
280
  end
229
281
 
@@ -239,11 +291,31 @@ module GroupDocsConversionCloud
239
291
  return false if @grayscale.nil?
240
292
  return false if @rotate_angle.nil?
241
293
  return false if @use_pdf.nil?
294
+ return false if @brightness.nil?
295
+ return false if @contrast.nil?
296
+ return false if @gamma.nil?
297
+ return false if @flip_mode.nil?
298
+ flip_mode_validator = EnumAttributeValidator.new('String', ["None", "FlipX", "FlipY", "FlipXY"])
299
+ return false unless flip_mode_validator.valid?(@flip_mode)
242
300
  compression_validator = EnumAttributeValidator.new('String', ["Lzw", "None", "Ccitt3", "Ccitt4", "Rle"])
243
301
  return false unless compression_validator.valid?(@compression)
244
302
  return true
245
303
  end
246
304
 
305
+ # Custom attribute writer method checking allowed values (enum).
306
+ # @param [Object] flip_mode Object to be assigned
307
+ def flip_mode=(flip_mode)
308
+ validator = EnumAttributeValidator.new('String', ["None", "FlipX", "FlipY", "FlipXY"])
309
+ if flip_mode.to_i == 0
310
+ unless validator.valid?(flip_mode)
311
+ raise ArgumentError, "invalid value for 'flip_mode', must be one of #{validator.allowable_values}."
312
+ end
313
+ @flip_mode = flip_mode
314
+ else
315
+ @flip_mode = validator.allowable_values[flip_mode.to_i]
316
+ end
317
+ end
318
+
247
319
  # Custom attribute writer method checking allowed values (enum).
248
320
  # @param [Object] compression Object to be assigned
249
321
  def compression=(compression)
@@ -274,6 +346,10 @@ module GroupDocsConversionCloud
274
346
  rotate_angle == other.rotate_angle &&
275
347
  use_pdf == other.use_pdf &&
276
348
  watermark_options == other.watermark_options &&
349
+ brightness == other.brightness &&
350
+ contrast == other.contrast &&
351
+ gamma == other.gamma &&
352
+ flip_mode == other.flip_mode &&
277
353
  compression == other.compression
278
354
  end
279
355
 
@@ -286,7 +362,7 @@ module GroupDocsConversionCloud
286
362
  # Calculates hash code according to all attributes.
287
363
  # @return [Fixnum] Hash code
288
364
  def hash
289
- [from_page, pages_count, pages, width, height, horizontal_resolution, vertical_resolution, grayscale, rotate_angle, use_pdf, watermark_options, compression].hash
365
+ [from_page, pages_count, pages, width, height, horizontal_resolution, vertical_resolution, grayscale, rotate_angle, use_pdf, watermark_options, brightness, contrast, gamma, flip_mode, compression].hash
290
366
  end
291
367
 
292
368
  # Downcases first letter.
@@ -64,8 +64,41 @@ module GroupDocsConversionCloud
64
64
  # Watermark specific options
65
65
  attr_accessor :watermark_options
66
66
 
67
+ # Adjust image brightness
68
+ attr_accessor :brightness
69
+
70
+ # Adjust image contrast
71
+ attr_accessor :contrast
72
+
73
+ # Adjust image gamma
74
+ attr_accessor :gamma
75
+
76
+ # Image flip mode
77
+ attr_accessor :flip_mode
78
+
67
79
  # Indicates if the compression of the converted file will be lossless
68
80
  attr_accessor :lossless
81
+ class EnumAttributeValidator
82
+ attr_reader :datatype
83
+ attr_reader :allowable_values
84
+
85
+ def initialize(datatype, allowable_values)
86
+ @allowable_values = allowable_values.map do |value|
87
+ case datatype.to_s
88
+ when /Integer/i
89
+ value.to_i
90
+ when /Float/i
91
+ value.to_f
92
+ else
93
+ value
94
+ end
95
+ end
96
+ end
97
+
98
+ def valid?(value)
99
+ !value || allowable_values.include?(value)
100
+ end
101
+ end
69
102
 
70
103
  # Attribute mapping from ruby-style variable name to JSON key.
71
104
  def self.attribute_map
@@ -81,6 +114,10 @@ module GroupDocsConversionCloud
81
114
  :'rotate_angle' => :'RotateAngle',
82
115
  :'use_pdf' => :'UsePdf',
83
116
  :'watermark_options' => :'WatermarkOptions',
117
+ :'brightness' => :'Brightness',
118
+ :'contrast' => :'Contrast',
119
+ :'gamma' => :'Gamma',
120
+ :'flip_mode' => :'FlipMode',
84
121
  :'lossless' => :'Lossless'
85
122
  }
86
123
  end
@@ -99,6 +136,10 @@ module GroupDocsConversionCloud
99
136
  :'rotate_angle' => :'Integer',
100
137
  :'use_pdf' => :'BOOLEAN',
101
138
  :'watermark_options' => :'WatermarkOptions',
139
+ :'brightness' => :'Integer',
140
+ :'contrast' => :'Integer',
141
+ :'gamma' => :'Float',
142
+ :'flip_mode' => :'String',
102
143
  :'lossless' => :'BOOLEAN'
103
144
  }
104
145
  end
@@ -157,6 +198,22 @@ module GroupDocsConversionCloud
157
198
  self.watermark_options = attributes[:'WatermarkOptions']
158
199
  end
159
200
 
201
+ if attributes.key?(:'Brightness')
202
+ self.brightness = attributes[:'Brightness']
203
+ end
204
+
205
+ if attributes.key?(:'Contrast')
206
+ self.contrast = attributes[:'Contrast']
207
+ end
208
+
209
+ if attributes.key?(:'Gamma')
210
+ self.gamma = attributes[:'Gamma']
211
+ end
212
+
213
+ if attributes.key?(:'FlipMode')
214
+ self.flip_mode = attributes[:'FlipMode']
215
+ end
216
+
160
217
  if attributes.key?(:'Lossless')
161
218
  self.lossless = attributes[:'Lossless']
162
219
  end
@@ -203,6 +260,22 @@ module GroupDocsConversionCloud
203
260
  invalid_properties.push("invalid value for 'use_pdf', use_pdf cannot be nil.")
204
261
  end
205
262
 
263
+ if @brightness.nil?
264
+ invalid_properties.push("invalid value for 'brightness', brightness cannot be nil.")
265
+ end
266
+
267
+ if @contrast.nil?
268
+ invalid_properties.push("invalid value for 'contrast', contrast cannot be nil.")
269
+ end
270
+
271
+ if @gamma.nil?
272
+ invalid_properties.push("invalid value for 'gamma', gamma cannot be nil.")
273
+ end
274
+
275
+ if @flip_mode.nil?
276
+ invalid_properties.push("invalid value for 'flip_mode', flip_mode cannot be nil.")
277
+ end
278
+
206
279
  if @lossless.nil?
207
280
  invalid_properties.push("invalid value for 'lossless', lossless cannot be nil.")
208
281
  end
@@ -222,10 +295,30 @@ module GroupDocsConversionCloud
222
295
  return false if @grayscale.nil?
223
296
  return false if @rotate_angle.nil?
224
297
  return false if @use_pdf.nil?
298
+ return false if @brightness.nil?
299
+ return false if @contrast.nil?
300
+ return false if @gamma.nil?
301
+ return false if @flip_mode.nil?
302
+ flip_mode_validator = EnumAttributeValidator.new('String', ["None", "FlipX", "FlipY", "FlipXY"])
303
+ return false unless flip_mode_validator.valid?(@flip_mode)
225
304
  return false if @lossless.nil?
226
305
  return true
227
306
  end
228
307
 
308
+ # Custom attribute writer method checking allowed values (enum).
309
+ # @param [Object] flip_mode Object to be assigned
310
+ def flip_mode=(flip_mode)
311
+ validator = EnumAttributeValidator.new('String', ["None", "FlipX", "FlipY", "FlipXY"])
312
+ if flip_mode.to_i == 0
313
+ unless validator.valid?(flip_mode)
314
+ raise ArgumentError, "invalid value for 'flip_mode', must be one of #{validator.allowable_values}."
315
+ end
316
+ @flip_mode = flip_mode
317
+ else
318
+ @flip_mode = validator.allowable_values[flip_mode.to_i]
319
+ end
320
+ end
321
+
229
322
  # Checks equality by comparing each attribute.
230
323
  # @param [Object] Object to be compared
231
324
  def ==(other)
@@ -242,6 +335,10 @@ module GroupDocsConversionCloud
242
335
  rotate_angle == other.rotate_angle &&
243
336
  use_pdf == other.use_pdf &&
244
337
  watermark_options == other.watermark_options &&
338
+ brightness == other.brightness &&
339
+ contrast == other.contrast &&
340
+ gamma == other.gamma &&
341
+ flip_mode == other.flip_mode &&
245
342
  lossless == other.lossless
246
343
  end
247
344
 
@@ -254,7 +351,7 @@ module GroupDocsConversionCloud
254
351
  # Calculates hash code according to all attributes.
255
352
  # @return [Fixnum] Hash code
256
353
  def hash
257
- [from_page, pages_count, pages, width, height, horizontal_resolution, vertical_resolution, grayscale, rotate_angle, use_pdf, watermark_options, lossless].hash
354
+ [from_page, pages_count, pages, width, height, horizontal_resolution, vertical_resolution, grayscale, rotate_angle, use_pdf, watermark_options, brightness, contrast, gamma, flip_mode, lossless].hash
258
355
  end
259
356
 
260
357
  # Downcases first letter.
@@ -64,6 +64,39 @@ module GroupDocsConversionCloud
64
64
  # Watermark specific options
65
65
  attr_accessor :watermark_options
66
66
 
67
+ # Adjust image brightness
68
+ attr_accessor :brightness
69
+
70
+ # Adjust image contrast
71
+ attr_accessor :contrast
72
+
73
+ # Adjust image gamma
74
+ attr_accessor :gamma
75
+
76
+ # Image flip mode
77
+ attr_accessor :flip_mode
78
+ class EnumAttributeValidator
79
+ attr_reader :datatype
80
+ attr_reader :allowable_values
81
+
82
+ def initialize(datatype, allowable_values)
83
+ @allowable_values = allowable_values.map do |value|
84
+ case datatype.to_s
85
+ when /Integer/i
86
+ value.to_i
87
+ when /Float/i
88
+ value.to_f
89
+ else
90
+ value
91
+ end
92
+ end
93
+ end
94
+
95
+ def valid?(value)
96
+ !value || allowable_values.include?(value)
97
+ end
98
+ end
99
+
67
100
  # Attribute mapping from ruby-style variable name to JSON key.
68
101
  def self.attribute_map
69
102
  {
@@ -77,7 +110,11 @@ module GroupDocsConversionCloud
77
110
  :'grayscale' => :'Grayscale',
78
111
  :'rotate_angle' => :'RotateAngle',
79
112
  :'use_pdf' => :'UsePdf',
80
- :'watermark_options' => :'WatermarkOptions'
113
+ :'watermark_options' => :'WatermarkOptions',
114
+ :'brightness' => :'Brightness',
115
+ :'contrast' => :'Contrast',
116
+ :'gamma' => :'Gamma',
117
+ :'flip_mode' => :'FlipMode'
81
118
  }
82
119
  end
83
120
 
@@ -94,7 +131,11 @@ module GroupDocsConversionCloud
94
131
  :'grayscale' => :'BOOLEAN',
95
132
  :'rotate_angle' => :'Integer',
96
133
  :'use_pdf' => :'BOOLEAN',
97
- :'watermark_options' => :'WatermarkOptions'
134
+ :'watermark_options' => :'WatermarkOptions',
135
+ :'brightness' => :'Integer',
136
+ :'contrast' => :'Integer',
137
+ :'gamma' => :'Float',
138
+ :'flip_mode' => :'String'
98
139
  }
99
140
  end
100
141
 
@@ -152,6 +193,22 @@ module GroupDocsConversionCloud
152
193
  self.watermark_options = attributes[:'WatermarkOptions']
153
194
  end
154
195
 
196
+ if attributes.key?(:'Brightness')
197
+ self.brightness = attributes[:'Brightness']
198
+ end
199
+
200
+ if attributes.key?(:'Contrast')
201
+ self.contrast = attributes[:'Contrast']
202
+ end
203
+
204
+ if attributes.key?(:'Gamma')
205
+ self.gamma = attributes[:'Gamma']
206
+ end
207
+
208
+ if attributes.key?(:'FlipMode')
209
+ self.flip_mode = attributes[:'FlipMode']
210
+ end
211
+
155
212
  end
156
213
 
157
214
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -194,6 +251,22 @@ module GroupDocsConversionCloud
194
251
  invalid_properties.push("invalid value for 'use_pdf', use_pdf cannot be nil.")
195
252
  end
196
253
 
254
+ if @brightness.nil?
255
+ invalid_properties.push("invalid value for 'brightness', brightness cannot be nil.")
256
+ end
257
+
258
+ if @contrast.nil?
259
+ invalid_properties.push("invalid value for 'contrast', contrast cannot be nil.")
260
+ end
261
+
262
+ if @gamma.nil?
263
+ invalid_properties.push("invalid value for 'gamma', gamma cannot be nil.")
264
+ end
265
+
266
+ if @flip_mode.nil?
267
+ invalid_properties.push("invalid value for 'flip_mode', flip_mode cannot be nil.")
268
+ end
269
+
197
270
  return invalid_properties
198
271
  end
199
272
 
@@ -209,9 +282,29 @@ module GroupDocsConversionCloud
209
282
  return false if @grayscale.nil?
210
283
  return false if @rotate_angle.nil?
211
284
  return false if @use_pdf.nil?
285
+ return false if @brightness.nil?
286
+ return false if @contrast.nil?
287
+ return false if @gamma.nil?
288
+ return false if @flip_mode.nil?
289
+ flip_mode_validator = EnumAttributeValidator.new('String', ["None", "FlipX", "FlipY", "FlipXY"])
290
+ return false unless flip_mode_validator.valid?(@flip_mode)
212
291
  return true
213
292
  end
214
293
 
294
+ # Custom attribute writer method checking allowed values (enum).
295
+ # @param [Object] flip_mode Object to be assigned
296
+ def flip_mode=(flip_mode)
297
+ validator = EnumAttributeValidator.new('String', ["None", "FlipX", "FlipY", "FlipXY"])
298
+ if flip_mode.to_i == 0
299
+ unless validator.valid?(flip_mode)
300
+ raise ArgumentError, "invalid value for 'flip_mode', must be one of #{validator.allowable_values}."
301
+ end
302
+ @flip_mode = flip_mode
303
+ else
304
+ @flip_mode = validator.allowable_values[flip_mode.to_i]
305
+ end
306
+ end
307
+
215
308
  # Checks equality by comparing each attribute.
216
309
  # @param [Object] Object to be compared
217
310
  def ==(other)
@@ -227,7 +320,11 @@ module GroupDocsConversionCloud
227
320
  grayscale == other.grayscale &&
228
321
  rotate_angle == other.rotate_angle &&
229
322
  use_pdf == other.use_pdf &&
230
- watermark_options == other.watermark_options
323
+ watermark_options == other.watermark_options &&
324
+ brightness == other.brightness &&
325
+ contrast == other.contrast &&
326
+ gamma == other.gamma &&
327
+ flip_mode == other.flip_mode
231
328
  end
232
329
 
233
330
  # @see the `==` method
@@ -239,7 +336,7 @@ module GroupDocsConversionCloud
239
336
  # Calculates hash code according to all attributes.
240
337
  # @return [Fixnum] Hash code
241
338
  def hash
242
- [from_page, pages_count, pages, width, height, horizontal_resolution, vertical_resolution, grayscale, rotate_angle, use_pdf, watermark_options].hash
339
+ [from_page, pages_count, pages, width, height, horizontal_resolution, vertical_resolution, grayscale, rotate_angle, use_pdf, watermark_options, brightness, contrast, gamma, flip_mode].hash
243
340
  end
244
341
 
245
342
  # Downcases first letter.