aspose_cells_cloud 1.0.9 → 1.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: '08dd175a3897a7ed2c93a552c8cfc69279e92b59'
4
- data.tar.gz: 98548dc0824e5448651d6a1eab80acbde675f320
3
+ metadata.gz: b99b85b92053cc45b959a31794d26a18b6e3931a
4
+ data.tar.gz: 22f7da414cda4e0607c970f28f01980a37c24380
5
5
  SHA512:
6
- metadata.gz: 4b8614e8af2455ecc4f911a3875cdf88fdcbe2f130bc164ece3ec35680a3de3049153493650757b3c6fa92c24ba589f31e8d3a1039a00742b5c853e3b77c5402
7
- data.tar.gz: 50ea6c97434ff9c57968c5cd26334dfde120f5bb7a0cf7b545b6621f562784c392fd2655a804530a19efd82d729367d827ac39430b3d10a3dd1cb56e79a4b228
6
+ metadata.gz: 8c94d0434a7623d3e5c6e04e2087f3453d41cb8c915ac6aeb18e41f88bf5141b5020e15656dcfc222e05634e971c85b7ce68dae3c4296494330e15a4f5972c3b
7
+ data.tar.gz: b84ac3efc50e8f291dbc4d9eb72f1b97a6b234dbddf7d9fd8241f459d4cc34e440ff84e67e4053ab73fe928408c36e84137d978b1a2f605e2cbc2adf00931033
@@ -0,0 +1,53 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class AboveAverage < BaseObject
4
+ attr_accessor :is_above_average, :is_equal_average, :std_dev
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ # Get or set the flag indicating whether the rule is an &#39;above average&#39; rule. &#39;true&#39; indicates &#39;above average&#39;. Default value is true.
10
+ :'is_above_average' => :'IsAboveAverage',
11
+
12
+ # Get or set the flag indicating whether the &#39;aboveAverage&#39; and &#39;belowAverage&#39; criteria is inclusive of the average itself, or exclusive of that value. &#39;true&#39; indicates to include the average value in the criteria. Default value is false.
13
+ :'is_equal_average' => :'IsEqualAverage',
14
+
15
+ # Get or set the number of standard deviations to include above or below the average in the conditional formatting rule. The input value must between 0 and 3 (include 0 and 3). Setting this value to 0 means stdDev is not set. The default value is 0.
16
+ :'std_dev' => :'StdDev'
17
+
18
+ }
19
+ end
20
+
21
+ # attribute type
22
+ def self.swagger_types
23
+ {
24
+ :'is_above_average' => :'BOOLEAN',
25
+ :'is_equal_average' => :'BOOLEAN',
26
+ :'std_dev' => :'Integer'
27
+
28
+ }
29
+ end
30
+
31
+ def initialize(attributes = {})
32
+ return if !attributes.is_a?(Hash) || attributes.empty?
33
+
34
+ # convert string to symbol for hash key
35
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
36
+
37
+
38
+ if attributes[:'IsAboveAverage']
39
+ self.is_above_average = attributes[:'IsAboveAverage']
40
+ end
41
+
42
+ if attributes[:'IsEqualAverage']
43
+ self.is_equal_average = attributes[:'IsEqualAverage']
44
+ end
45
+
46
+ if attributes[:'StdDev']
47
+ self.std_dev = attributes[:'StdDev']
48
+ end
49
+
50
+ end
51
+
52
+ end
53
+ end
@@ -0,0 +1,77 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class ColorScale < BaseObject
4
+ attr_accessor :max_cfvo, :max_color, :mid_cfvo, :mid_color, :min_cfvo, :min_color
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ # Get or set this ColorScale&#39;s max value object. Cannot set null or CFValueObject with type FormatConditionValueType.Min to it.
10
+ :'max_cfvo' => :'MaxCfvo',
11
+
12
+ # Get or set the max value object&#39;s corresponding color.
13
+ :'max_color' => :'MaxColor',
14
+
15
+ # Get or set this ColorScale&#39;s mid value object. Cannot set CFValueObject with type FormatConditionValueType.Max or FormatConditionValueType.Min to it.
16
+ :'mid_cfvo' => :'MidCfvo',
17
+
18
+ # Get or set the mid value object&#39;s corresponding color.
19
+ :'mid_color' => :'MidColor',
20
+
21
+ # Get or set this ColorScale&#39;s min value object. Cannot set null or CFValueObject with type FormatConditionValueType.Max to it.
22
+ :'min_cfvo' => :'MinCfvo',
23
+
24
+ # Get or set the min value object&#39;s corresponding color.
25
+ :'min_color' => :'MinColor'
26
+
27
+ }
28
+ end
29
+
30
+ # attribute type
31
+ def self.swagger_types
32
+ {
33
+ :'max_cfvo' => :'ConditionalFormattingValue',
34
+ :'max_color' => :'Color',
35
+ :'mid_cfvo' => :'ConditionalFormattingValue',
36
+ :'mid_color' => :'Color',
37
+ :'min_cfvo' => :'ConditionalFormattingValue',
38
+ :'min_color' => :'Color'
39
+
40
+ }
41
+ end
42
+
43
+ def initialize(attributes = {})
44
+ return if !attributes.is_a?(Hash) || attributes.empty?
45
+
46
+ # convert string to symbol for hash key
47
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
48
+
49
+
50
+ if attributes[:'MaxCfvo']
51
+ self.max_cfvo = attributes[:'MaxCfvo']
52
+ end
53
+
54
+ if attributes[:'MaxColor']
55
+ self.max_color = attributes[:'MaxColor']
56
+ end
57
+
58
+ if attributes[:'MidCfvo']
59
+ self.mid_cfvo = attributes[:'MidCfvo']
60
+ end
61
+
62
+ if attributes[:'MidColor']
63
+ self.mid_color = attributes[:'MidColor']
64
+ end
65
+
66
+ if attributes[:'MinCfvo']
67
+ self.min_cfvo = attributes[:'MinCfvo']
68
+ end
69
+
70
+ if attributes[:'MinColor']
71
+ self.min_color = attributes[:'MinColor']
72
+ end
73
+
74
+ end
75
+
76
+ end
77
+ end
@@ -0,0 +1,55 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class ConditionalFormatting < BaseObject
4
+ attr_accessor :sqref, :format_conditions, :link
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ #
10
+ :'sqref' => :'sqref',
11
+
12
+ #
13
+ :'format_conditions' => :'FormatConditions',
14
+
15
+ #
16
+ :'link' => :'link'
17
+
18
+ }
19
+ end
20
+
21
+ # attribute type
22
+ def self.swagger_types
23
+ {
24
+ :'sqref' => :'String',
25
+ :'format_conditions' => :'Array<FormatCondition>',
26
+ :'link' => :'Link'
27
+
28
+ }
29
+ end
30
+
31
+ def initialize(attributes = {})
32
+ return if !attributes.is_a?(Hash) || attributes.empty?
33
+
34
+ # convert string to symbol for hash key
35
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
36
+
37
+
38
+ if attributes[:'sqref']
39
+ self.sqref = attributes[:'sqref']
40
+ end
41
+
42
+ if attributes[:'FormatConditions']
43
+ if (value = attributes[:'FormatConditions']).is_a?(Array)
44
+ self.format_conditions = value
45
+ end
46
+ end
47
+
48
+ if attributes[:'link']
49
+ self.link = attributes[:'link']
50
+ end
51
+
52
+ end
53
+
54
+ end
55
+ end
@@ -0,0 +1,53 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class ConditionalFormattingIcon < BaseObject
4
+ attr_accessor :image_data, :index, :type
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ # Gets the icon set data.
10
+ :'image_data' => :'ImageData',
11
+
12
+ # Gets and sets the icon&#39;s index in the icon set.
13
+ :'index' => :'Index',
14
+
15
+ # Gets and sets the icon set type.
16
+ :'type' => :'Type'
17
+
18
+ }
19
+ end
20
+
21
+ # attribute type
22
+ def self.swagger_types
23
+ {
24
+ :'image_data' => :'String',
25
+ :'index' => :'Integer',
26
+ :'type' => :'String'
27
+
28
+ }
29
+ end
30
+
31
+ def initialize(attributes = {})
32
+ return if !attributes.is_a?(Hash) || attributes.empty?
33
+
34
+ # convert string to symbol for hash key
35
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
36
+
37
+
38
+ if attributes[:'ImageData']
39
+ self.image_data = attributes[:'ImageData']
40
+ end
41
+
42
+ if attributes[:'Index']
43
+ self.index = attributes[:'Index']
44
+ end
45
+
46
+ if attributes[:'Type']
47
+ self.type = attributes[:'Type']
48
+ end
49
+
50
+ end
51
+
52
+ end
53
+ end
@@ -0,0 +1,53 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class ConditionalFormattingResponse < BaseObject
4
+ attr_accessor :conditional_formatting, :code, :status
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ #
10
+ :'conditional_formatting' => :'ConditionalFormatting',
11
+
12
+ #
13
+ :'code' => :'Code',
14
+
15
+ #
16
+ :'status' => :'Status'
17
+
18
+ }
19
+ end
20
+
21
+ # attribute type
22
+ def self.swagger_types
23
+ {
24
+ :'conditional_formatting' => :'ConditionalFormatting',
25
+ :'code' => :'String',
26
+ :'status' => :'String'
27
+
28
+ }
29
+ end
30
+
31
+ def initialize(attributes = {})
32
+ return if !attributes.is_a?(Hash) || attributes.empty?
33
+
34
+ # convert string to symbol for hash key
35
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
36
+
37
+
38
+ if attributes[:'ConditionalFormatting']
39
+ self.conditional_formatting = attributes[:'ConditionalFormatting']
40
+ end
41
+
42
+ if attributes[:'Code']
43
+ self.code = attributes[:'Code']
44
+ end
45
+
46
+ if attributes[:'Status']
47
+ self.status = attributes[:'Status']
48
+ end
49
+
50
+ end
51
+
52
+ end
53
+ end
@@ -0,0 +1,53 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class ConditionalFormattingValue < BaseObject
4
+ attr_accessor :is_gte, :type, :value
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ # Get or set the Greater Than Or Equal flag. Use only for icon sets, determines whether this threshold value uses the greater than or equal to operator. &#39;false&#39; indicates &#39;greater than&#39; is used instead of &#39;greater than or equal to&#39;. Default value is true.
10
+ :'is_gte' => :'IsGTE',
11
+
12
+ # Get or set the type of this conditional formatting value object. Setting the type to FormatConditionValueType.Min or FormatConditionValueType.Max will auto set &#39;Value&#39; to null.
13
+ :'type' => :'Type',
14
+
15
+ # Get or set the value of this conditional formatting value object. It should be used in conjunction with Type.
16
+ :'value' => :'Value'
17
+
18
+ }
19
+ end
20
+
21
+ # attribute type
22
+ def self.swagger_types
23
+ {
24
+ :'is_gte' => :'BOOLEAN',
25
+ :'type' => :'String',
26
+ :'value' => :'String'
27
+
28
+ }
29
+ end
30
+
31
+ def initialize(attributes = {})
32
+ return if !attributes.is_a?(Hash) || attributes.empty?
33
+
34
+ # convert string to symbol for hash key
35
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
36
+
37
+
38
+ if attributes[:'IsGTE']
39
+ self.is_gte = attributes[:'IsGTE']
40
+ end
41
+
42
+ if attributes[:'Type']
43
+ self.type = attributes[:'Type']
44
+ end
45
+
46
+ if attributes[:'Value']
47
+ self.value = attributes[:'Value']
48
+ end
49
+
50
+ end
51
+
52
+ end
53
+ end
@@ -0,0 +1,55 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class ConditionalFormattings < BaseObject
4
+ attr_accessor :count, :conditional_formatting_list, :link
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ #
10
+ :'count' => :'Count',
11
+
12
+ #
13
+ :'conditional_formatting_list' => :'ConditionalFormattingList',
14
+
15
+ #
16
+ :'link' => :'link'
17
+
18
+ }
19
+ end
20
+
21
+ # attribute type
22
+ def self.swagger_types
23
+ {
24
+ :'count' => :'Integer',
25
+ :'conditional_formatting_list' => :'Array<ConditionalFormatting>',
26
+ :'link' => :'Link'
27
+
28
+ }
29
+ end
30
+
31
+ def initialize(attributes = {})
32
+ return if !attributes.is_a?(Hash) || attributes.empty?
33
+
34
+ # convert string to symbol for hash key
35
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
36
+
37
+
38
+ if attributes[:'Count']
39
+ self.count = attributes[:'Count']
40
+ end
41
+
42
+ if attributes[:'ConditionalFormattingList']
43
+ if (value = attributes[:'ConditionalFormattingList']).is_a?(Array)
44
+ self.conditional_formatting_list = value
45
+ end
46
+ end
47
+
48
+ if attributes[:'link']
49
+ self.link = attributes[:'link']
50
+ end
51
+
52
+ end
53
+
54
+ end
55
+ end
@@ -0,0 +1,53 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class ConditionalFormattingsResponse < BaseObject
4
+ attr_accessor :conditional_formattings, :code, :status
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ #
10
+ :'conditional_formattings' => :'ConditionalFormattings',
11
+
12
+ #
13
+ :'code' => :'Code',
14
+
15
+ #
16
+ :'status' => :'Status'
17
+
18
+ }
19
+ end
20
+
21
+ # attribute type
22
+ def self.swagger_types
23
+ {
24
+ :'conditional_formattings' => :'ConditionalFormattings',
25
+ :'code' => :'String',
26
+ :'status' => :'String'
27
+
28
+ }
29
+ end
30
+
31
+ def initialize(attributes = {})
32
+ return if !attributes.is_a?(Hash) || attributes.empty?
33
+
34
+ # convert string to symbol for hash key
35
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
36
+
37
+
38
+ if attributes[:'ConditionalFormattings']
39
+ self.conditional_formattings = attributes[:'ConditionalFormattings']
40
+ end
41
+
42
+ if attributes[:'Code']
43
+ self.code = attributes[:'Code']
44
+ end
45
+
46
+ if attributes[:'Status']
47
+ self.status = attributes[:'Status']
48
+ end
49
+
50
+ end
51
+
52
+ end
53
+ end
@@ -0,0 +1,125 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class DataBar < BaseObject
4
+ attr_accessor :axis_color, :axis_position, :bar_border, :bar_fill_type, :color, :direction, :max_cfvo, :max_length, :min_cfvo, :min_length, :negative_bar_format, :show_value
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ # Gets the color of the axis for cells with conditional formatting as data bars.
10
+ :'axis_color' => :'AxisColor',
11
+
12
+ # Gets or sets the position of the axis of the data bars specified by a conditional formatting rule.
13
+ :'axis_position' => :'AxisPosition',
14
+
15
+ # Gets an object that specifies the border of a data bar.
16
+ :'bar_border' => :'BarBorder',
17
+
18
+ # Gets or sets how a data bar is filled with color.
19
+ :'bar_fill_type' => :'BarFillType',
20
+
21
+ # Get or set this DataBar&#39;s Color.
22
+ :'color' => :'Color',
23
+
24
+ # Gets or sets the direction the databar is displayed.
25
+ :'direction' => :'Direction',
26
+
27
+ # Get or set this DataBar&#39;s max value object. Cannot set null or CFValueObject with type FormatConditionValueType.Min to it.
28
+ :'max_cfvo' => :'MaxCfvo',
29
+
30
+ # Represents the max length of data bar.
31
+ :'max_length' => :'MaxLength',
32
+
33
+ # Get or set this DataBar&#39;s min value object. Cannot set null or CFValueObject with type FormatConditionValueType.Max to it.
34
+ :'min_cfvo' => :'MinCfvo',
35
+
36
+ # Represents the min length of data bar.
37
+ :'min_length' => :'MinLength',
38
+
39
+ # Gets the NegativeBarFormat object associated with a data bar conditional formatting rule.
40
+ :'negative_bar_format' => :'NegativeBarFormat',
41
+
42
+ # Get or set the flag indicating whether to show the values of the cells on which this data bar is applied. Default value is true.
43
+ :'show_value' => :'ShowValue'
44
+
45
+ }
46
+ end
47
+
48
+ # attribute type
49
+ def self.swagger_types
50
+ {
51
+ :'axis_color' => :'Color',
52
+ :'axis_position' => :'String',
53
+ :'bar_border' => :'DataBarBorder',
54
+ :'bar_fill_type' => :'String',
55
+ :'color' => :'Color',
56
+ :'direction' => :'String',
57
+ :'max_cfvo' => :'ConditionalFormattingValue',
58
+ :'max_length' => :'Integer',
59
+ :'min_cfvo' => :'ConditionalFormattingValue',
60
+ :'min_length' => :'Integer',
61
+ :'negative_bar_format' => :'NegativeBarFormat',
62
+ :'show_value' => :'BOOLEAN'
63
+
64
+ }
65
+ end
66
+
67
+ def initialize(attributes = {})
68
+ return if !attributes.is_a?(Hash) || attributes.empty?
69
+
70
+ # convert string to symbol for hash key
71
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
72
+
73
+
74
+ if attributes[:'AxisColor']
75
+ self.axis_color = attributes[:'AxisColor']
76
+ end
77
+
78
+ if attributes[:'AxisPosition']
79
+ self.axis_position = attributes[:'AxisPosition']
80
+ end
81
+
82
+ if attributes[:'BarBorder']
83
+ self.bar_border = attributes[:'BarBorder']
84
+ end
85
+
86
+ if attributes[:'BarFillType']
87
+ self.bar_fill_type = attributes[:'BarFillType']
88
+ end
89
+
90
+ if attributes[:'Color']
91
+ self.color = attributes[:'Color']
92
+ end
93
+
94
+ if attributes[:'Direction']
95
+ self.direction = attributes[:'Direction']
96
+ end
97
+
98
+ if attributes[:'MaxCfvo']
99
+ self.max_cfvo = attributes[:'MaxCfvo']
100
+ end
101
+
102
+ if attributes[:'MaxLength']
103
+ self.max_length = attributes[:'MaxLength']
104
+ end
105
+
106
+ if attributes[:'MinCfvo']
107
+ self.min_cfvo = attributes[:'MinCfvo']
108
+ end
109
+
110
+ if attributes[:'MinLength']
111
+ self.min_length = attributes[:'MinLength']
112
+ end
113
+
114
+ if attributes[:'NegativeBarFormat']
115
+ self.negative_bar_format = attributes[:'NegativeBarFormat']
116
+ end
117
+
118
+ if attributes[:'ShowValue']
119
+ self.show_value = attributes[:'ShowValue']
120
+ end
121
+
122
+ end
123
+
124
+ end
125
+ end
@@ -0,0 +1,45 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class DataBarBorder < BaseObject
4
+ attr_accessor :color, :type
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ # Gets or sets the border&#39;s color of data bars specified by a conditional formatting rule.
10
+ :'color' => :'Color',
11
+
12
+ # Gets or sets the border&#39;s type of data bars specified by a conditional formatting rule.
13
+ :'type' => :'Type'
14
+
15
+ }
16
+ end
17
+
18
+ # attribute type
19
+ def self.swagger_types
20
+ {
21
+ :'color' => :'Color',
22
+ :'type' => :'String'
23
+
24
+ }
25
+ end
26
+
27
+ def initialize(attributes = {})
28
+ return if !attributes.is_a?(Hash) || attributes.empty?
29
+
30
+ # convert string to symbol for hash key
31
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
32
+
33
+
34
+ if attributes[:'Color']
35
+ self.color = attributes[:'Color']
36
+ end
37
+
38
+ if attributes[:'Type']
39
+ self.type = attributes[:'Type']
40
+ end
41
+
42
+ end
43
+
44
+ end
45
+ end
@@ -0,0 +1,149 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class FormatCondition < BaseObject
4
+ attr_accessor :priority, :type, :stop_if_true, :above_average, :color_scale, :data_bar, :formula1, :formula2, :icon_set, :operator, :style, :text, :time_period, :top10, :link
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ # The priority of this conditional formatting rule. This value is used to determine which format should be evaluated and rendered. Lower numeric values are higher priority than higher numeric values, where &#39;1&#39; is the highest priority.
10
+ :'priority' => :'Priority',
11
+
12
+ # Gets and sets whether the conditional format Type.
13
+ :'type' => :'Type',
14
+
15
+ # True, no rules with lower priority may be applied over this rule, when this rule evaluates to true. Only applies for Excel 2007;
16
+ :'stop_if_true' => :'StopIfTrue',
17
+
18
+ #
19
+ :'above_average' => :'AboveAverage',
20
+
21
+ #
22
+ :'color_scale' => :'ColorScale',
23
+
24
+ #
25
+ :'data_bar' => :'DataBar',
26
+
27
+ #
28
+ :'formula1' => :'Formula1',
29
+
30
+ #
31
+ :'formula2' => :'Formula2',
32
+
33
+ #
34
+ :'icon_set' => :'IconSet',
35
+
36
+ #
37
+ :'operator' => :'Operator',
38
+
39
+ #
40
+ :'style' => :'Style',
41
+
42
+ #
43
+ :'text' => :'Text',
44
+
45
+ #
46
+ :'time_period' => :'TimePeriod',
47
+
48
+ #
49
+ :'top10' => :'Top10',
50
+
51
+ #
52
+ :'link' => :'link'
53
+
54
+ }
55
+ end
56
+
57
+ # attribute type
58
+ def self.swagger_types
59
+ {
60
+ :'priority' => :'Integer',
61
+ :'type' => :'String',
62
+ :'stop_if_true' => :'BOOLEAN',
63
+ :'above_average' => :'AboveAverage',
64
+ :'color_scale' => :'ColorScale',
65
+ :'data_bar' => :'DataBar',
66
+ :'formula1' => :'String',
67
+ :'formula2' => :'String',
68
+ :'icon_set' => :'IconSet',
69
+ :'operator' => :'String',
70
+ :'style' => :'Style',
71
+ :'text' => :'String',
72
+ :'time_period' => :'String',
73
+ :'top10' => :'Top10',
74
+ :'link' => :'Link'
75
+
76
+ }
77
+ end
78
+
79
+ def initialize(attributes = {})
80
+ return if !attributes.is_a?(Hash) || attributes.empty?
81
+
82
+ # convert string to symbol for hash key
83
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
84
+
85
+
86
+ if attributes[:'Priority']
87
+ self.priority = attributes[:'Priority']
88
+ end
89
+
90
+ if attributes[:'Type']
91
+ self.type = attributes[:'Type']
92
+ end
93
+
94
+ if attributes[:'StopIfTrue']
95
+ self.stop_if_true = attributes[:'StopIfTrue']
96
+ end
97
+
98
+ if attributes[:'AboveAverage']
99
+ self.above_average = attributes[:'AboveAverage']
100
+ end
101
+
102
+ if attributes[:'ColorScale']
103
+ self.color_scale = attributes[:'ColorScale']
104
+ end
105
+
106
+ if attributes[:'DataBar']
107
+ self.data_bar = attributes[:'DataBar']
108
+ end
109
+
110
+ if attributes[:'Formula1']
111
+ self.formula1 = attributes[:'Formula1']
112
+ end
113
+
114
+ if attributes[:'Formula2']
115
+ self.formula2 = attributes[:'Formula2']
116
+ end
117
+
118
+ if attributes[:'IconSet']
119
+ self.icon_set = attributes[:'IconSet']
120
+ end
121
+
122
+ if attributes[:'Operator']
123
+ self.operator = attributes[:'Operator']
124
+ end
125
+
126
+ if attributes[:'Style']
127
+ self.style = attributes[:'Style']
128
+ end
129
+
130
+ if attributes[:'Text']
131
+ self.text = attributes[:'Text']
132
+ end
133
+
134
+ if attributes[:'TimePeriod']
135
+ self.time_period = attributes[:'TimePeriod']
136
+ end
137
+
138
+ if attributes[:'Top10']
139
+ self.top10 = attributes[:'Top10']
140
+ end
141
+
142
+ if attributes[:'link']
143
+ self.link = attributes[:'link']
144
+ end
145
+
146
+ end
147
+
148
+ end
149
+ end
@@ -0,0 +1,81 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class IconSet < BaseObject
4
+ attr_accessor :cf_icons, :cfvos, :is_custom, :reverse, :show_value, :icon_set_type
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ # Get theAspose.Cells.ConditionalFormattingIcon from the collection
10
+ :'cf_icons' => :'CfIcons',
11
+
12
+ # Get the CFValueObjects instance.
13
+ :'cfvos' => :'Cfvos',
14
+
15
+ # Indicates whether the icon set is custom. Default value is false.
16
+ :'is_custom' => :'IsCustom',
17
+
18
+ # Get or set the flag indicating whether to reverses the default order of the icons in this icon set. Default value is false.
19
+ :'reverse' => :'Reverse',
20
+
21
+ # Get or set the flag indicating whether to show the values of the cells on which this icon set is applied. Default value is true.
22
+ :'show_value' => :'ShowValue',
23
+
24
+ # Get or Set the icon set type to display. Setting the type will auto check if the current Cfvos&#39;s count is accord with the new type. If not accord, old Cfvos will be cleaned and default Cfvos will be added.
25
+ :'icon_set_type' => :'IconSetType'
26
+
27
+ }
28
+ end
29
+
30
+ # attribute type
31
+ def self.swagger_types
32
+ {
33
+ :'cf_icons' => :'Array<ConditionalFormattingIcon>',
34
+ :'cfvos' => :'Array<ConditionalFormattingValue>',
35
+ :'is_custom' => :'BOOLEAN',
36
+ :'reverse' => :'BOOLEAN',
37
+ :'show_value' => :'BOOLEAN',
38
+ :'icon_set_type' => :'String'
39
+
40
+ }
41
+ end
42
+
43
+ def initialize(attributes = {})
44
+ return if !attributes.is_a?(Hash) || attributes.empty?
45
+
46
+ # convert string to symbol for hash key
47
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
48
+
49
+
50
+ if attributes[:'CfIcons']
51
+ if (value = attributes[:'CfIcons']).is_a?(Array)
52
+ self.cf_icons = value
53
+ end
54
+ end
55
+
56
+ if attributes[:'Cfvos']
57
+ if (value = attributes[:'Cfvos']).is_a?(Array)
58
+ self.cfvos = value
59
+ end
60
+ end
61
+
62
+ if attributes[:'IsCustom']
63
+ self.is_custom = attributes[:'IsCustom']
64
+ end
65
+
66
+ if attributes[:'Reverse']
67
+ self.reverse = attributes[:'Reverse']
68
+ end
69
+
70
+ if attributes[:'ShowValue']
71
+ self.show_value = attributes[:'ShowValue']
72
+ end
73
+
74
+ if attributes[:'IconSetType']
75
+ self.icon_set_type = attributes[:'IconSetType']
76
+ end
77
+
78
+ end
79
+
80
+ end
81
+ end
@@ -0,0 +1,61 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class NegativeBarFormat < BaseObject
4
+ attr_accessor :border_color, :border_color_type, :color, :color_type
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ # Gets or sets a FormatColor object that you can use to specify the border color for negative data bars.
10
+ :'border_color' => :'BorderColor',
11
+
12
+ # Gets whether to use the same border color as positive data bars.
13
+ :'border_color_type' => :'BorderColorType',
14
+
15
+ # Gets or sets a FormatColor object that you can use to specify the fill color for negative data bars.
16
+ :'color' => :'Color',
17
+
18
+ # Gets or sets whether to use the same fill color as positive data bars.
19
+ :'color_type' => :'ColorType'
20
+
21
+ }
22
+ end
23
+
24
+ # attribute type
25
+ def self.swagger_types
26
+ {
27
+ :'border_color' => :'Color',
28
+ :'border_color_type' => :'String',
29
+ :'color' => :'Color',
30
+ :'color_type' => :'String'
31
+
32
+ }
33
+ end
34
+
35
+ def initialize(attributes = {})
36
+ return if !attributes.is_a?(Hash) || attributes.empty?
37
+
38
+ # convert string to symbol for hash key
39
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
40
+
41
+
42
+ if attributes[:'BorderColor']
43
+ self.border_color = attributes[:'BorderColor']
44
+ end
45
+
46
+ if attributes[:'BorderColorType']
47
+ self.border_color_type = attributes[:'BorderColorType']
48
+ end
49
+
50
+ if attributes[:'Color']
51
+ self.color = attributes[:'Color']
52
+ end
53
+
54
+ if attributes[:'ColorType']
55
+ self.color_type = attributes[:'ColorType']
56
+ end
57
+
58
+ end
59
+
60
+ end
61
+ end
@@ -0,0 +1,55 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class PivotFiltersResponse < BaseObject
4
+ attr_accessor :pivot_filters, :code, :status
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ #
10
+ :'pivot_filters' => :'PivotFilters',
11
+
12
+ #
13
+ :'code' => :'Code',
14
+
15
+ #
16
+ :'status' => :'Status'
17
+
18
+ }
19
+ end
20
+
21
+ # attribute type
22
+ def self.swagger_types
23
+ {
24
+ :'pivot_filters' => :'Array<PivotFilter>',
25
+ :'code' => :'String',
26
+ :'status' => :'String'
27
+
28
+ }
29
+ end
30
+
31
+ def initialize(attributes = {})
32
+ return if !attributes.is_a?(Hash) || attributes.empty?
33
+
34
+ # convert string to symbol for hash key
35
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
36
+
37
+
38
+ if attributes[:'PivotFilters']
39
+ if (value = attributes[:'PivotFilters']).is_a?(Array)
40
+ self.pivot_filters = value
41
+ end
42
+ end
43
+
44
+ if attributes[:'Code']
45
+ self.code = attributes[:'Code']
46
+ end
47
+
48
+ if attributes[:'Status']
49
+ self.status = attributes[:'Status']
50
+ end
51
+
52
+ end
53
+
54
+ end
55
+ end
@@ -0,0 +1,53 @@
1
+ module AsposeCellsCloud
2
+ #
3
+ class Top10 < BaseObject
4
+ attr_accessor :is_bottom, :is_percent, :rank
5
+ # attribute mapping from ruby-style variable name to JSON key
6
+ def self.attribute_map
7
+ {
8
+
9
+ # Get or set the flag indicating whether a &#39;top/bottom&#39; rule is a &#39;bottom&#39; rule. &#39;1&#39; indicates &#39;bottom&#39;. Default value is false.
10
+ :'is_bottom' => :'IsBottom',
11
+
12
+ # Get or set the flag indicating whether a &#39;top/bottom&#39; rule is a &#39;top/bottom percent&#39; rule. Default value is false.
13
+ :'is_percent' => :'IsPercent',
14
+
15
+ # Get or set the value of &#39;n&#39; in a &#39;top/bottom n&#39; conditional formatting rule. If IsPercent is true, the value must between 0 and 100. Otherwise it must between 0 and 1000. Default value is 10.
16
+ :'rank' => :'Rank'
17
+
18
+ }
19
+ end
20
+
21
+ # attribute type
22
+ def self.swagger_types
23
+ {
24
+ :'is_bottom' => :'BOOLEAN',
25
+ :'is_percent' => :'BOOLEAN',
26
+ :'rank' => :'Integer'
27
+
28
+ }
29
+ end
30
+
31
+ def initialize(attributes = {})
32
+ return if !attributes.is_a?(Hash) || attributes.empty?
33
+
34
+ # convert string to symbol for hash key
35
+ attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
36
+
37
+
38
+ if attributes[:'IsBottom']
39
+ self.is_bottom = attributes[:'IsBottom']
40
+ end
41
+
42
+ if attributes[:'IsPercent']
43
+ self.is_percent = attributes[:'IsPercent']
44
+ end
45
+
46
+ if attributes[:'Rank']
47
+ self.rank = attributes[:'Rank']
48
+ end
49
+
50
+ end
51
+
52
+ end
53
+ end
@@ -1,3 +1,3 @@
1
1
  module AsposeCellsCloud
