Skip to content

Commit e0c7ef8

Browse files
committed
Updated sources
1 parent 080955d commit e0c7ef8

35 files changed

+4280
-1518
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
groupdocs_conversion_cloud (25.6)
4+
groupdocs_conversion_cloud (25.8)
55
addressable (~> 2.8.0, >= 2.8.0)
66
faraday (~> 0.14.0)
77

lib/groupdocs_conversion_cloud/models/cad_load_options.rb

Lines changed: 25 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,14 @@ class CadLoadOptions
3737
# Render specific CAD layouts
3838
attr_accessor :layout_names
3939

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.
4441
attr_accessor :draw_type
42+
43+
# A foreground color.
44+
attr_accessor :draw_color
45+
46+
# A background color.
47+
attr_accessor :background_color
4548
class EnumAttributeValidator
4649
attr_reader :datatype
4750
attr_reader :allowable_values
@@ -69,8 +72,9 @@ def self.attribute_map
6972
{
7073
:'format' => :'Format',
7174
:'layout_names' => :'LayoutNames',
72-
:'background_color' => :'BackgroundColor',
73-
:'draw_type' => :'DrawType'
75+
:'draw_type' => :'DrawType',
76+
:'draw_color' => :'DrawColor',
77+
:'background_color' => :'BackgroundColor'
7478
}
7579
end
7680

@@ -79,8 +83,9 @@ def self.swagger_types
7983
{
8084
:'format' => :'String',
8185
:'layout_names' => :'Array<String>',
82-
:'background_color' => :'String',
83-
:'draw_type' => :'String'
86+
:'draw_type' => :'String',
87+
:'draw_color' => :'String',
88+
:'background_color' => :'String'
8489
}
8590
end
8691

@@ -102,14 +107,18 @@ def initialize(attributes = {})
102107
end
103108
end
104109

105-
if attributes.key?(:'BackgroundColor')
106-
self.background_color = attributes[:'BackgroundColor']
107-
end
108-
109110
if attributes.key?(:'DrawType')
110111
self.draw_type = attributes[:'DrawType']
111112
end
112113

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+
113122
end
114123

115124
# Show invalid properties with the reasons. Usually used together with valid?
@@ -153,8 +162,9 @@ def ==(other)
153162
self.class == other.class &&
154163
format == other.format &&
155164
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
158168
end
159169

160170
# @see the `==` method
@@ -166,7 +176,7 @@ def eql?(other)
166176
# Calculates hash code according to all attributes.
167177
# @return [Fixnum] Hash code
168178
def hash
169-
[format, layout_names, background_color, draw_type].hash
179+
[format, layout_names, draw_type, draw_color, background_color].hash
170180
end
171181

172182
# Downcases first letter.

lib/groupdocs_conversion_cloud/models/cf2_load_options.rb

Lines changed: 25 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,14 @@ class Cf2LoadOptions
3737
# Render specific CAD layouts
3838
attr_accessor :layout_names
3939

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.
4441
attr_accessor :draw_type
42+
43+
# A foreground color.
44+
attr_accessor :draw_color
45+
46+
# A background color.
47+
attr_accessor :background_color
4548
class EnumAttributeValidator
4649
attr_reader :datatype
4750
attr_reader :allowable_values
@@ -69,8 +72,9 @@ def self.attribute_map
6972
{
7073
:'format' => :'Format',
7174
:'layout_names' => :'LayoutNames',
72-
:'background_color' => :'BackgroundColor',
73-
:'draw_type' => :'DrawType'
75+
:'draw_type' => :'DrawType',
76+
:'draw_color' => :'DrawColor',
77+
:'background_color' => :'BackgroundColor'
7478
}
7579
end
7680

@@ -79,8 +83,9 @@ def self.swagger_types
7983
{
8084
:'format' => :'String',
8185
:'layout_names' => :'Array<String>',
82-
:'background_color' => :'String',
83-
:'draw_type' => :'String'
86+
:'draw_type' => :'String',
87+
:'draw_color' => :'String',
88+
:'background_color' => :'String'
8489
}
8590
end
8691

@@ -102,14 +107,18 @@ def initialize(attributes = {})
102107
end
103108
end
104109

105-
if attributes.key?(:'BackgroundColor')
106-
self.background_color = attributes[:'BackgroundColor']
107-
end
108-
109110
if attributes.key?(:'DrawType')
110111
self.draw_type = attributes[:'DrawType']
111112
end
112113

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+
113122
end
114123

115124
# Show invalid properties with the reasons. Usually used together with valid?
@@ -153,8 +162,9 @@ def ==(other)
153162
self.class == other.class &&
154163
format == other.format &&
155164
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
158168
end
159169

160170
# @see the `==` method
@@ -166,7 +176,7 @@ def eql?(other)
166176
# Calculates hash code according to all attributes.
167177
# @return [Fixnum] Hash code
168178
def hash
169-
[format, layout_names, background_color, draw_type].hash
179+
[format, layout_names, draw_type, draw_color, background_color].hash
170180
end
171181

172182
# Downcases first letter.

0 commit comments

Comments
 (0)