aspose_cells_cloud 24.3 → 24.4
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.
- checksums.yaml +4 -4
- data/README.md +10 -6
- data/lib/aspose_cells_cloud/api/cells_api.rb +8 -0
- data/lib/aspose_cells_cloud/models/cells_object_operate_task_parameter.rb +13 -1
- data/lib/aspose_cells_cloud/models/convert_task_parameter.rb +13 -1
- data/lib/aspose_cells_cloud/models/convert_worksheet_task_parameter.rb +25 -1
- data/lib/aspose_cells_cloud/models/data_item.rb +222 -0
- data/lib/aspose_cells_cloud/models/data_source.rb +222 -0
- data/lib/aspose_cells_cloud/models/data_transformation_request.rb +258 -0
- data/lib/aspose_cells_cloud/models/import2_dimension_double_array_option.rb +13 -1
- data/lib/aspose_cells_cloud/models/import2_dimension_int_array_option.rb +13 -1
- data/lib/aspose_cells_cloud/models/import2_dimension_string_array_option.rb +13 -1
- data/lib/aspose_cells_cloud/models/import_batch_data_option.rb +13 -1
- data/lib/aspose_cells_cloud/models/import_csv_data_option.rb +13 -1
- data/lib/aspose_cells_cloud/models/import_data_task_parameter.rb +25 -1
- data/lib/aspose_cells_cloud/models/import_double_array_option.rb +13 -1
- data/lib/aspose_cells_cloud/models/import_int_array_option.rb +13 -1
- data/lib/aspose_cells_cloud/models/import_json_request.rb +1 -1
- data/lib/aspose_cells_cloud/models/import_option.rb +13 -1
- data/lib/aspose_cells_cloud/models/import_picture_option.rb +13 -1
- data/lib/aspose_cells_cloud/models/import_string_array_option.rb +13 -1
- data/lib/aspose_cells_cloud/models/import_xml_request.rb +1 -1
- data/lib/aspose_cells_cloud/models/load_data.rb +246 -0
- data/lib/aspose_cells_cloud/models/load_to.rb +234 -0
- data/lib/aspose_cells_cloud/models/operate_object_position.rb +13 -1
- data/lib/aspose_cells_cloud/models/pivot_column.rb +222 -0
- data/lib/aspose_cells_cloud/models/pptx_save_options.rb +3 -3
- data/lib/aspose_cells_cloud/models/query_data_source.rb +234 -0
- data/lib/aspose_cells_cloud/models/save_files_to_cloud_result.rb +1 -1
- data/lib/aspose_cells_cloud/models/smart_marker_task_parameter.rb +40 -4
- data/lib/aspose_cells_cloud/models/split_workbook_task_parameter.rb +25 -1
- data/lib/aspose_cells_cloud/models/task_run_result.rb +1 -1
- data/lib/aspose_cells_cloud/models/transformation.rb +222 -0
- data/lib/aspose_cells_cloud/models/unpivot_column.rb +234 -0
- data/lib/aspose_cells_cloud/requests/post_data_transformation_request.rb +103 -0
- data/lib/aspose_cells_cloud/version.rb +1 -1
- data/lib/aspose_cells_cloud.rb +12 -2
- data/spec/api/xml_controller_spec.rb +1 -1
- metadata +25 -10
@@ -0,0 +1,222 @@
|
|
1
|
+
=begin
|
2
|
+
--------------------------------------------------------------------------------------------------------------------
|
3
|
+
<copyright company="Aspose" file="PivotColumnrb.cs">
|
4
|
+
Copyright (c) 2024 Aspose.Cells Cloud
|
5
|
+
</copyright>
|
6
|
+
<summary>
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
of this software and associated documentation files (the "Software"), to deal
|
9
|
+
in the Software without restriction, including without limitation the rights
|
10
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
copies of the Software, and to permit persons to whom the Software is
|
12
|
+
furnished to do so, subject to the following conditions:
|
13
|
+
|
14
|
+
The above copyright notice and this permission notice shall be included in all
|
15
|
+
copies or substantial portions of the Software.
|
16
|
+
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
+
SOFTWARE.
|
24
|
+
</summary>
|
25
|
+
--------------------------------------------------------------------------------------------------------------------
|
26
|
+
=end
|
27
|
+
|
28
|
+
|
29
|
+
require 'date'
|
30
|
+
|
31
|
+
module AsposeCellsCloud
|
32
|
+
|
33
|
+
class PivotColumn
|
34
|
+
#
|
35
|
+
attr_accessor :pivot_column_name
|
36
|
+
#
|
37
|
+
attr_accessor :value_column_names
|
38
|
+
|
39
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
40
|
+
def self.attribute_map
|
41
|
+
{
|
42
|
+
:'pivot_column_name' => :'PivotColumnName',
|
43
|
+
:'value_column_names' => :'ValueColumnNames'
|
44
|
+
}
|
45
|
+
end
|
46
|
+
|
47
|
+
# Attribute type mapping.
|
48
|
+
def self.swagger_types
|
49
|
+
{
|
50
|
+
:'pivot_column_name' => :'String',
|
51
|
+
:'value_column_names' => :'Array<String>'
|
52
|
+
}
|
53
|
+
end
|
54
|
+
|
55
|
+
# Initializes the object
|
56
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
57
|
+
def initialize(attributes = {})
|
58
|
+
return unless attributes.is_a?(Hash)
|
59
|
+
|
60
|
+
# convert string to symbol for hash key
|
61
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
62
|
+
|
63
|
+
if attributes.has_key?(:'PivotColumnName')
|
64
|
+
self.pivot_column_name = attributes[:'PivotColumnName']
|
65
|
+
end
|
66
|
+
if attributes.has_key?(:'ValueColumnNames')
|
67
|
+
self.value_column_names = attributes[:'ValueColumnNames']
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
71
|
+
|
72
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
73
|
+
# @return Array for valid properies with the reasons
|
74
|
+
def list_invalid_properties
|
75
|
+
invalid_properties = Array.new
|
76
|
+
if @pivot_column_name.nil?
|
77
|
+
invalid_properties.push("invalid value for 'pivot_column_name', pivot_column_name cannot be nil.")
|
78
|
+
end
|
79
|
+
if @value_column_names.nil?
|
80
|
+
invalid_properties.push("invalid value for 'value_column_names', value_column_names cannot be nil.")
|
81
|
+
end
|
82
|
+
|
83
|
+
return invalid_properties
|
84
|
+
end
|
85
|
+
|
86
|
+
# Check to see if the all the properties in the model are valid
|
87
|
+
# @return true if the model is valid
|
88
|
+
def valid?
|
89
|
+
return false if @pivot_column_name.nil?
|
90
|
+
return false if @value_column_names.nil?
|
91
|
+
return true
|
92
|
+
end
|
93
|
+
|
94
|
+
# Checks equality by comparing each attribute.
|
95
|
+
# @param [Object] Object to be compared
|
96
|
+
def ==(o)
|
97
|
+
return true if self.equal?(o)
|
98
|
+
self.class == o.class &&
|
99
|
+
pivot_column_name == o.pivot_column_name &&
|
100
|
+
value_column_names == o.value_column_names
|
101
|
+
std_dev == o.std_dev
|
102
|
+
end
|
103
|
+
|
104
|
+
# @see the `==` method
|
105
|
+
# @param [Object] Object to be compared
|
106
|
+
def eql?(o)
|
107
|
+
self == o
|
108
|
+
end
|
109
|
+
|
110
|
+
# Calculates hash code according to all attributes.
|
111
|
+
# @return [Fixnum] Hash code
|
112
|
+
def hash
|
113
|
+
[ pivot_column_name , value_column_names ].hash
|
114
|
+
end
|
115
|
+
|
116
|
+
# Builds the object from hash
|
117
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
118
|
+
# @return [Object] Returns the model itself
|
119
|
+
def build_from_hash(attributes)
|
120
|
+
return nil unless attributes.is_a?(Hash)
|
121
|
+
self.class.swagger_types.each_pair do |key, type|
|
122
|
+
if type =~ /\AArray<(.*)>/i
|
123
|
+
# check to ensure the input is an array given that the the attribute
|
124
|
+
# is documented as an array but the input is not
|
125
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
126
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
127
|
+
end
|
128
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
129
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
130
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
131
|
+
end
|
132
|
+
|
133
|
+
self
|
134
|
+
end
|
135
|
+
|
136
|
+
# Deserializes the data based on type
|
137
|
+
# @param string type Data type
|
138
|
+
# @param string value Value to be deserialized
|
139
|
+
# @return [Object] Deserialized data
|
140
|
+
def _deserialize(type, value)
|
141
|
+
case type.to_sym
|
142
|
+
when :DateTime
|
143
|
+
DateTime.parse(value)
|
144
|
+
when :Date
|
145
|
+
Date.parse(value)
|
146
|
+
when :String
|
147
|
+
value.to_s
|
148
|
+
when :Integer
|
149
|
+
value.to_i
|
150
|
+
when :Float
|
151
|
+
value.to_f
|
152
|
+
when :BOOLEAN
|
153
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
154
|
+
true
|
155
|
+
else
|
156
|
+
false
|
157
|
+
end
|
158
|
+
when :Object
|
159
|
+
# generic object (usually a Hash), return directly
|
160
|
+
value
|
161
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
162
|
+
inner_type = Regexp.last_match[:inner_type]
|
163
|
+
value.map { |v| _deserialize(inner_type, v) }
|
164
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
165
|
+
k_type = Regexp.last_match[:k_type]
|
166
|
+
v_type = Regexp.last_match[:v_type]
|
167
|
+
{}.tap do |hash|
|
168
|
+
value.each do |k, v|
|
169
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
170
|
+
end
|
171
|
+
end
|
172
|
+
else # model
|
173
|
+
temp_model = AsposeCellsCloud.const_get(type).new
|
174
|
+
temp_model.build_from_hash(value)
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
# Returns the string representation of the object
|
179
|
+
# @return [String] String presentation of the object
|
180
|
+
def to_s
|
181
|
+
to_hash.to_s
|
182
|
+
end
|
183
|
+
|
184
|
+
# to_body is an alias to to_hash (backward compatibility)
|
185
|
+
# @return [Hash] Returns the object in the form of hash
|
186
|
+
def to_body
|
187
|
+
to_hash
|
188
|
+
end
|
189
|
+
|
190
|
+
# Returns the object in the form of hash
|
191
|
+
# @return [Hash] Returns the object in the form of hash
|
192
|
+
def to_hash
|
193
|
+
hash = {}
|
194
|
+
self.class.attribute_map.each_pair do |attr, param|
|
195
|
+
value = self.send(attr)
|
196
|
+
next if value.nil?
|
197
|
+
hash[param] = _to_hash(value)
|
198
|
+
end
|
199
|
+
hash
|
200
|
+
end
|
201
|
+
|
202
|
+
# Outputs non-array value in the form of hash
|
203
|
+
# For object, use to_hash. Otherwise, just return the value
|
204
|
+
# @param [Object] value Any valid value
|
205
|
+
# @return [Hash] Returns the value in the form of hash
|
206
|
+
def _to_hash(value)
|
207
|
+
if value.is_a?(Array)
|
208
|
+
value.compact.map{ |v| _to_hash(v) }
|
209
|
+
elsif value.is_a?(Hash)
|
210
|
+
{}.tap do |hash|
|
211
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
212
|
+
end
|
213
|
+
elsif value.respond_to? :to_hash
|
214
|
+
value.to_hash
|
215
|
+
else
|
216
|
+
value
|
217
|
+
end
|
218
|
+
end
|
219
|
+
|
220
|
+
end
|
221
|
+
|
222
|
+
end
|
@@ -31,11 +31,11 @@ require 'date'
|
|
31
31
|
module AsposeCellsCloud
|
32
32
|
|
33
33
|
class PptxSaveOptions
|
34
|
-
#
|
34
|
+
#Ignore hidden rows
|
35
35
|
attr_accessor :ignore_hidden_rows
|
36
|
-
#
|
36
|
+
#Adjust font size for row type
|
37
37
|
attr_accessor :adjust_font_size_for_row_type
|
38
|
-
#
|
38
|
+
#Gets and sets the display type when exporting to PowerPoint. The default exporting type is working as printing.
|
39
39
|
attr_accessor :export_view_type
|
40
40
|
#
|
41
41
|
attr_accessor :default_font
|
@@ -0,0 +1,234 @@
|
|
1
|
+
=begin
|
2
|
+
--------------------------------------------------------------------------------------------------------------------
|
3
|
+
<copyright company="Aspose" file="QueryDataSourcerb.cs">
|
4
|
+
Copyright (c) 2024 Aspose.Cells Cloud
|
5
|
+
</copyright>
|
6
|
+
<summary>
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
of this software and associated documentation files (the "Software"), to deal
|
9
|
+
in the Software without restriction, including without limitation the rights
|
10
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
copies of the Software, and to permit persons to whom the Software is
|
12
|
+
furnished to do so, subject to the following conditions:
|
13
|
+
|
14
|
+
The above copyright notice and this permission notice shall be included in all
|
15
|
+
copies or substantial portions of the Software.
|
16
|
+
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
+
SOFTWARE.
|
24
|
+
</summary>
|
25
|
+
--------------------------------------------------------------------------------------------------------------------
|
26
|
+
=end
|
27
|
+
|
28
|
+
|
29
|
+
require 'date'
|
30
|
+
|
31
|
+
module AsposeCellsCloud
|
32
|
+
|
33
|
+
class QueryDataSource
|
34
|
+
#
|
35
|
+
attr_accessor :data_source_data_type
|
36
|
+
#
|
37
|
+
attr_accessor :data_file
|
38
|
+
#
|
39
|
+
attr_accessor :data_source
|
40
|
+
|
41
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
42
|
+
def self.attribute_map
|
43
|
+
{
|
44
|
+
:'data_source_data_type' => :'DataSourceDataType',
|
45
|
+
:'data_file' => :'DataFile',
|
46
|
+
:'data_source' => :'DataSource'
|
47
|
+
}
|
48
|
+
end
|
49
|
+
|
50
|
+
# Attribute type mapping.
|
51
|
+
def self.swagger_types
|
52
|
+
{
|
53
|
+
:'data_source_data_type' => :'String',
|
54
|
+
:'data_file' => :'DataSource',
|
55
|
+
:'data_source' => :'String'
|
56
|
+
}
|
57
|
+
end
|
58
|
+
|
59
|
+
# Initializes the object
|
60
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
61
|
+
def initialize(attributes = {})
|
62
|
+
return unless attributes.is_a?(Hash)
|
63
|
+
|
64
|
+
# convert string to symbol for hash key
|
65
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
66
|
+
|
67
|
+
if attributes.has_key?(:'DataSourceDataType')
|
68
|
+
self.data_source_data_type = attributes[:'DataSourceDataType']
|
69
|
+
end
|
70
|
+
if attributes.has_key?(:'DataFile')
|
71
|
+
self.data_file = attributes[:'DataFile']
|
72
|
+
end
|
73
|
+
if attributes.has_key?(:'DataSource')
|
74
|
+
self.data_source = attributes[:'DataSource']
|
75
|
+
end
|
76
|
+
|
77
|
+
end
|
78
|
+
|
79
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
80
|
+
# @return Array for valid properies with the reasons
|
81
|
+
def list_invalid_properties
|
82
|
+
invalid_properties = Array.new
|
83
|
+
if @data_source_data_type.nil?
|
84
|
+
invalid_properties.push("invalid value for 'data_source_data_type', data_source_data_type cannot be nil.")
|
85
|
+
end
|
86
|
+
if @data_file.nil?
|
87
|
+
invalid_properties.push("invalid value for 'data_file', data_file cannot be nil.")
|
88
|
+
end
|
89
|
+
if @data_source.nil?
|
90
|
+
invalid_properties.push("invalid value for 'data_source', data_source cannot be nil.")
|
91
|
+
end
|
92
|
+
|
93
|
+
return invalid_properties
|
94
|
+
end
|
95
|
+
|
96
|
+
# Check to see if the all the properties in the model are valid
|
97
|
+
# @return true if the model is valid
|
98
|
+
def valid?
|
99
|
+
return false if @data_source_data_type.nil?
|
100
|
+
return false if @data_file.nil?
|
101
|
+
return false if @data_source.nil?
|
102
|
+
return true
|
103
|
+
end
|
104
|
+
|
105
|
+
# Checks equality by comparing each attribute.
|
106
|
+
# @param [Object] Object to be compared
|
107
|
+
def ==(o)
|
108
|
+
return true if self.equal?(o)
|
109
|
+
self.class == o.class &&
|
110
|
+
data_source_data_type == o.data_source_data_type &&
|
111
|
+
data_file == o.data_file &&
|
112
|
+
data_source == o.data_source
|
113
|
+
std_dev == o.std_dev
|
114
|
+
end
|
115
|
+
|
116
|
+
# @see the `==` method
|
117
|
+
# @param [Object] Object to be compared
|
118
|
+
def eql?(o)
|
119
|
+
self == o
|
120
|
+
end
|
121
|
+
|
122
|
+
# Calculates hash code according to all attributes.
|
123
|
+
# @return [Fixnum] Hash code
|
124
|
+
def hash
|
125
|
+
[ data_source_data_type , data_file , data_source ].hash
|
126
|
+
end
|
127
|
+
|
128
|
+
# Builds the object from hash
|
129
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
130
|
+
# @return [Object] Returns the model itself
|
131
|
+
def build_from_hash(attributes)
|
132
|
+
return nil unless attributes.is_a?(Hash)
|
133
|
+
self.class.swagger_types.each_pair do |key, type|
|
134
|
+
if type =~ /\AArray<(.*)>/i
|
135
|
+
# check to ensure the input is an array given that the the attribute
|
136
|
+
# is documented as an array but the input is not
|
137
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
138
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
139
|
+
end
|
140
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
141
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
142
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
143
|
+
end
|
144
|
+
|
145
|
+
self
|
146
|
+
end
|
147
|
+
|
148
|
+
# Deserializes the data based on type
|
149
|
+
# @param string type Data type
|
150
|
+
# @param string value Value to be deserialized
|
151
|
+
# @return [Object] Deserialized data
|
152
|
+
def _deserialize(type, value)
|
153
|
+
case type.to_sym
|
154
|
+
when :DateTime
|
155
|
+
DateTime.parse(value)
|
156
|
+
when :Date
|
157
|
+
Date.parse(value)
|
158
|
+
when :String
|
159
|
+
value.to_s
|
160
|
+
when :Integer
|
161
|
+
value.to_i
|
162
|
+
when :Float
|
163
|
+
value.to_f
|
164
|
+
when :BOOLEAN
|
165
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
166
|
+
true
|
167
|
+
else
|
168
|
+
false
|
169
|
+
end
|
170
|
+
when :Object
|
171
|
+
# generic object (usually a Hash), return directly
|
172
|
+
value
|
173
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
174
|
+
inner_type = Regexp.last_match[:inner_type]
|
175
|
+
value.map { |v| _deserialize(inner_type, v) }
|
176
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
177
|
+
k_type = Regexp.last_match[:k_type]
|
178
|
+
v_type = Regexp.last_match[:v_type]
|
179
|
+
{}.tap do |hash|
|
180
|
+
value.each do |k, v|
|
181
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
182
|
+
end
|
183
|
+
end
|
184
|
+
else # model
|
185
|
+
temp_model = AsposeCellsCloud.const_get(type).new
|
186
|
+
temp_model.build_from_hash(value)
|
187
|
+
end
|
188
|
+
end
|
189
|
+
|
190
|
+
# Returns the string representation of the object
|
191
|
+
# @return [String] String presentation of the object
|
192
|
+
def to_s
|
193
|
+
to_hash.to_s
|
194
|
+
end
|
195
|
+
|
196
|
+
# to_body is an alias to to_hash (backward compatibility)
|
197
|
+
# @return [Hash] Returns the object in the form of hash
|
198
|
+
def to_body
|
199
|
+
to_hash
|
200
|
+
end
|
201
|
+
|
202
|
+
# Returns the object in the form of hash
|
203
|
+
# @return [Hash] Returns the object in the form of hash
|
204
|
+
def to_hash
|
205
|
+
hash = {}
|
206
|
+
self.class.attribute_map.each_pair do |attr, param|
|
207
|
+
value = self.send(attr)
|
208
|
+
next if value.nil?
|
209
|
+
hash[param] = _to_hash(value)
|
210
|
+
end
|
211
|
+
hash
|
212
|
+
end
|
213
|
+
|
214
|
+
# Outputs non-array value in the form of hash
|
215
|
+
# For object, use to_hash. Otherwise, just return the value
|
216
|
+
# @param [Object] value Any valid value
|
217
|
+
# @return [Hash] Returns the value in the form of hash
|
218
|
+
def _to_hash(value)
|
219
|
+
if value.is_a?(Array)
|
220
|
+
value.compact.map{ |v| _to_hash(v) }
|
221
|
+
elsif value.is_a?(Hash)
|
222
|
+
{}.tap do |hash|
|
223
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
224
|
+
end
|
225
|
+
elsif value.respond_to? :to_hash
|
226
|
+
value.to_hash
|
227
|
+
else
|
228
|
+
value
|
229
|
+
end
|
230
|
+
end
|
231
|
+
|
232
|
+
end
|
233
|
+
|
234
|
+
end
|
@@ -37,13 +37,22 @@ module AsposeCellsCloud
|
|
37
37
|
attr_accessor :destination_workbook
|
38
38
|
#
|
39
39
|
attr_accessor :xml_file
|
40
|
+
#
|
41
|
+
attr_accessor :data_source
|
42
|
+
#
|
43
|
+
attr_accessor :target_data_source
|
44
|
+
#
|
45
|
+
attr_accessor :xml_file_data_source
|
40
46
|
|
41
47
|
# Attribute mapping from ruby-style variable name to JSON key.
|
42
48
|
def self.attribute_map
|
43
49
|
{
|
44
50
|
:'source_workbook' => :'SourceWorkbook',
|
45
51
|
:'destination_workbook' => :'DestinationWorkbook',
|
46
|
-
:'xml_file' => :'xmlFile'
|
52
|
+
:'xml_file' => :'xmlFile',
|
53
|
+
:'data_source' => :'DataSource',
|
54
|
+
:'target_data_source' => :'TargetDataSource',
|
55
|
+
:'xml_file_data_source' => :'XMLFileDataSource'
|
47
56
|
}
|
48
57
|
end
|
49
58
|
|
@@ -52,7 +61,10 @@ module AsposeCellsCloud
|
|
52
61
|
{
|
53
62
|
:'source_workbook' => :'FileSource',
|
54
63
|
:'destination_workbook' => :'FileSource',
|
55
|
-
:'xml_file' => :'FileSource'
|
64
|
+
:'xml_file' => :'FileSource',
|
65
|
+
:'data_source' => :'DataSource',
|
66
|
+
:'target_data_source' => :'DataSource',
|
67
|
+
:'xml_file_data_source' => :'DataSource'
|
56
68
|
}
|
57
69
|
end
|
58
70
|
|
@@ -73,6 +85,15 @@ module AsposeCellsCloud
|
|
73
85
|
if attributes.has_key?(:'xmlFile')
|
74
86
|
self.xml_file = attributes[:'xmlFile']
|
75
87
|
end
|
88
|
+
if attributes.has_key?(:'DataSource')
|
89
|
+
self.data_source = attributes[:'DataSource']
|
90
|
+
end
|
91
|
+
if attributes.has_key?(:'TargetDataSource')
|
92
|
+
self.target_data_source = attributes[:'TargetDataSource']
|
93
|
+
end
|
94
|
+
if attributes.has_key?(:'XMLFileDataSource')
|
95
|
+
self.xml_file_data_source = attributes[:'XMLFileDataSource']
|
96
|
+
end
|
76
97
|
|
77
98
|
end
|
78
99
|
|
@@ -89,6 +110,15 @@ module AsposeCellsCloud
|
|
89
110
|
if @xml_file.nil?
|
90
111
|
invalid_properties.push("invalid value for 'xml_file', xml_file cannot be nil.")
|
91
112
|
end
|
113
|
+
if @data_source.nil?
|
114
|
+
invalid_properties.push("invalid value for 'data_source', data_source cannot be nil.")
|
115
|
+
end
|
116
|
+
if @target_data_source.nil?
|
117
|
+
invalid_properties.push("invalid value for 'target_data_source', target_data_source cannot be nil.")
|
118
|
+
end
|
119
|
+
if @xml_file_data_source.nil?
|
120
|
+
invalid_properties.push("invalid value for 'xml_file_data_source', xml_file_data_source cannot be nil.")
|
121
|
+
end
|
92
122
|
|
93
123
|
return invalid_properties
|
94
124
|
end
|
@@ -99,6 +129,9 @@ module AsposeCellsCloud
|
|
99
129
|
return false if @source_workbook.nil?
|
100
130
|
return false if @destination_workbook.nil?
|
101
131
|
return false if @xml_file.nil?
|
132
|
+
return false if @data_source.nil?
|
133
|
+
return false if @target_data_source.nil?
|
134
|
+
return false if @xml_file_data_source.nil?
|
102
135
|
return true
|
103
136
|
end
|
104
137
|
|
@@ -109,7 +142,10 @@ module AsposeCellsCloud
|
|
109
142
|
self.class == o.class &&
|
110
143
|
source_workbook == o.source_workbook &&
|
111
144
|
destination_workbook == o.destination_workbook &&
|
112
|
-
xml_file == o.xml_file
|
145
|
+
xml_file == o.xml_file &&
|
146
|
+
data_source == o.data_source &&
|
147
|
+
target_data_source == o.target_data_source &&
|
148
|
+
xml_file_data_source == o.xml_file_data_source
|
113
149
|
std_dev == o.std_dev
|
114
150
|
end
|
115
151
|
|
@@ -122,7 +158,7 @@ module AsposeCellsCloud
|
|
122
158
|
# Calculates hash code according to all attributes.
|
123
159
|
# @return [Fixnum] Hash code
|
124
160
|
def hash
|
125
|
-
[ source_workbook , destination_workbook , xml_file ].hash
|
161
|
+
[ source_workbook , destination_workbook , xml_file , data_source , target_data_source , xml_file_data_source ].hash
|
126
162
|
end
|
127
163
|
|
128
164
|
# Builds the object from hash
|
@@ -36,6 +36,10 @@ module AsposeCellsCloud
|
|
36
36
|
#
|
37
37
|
attr_accessor :destination_file_position
|
38
38
|
#
|
39
|
+
attr_accessor :data_source
|
40
|
+
#
|
41
|
+
attr_accessor :target_data_source
|
42
|
+
#
|
39
43
|
attr_accessor :destination_file_format
|
40
44
|
#SheetName /NewGuid
|
41
45
|
attr_accessor :split_name_rule
|
@@ -49,6 +53,8 @@ module AsposeCellsCloud
|
|
49
53
|
{
|
50
54
|
:'workbook' => :'Workbook',
|
51
55
|
:'destination_file_position' => :'DestinationFilePosition',
|
56
|
+
:'data_source' => :'DataSource',
|
57
|
+
:'target_data_source' => :'TargetDataSource',
|
52
58
|
:'destination_file_format' => :'DestinationFileFormat',
|
53
59
|
:'split_name_rule' => :'SplitNameRule',
|
54
60
|
:'vertical_resolution' => :'VerticalResolution',
|
@@ -61,6 +67,8 @@ module AsposeCellsCloud
|
|
61
67
|
{
|
62
68
|
:'workbook' => :'FileSource',
|
63
69
|
:'destination_file_position' => :'FileSource',
|
70
|
+
:'data_source' => :'DataSource',
|
71
|
+
:'target_data_source' => :'DataSource',
|
64
72
|
:'destination_file_format' => :'String',
|
65
73
|
:'split_name_rule' => :'String',
|
66
74
|
:'vertical_resolution' => :'Integer',
|
@@ -82,6 +90,12 @@ module AsposeCellsCloud
|
|
82
90
|
if attributes.has_key?(:'DestinationFilePosition')
|
83
91
|
self.destination_file_position = attributes[:'DestinationFilePosition']
|
84
92
|
end
|
93
|
+
if attributes.has_key?(:'DataSource')
|
94
|
+
self.data_source = attributes[:'DataSource']
|
95
|
+
end
|
96
|
+
if attributes.has_key?(:'TargetDataSource')
|
97
|
+
self.target_data_source = attributes[:'TargetDataSource']
|
98
|
+
end
|
85
99
|
if attributes.has_key?(:'DestinationFileFormat')
|
86
100
|
self.destination_file_format = attributes[:'DestinationFileFormat']
|
87
101
|
end
|
@@ -107,6 +121,12 @@ module AsposeCellsCloud
|
|
107
121
|
if @destination_file_position.nil?
|
108
122
|
invalid_properties.push("invalid value for 'destination_file_position', destination_file_position cannot be nil.")
|
109
123
|
end
|
124
|
+
if @data_source.nil?
|
125
|
+
invalid_properties.push("invalid value for 'data_source', data_source cannot be nil.")
|
126
|
+
end
|
127
|
+
if @target_data_source.nil?
|
128
|
+
invalid_properties.push("invalid value for 'target_data_source', target_data_source cannot be nil.")
|
129
|
+
end
|
110
130
|
if @destination_file_format.nil?
|
111
131
|
invalid_properties.push("invalid value for 'destination_file_format', destination_file_format cannot be nil.")
|
112
132
|
end
|
@@ -128,6 +148,8 @@ module AsposeCellsCloud
|
|
128
148
|
def valid?
|
129
149
|
return false if @workbook.nil?
|
130
150
|
return false if @destination_file_position.nil?
|
151
|
+
return false if @data_source.nil?
|
152
|
+
return false if @target_data_source.nil?
|
131
153
|
return false if @destination_file_format.nil?
|
132
154
|
return false if @split_name_rule.nil?
|
133
155
|
return false if @vertical_resolution.nil?
|
@@ -142,6 +164,8 @@ module AsposeCellsCloud
|
|
142
164
|
self.class == o.class &&
|
143
165
|
workbook == o.workbook &&
|
144
166
|
destination_file_position == o.destination_file_position &&
|
167
|
+
data_source == o.data_source &&
|
168
|
+
target_data_source == o.target_data_source &&
|
145
169
|
destination_file_format == o.destination_file_format &&
|
146
170
|
split_name_rule == o.split_name_rule &&
|
147
171
|
vertical_resolution == o.vertical_resolution &&
|
@@ -158,7 +182,7 @@ module AsposeCellsCloud
|
|
158
182
|
# Calculates hash code according to all attributes.
|
159
183
|
# @return [Fixnum] Hash code
|
160
184
|
def hash
|
161
|
-
[ workbook , destination_file_position , destination_file_format , split_name_rule , vertical_resolution , horizontal_resolution ].hash
|
185
|
+
[ workbook , destination_file_position , data_source , target_data_source , destination_file_format , split_name_rule , vertical_resolution , horizontal_resolution ].hash
|
162
186
|
end
|
163
187
|
|
164
188
|
# Builds the object from hash
|