2
- VERSION = "1.0.9"
2
+ VERSION = "1.0.10"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aspose_cells_cloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.9
4
+ version: 1.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - M. Sohail Ismail
@@ -93,13 +93,13 @@ files:
93
93
  - ".ruby-version"
94
94
  - LICENSE
95
95
  - README.md
96
- - aspose_cells_cloud-1.0.8.gem
97
96
  - aspose_cells_cloud.gemspec
98
97
  - lib/aspose_cells_cloud.rb
99
98
  - lib/aspose_cells_cloud/api/cells_api.rb
100
99
  - lib/aspose_cells_cloud/api_client.rb
101
100
  - lib/aspose_cells_cloud/api_error.rb
102
101
  - lib/aspose_cells_cloud/configuration.rb
102
+ - lib/aspose_cells_cloud/models/above_average.rb
103
103
  - lib/aspose_cells_cloud/models/auto_filter.rb
104
104
  - lib/aspose_cells_cloud/models/auto_filter_response.rb
105
105
  - lib/aspose_cells_cloud/models/auto_fitter_options.rb
@@ -132,6 +132,7 @@ files:
132
132
  - lib/aspose_cells_cloud/models/color.rb
133
133
  - lib/aspose_cells_cloud/models/color_filter.rb
134
134
  - lib/aspose_cells_cloud/models/color_filter_request.rb
135
+ - lib/aspose_cells_cloud/models/color_scale.rb
135
136
  - lib/aspose_cells_cloud/models/column.rb
136
137
  - lib/aspose_cells_cloud/models/column_response.rb
137
138
  - lib/aspose_cells_cloud/models/columns.rb
@@ -140,9 +141,17 @@ files:
140
141
  - lib/aspose_cells_cloud/models/comment_response.rb
141
142
  - lib/aspose_cells_cloud/models/comments.rb
142
143
  - lib/aspose_cells_cloud/models/comments_response.rb
144
+ - lib/aspose_cells_cloud/models/conditional_formatting.rb
145
+ - lib/aspose_cells_cloud/models/conditional_formatting_icon.rb
146
+ - lib/aspose_cells_cloud/models/conditional_formatting_response.rb
147
+ - lib/aspose_cells_cloud/models/conditional_formatting_value.rb
148
+ - lib/aspose_cells_cloud/models/conditional_formattings.rb
149
+ - lib/aspose_cells_cloud/models/conditional_formattings_response.rb
143
150
  - lib/aspose_cells_cloud/models/copy_options.rb
144
151
  - lib/aspose_cells_cloud/models/create_pivot_table_request.rb
145
152
  - lib/aspose_cells_cloud/models/custom_filter.rb
153
+ - lib/aspose_cells_cloud/models/data_bar.rb
154
+ - lib/aspose_cells_cloud/models/data_bar_border.rb
146
155
  - lib/aspose_cells_cloud/models/data_sorter.rb
147
156
  - lib/aspose_cells_cloud/models/date_time_group_item.rb
148
157
  - lib/aspose_cells_cloud/models/drawing_area.rb
@@ -165,11 +174,13 @@ files:
165
174
  - lib/aspose_cells_cloud/models/filter_column.rb
166
175
  - lib/aspose_cells_cloud/models/font.rb
167
176
  - lib/aspose_cells_cloud/models/font_setting.rb
177
+ - lib/aspose_cells_cloud/models/format_condition.rb
168
178
  - lib/aspose_cells_cloud/models/hyperlink.rb
169
179
  - lib/aspose_cells_cloud/models/hyperlink_response.rb
170
180
  - lib/aspose_cells_cloud/models/hyperlinks.rb
171
181
  - lib/aspose_cells_cloud/models/hyperlinks_response.rb
172
182
  - lib/aspose_cells_cloud/models/icon_filter.rb
183
+ - lib/aspose_cells_cloud/models/icon_set.rb
173
184
  - lib/aspose_cells_cloud/models/import_batch_data_option.rb
174
185
  - lib/aspose_cells_cloud/models/import_data_task_description.rb
175
186
  - lib/aspose_cells_cloud/models/import_data_task_parameter.rb
@@ -191,6 +202,7 @@ files:
191
202
  - lib/aspose_cells_cloud/models/name_response.rb
192
203
  - lib/aspose_cells_cloud/models/names.rb
193
204
  - lib/aspose_cells_cloud/models/names_response.rb
205
+ - lib/aspose_cells_cloud/models/negative_bar_format.rb
194
206
  - lib/aspose_cells_cloud/models/ole_object_response.rb
195
207
  - lib/aspose_cells_cloud/models/ole_objects_response.rb
196
208
  - lib/aspose_cells_cloud/models/password_request.rb
@@ -198,6 +210,7 @@ files:
198
210
  - lib/aspose_cells_cloud/models/picture_response.rb
199
211
  - lib/aspose_cells_cloud/models/pictures_response.rb
200
212
  - lib/aspose_cells_cloud/models/pivot_field_response.rb
213
+ - lib/aspose_cells_cloud/models/pivot_filters_response.rb
201
214
  - lib/aspose_cells_cloud/models/pivot_pivot_field.rb
202
215
  - lib/aspose_cells_cloud/models/pivot_pivot_filter.rb
203
216
  - lib/aspose_cells_cloud/models/pivot_pivot_item.rb
@@ -232,6 +245,7 @@ files:
232
245
  - lib/aspose_cells_cloud/models/text_items_response.rb
233
246
  - lib/aspose_cells_cloud/models/theme_color.rb
234
247
  - lib/aspose_cells_cloud/models/title_response.rb
248
+ - lib/aspose_cells_cloud/models/top10.rb
235
249
  - lib/aspose_cells_cloud/models/top10_filter.rb
236
250
  - lib/aspose_cells_cloud/models/validation.rb
237
251
  - lib/aspose_cells_cloud/models/validation_response.rb
Binary file