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.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -6
  3. data/lib/aspose_cells_cloud/api/cells_api.rb +8 -0
  4. data/lib/aspose_cells_cloud/models/cells_object_operate_task_parameter.rb +13 -1
  5. data/lib/aspose_cells_cloud/models/convert_task_parameter.rb +13 -1
  6. data/lib/aspose_cells_cloud/models/convert_worksheet_task_parameter.rb +25 -1
  7. data/lib/aspose_cells_cloud/models/data_item.rb +222 -0
  8. data/lib/aspose_cells_cloud/models/data_source.rb +222 -0
  9. data/lib/aspose_cells_cloud/models/data_transformation_request.rb +258 -0
  10. data/lib/aspose_cells_cloud/models/import2_dimension_double_array_option.rb +13 -1
  11. data/lib/aspose_cells_cloud/models/import2_dimension_int_array_option.rb +13 -1
  12. data/lib/aspose_cells_cloud/models/import2_dimension_string_array_option.rb +13 -1
  13. data/lib/aspose_cells_cloud/models/import_batch_data_option.rb +13 -1
  14. data/lib/aspose_cells_cloud/models/import_csv_data_option.rb +13 -1
  15. data/lib/aspose_cells_cloud/models/import_data_task_parameter.rb +25 -1
  16. data/lib/aspose_cells_cloud/models/import_double_array_option.rb +13 -1
  17. data/lib/aspose_cells_cloud/models/import_int_array_option.rb +13 -1
  18. data/lib/aspose_cells_cloud/models/import_json_request.rb +1 -1
  19. data/lib/aspose_cells_cloud/models/import_option.rb +13 -1
  20. data/lib/aspose_cells_cloud/models/import_picture_option.rb +13 -1
  21. data/lib/aspose_cells_cloud/models/import_string_array_option.rb +13 -1
  22. data/lib/aspose_cells_cloud/models/import_xml_request.rb +1 -1
  23. data/lib/aspose_cells_cloud/models/load_data.rb +246 -0
  24. data/lib/aspose_cells_cloud/models/load_to.rb +234 -0
  25. data/lib/aspose_cells_cloud/models/operate_object_position.rb +13 -1
  26. data/lib/aspose_cells_cloud/models/pivot_column.rb +222 -0
  27. data/lib/aspose_cells_cloud/models/pptx_save_options.rb +3 -3
  28. data/lib/aspose_cells_cloud/models/query_data_source.rb +234 -0
  29. data/lib/aspose_cells_cloud/models/save_files_to_cloud_result.rb +1 -1
  30. data/lib/aspose_cells_cloud/models/smart_marker_task_parameter.rb +40 -4
  31. data/lib/aspose_cells_cloud/models/split_workbook_task_parameter.rb +25 -1
  32. data/lib/aspose_cells_cloud/models/task_run_result.rb +1 -1
  33. data/lib/aspose_cells_cloud/models/transformation.rb +222 -0
  34. data/lib/aspose_cells_cloud/models/unpivot_column.rb +234 -0
  35. data/lib/aspose_cells_cloud/requests/post_data_transformation_request.rb +103 -0
  36. data/lib/aspose_cells_cloud/version.rb +1 -1
  37. data/lib/aspose_cells_cloud.rb +12 -2
  38. data/spec/api/xml_controller_spec.rb +1 -1
  39. metadata +25 -10
@@ -0,0 +1,222 @@
1
+ =begin
2
+ --------------------------------------------------------------------------------------------------------------------
3
+ <copyright company="Aspose" file="DataSourcerb.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 DataSource
34
+ #
35
+ attr_accessor :data_source_type
36
+ #
37
+ attr_accessor :data_path
38
+
39
+ # Attribute mapping from ruby-style variable name to JSON key.
40
+ def self.attribute_map
41
+ {
42
+ :'data_source_type' => :'DataSourceType',
43
+ :'data_path' => :'DataPath'
44
+ }
45
+ end
46
+
47
+ # Attribute type mapping.
48
+ def self.swagger_types
49
+ {
50
+ :'data_source_type' => :'String',
51
+ :'data_path' => :'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?(:'DataSourceType')
64
+ self.data_source_type = attributes[:'DataSourceType']
65
+ end
66
+ if attributes.has_key?(:'DataPath')
67
+ self.data_path = attributes[:'DataPath']
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 @data_source_type.nil?
77
+ invalid_properties.push("invalid value for 'data_source_type', data_source_type cannot be nil.")
78
+ end
79
+ if @data_path.nil?
80
+ invalid_properties.push("invalid value for 'data_path', data_path 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 @data_source_type.nil?
90
+ return false if @data_path.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
+ data_source_type == o.data_source_type &&
100
+ data_path == o.data_path
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
+ [ data_source_type , data_path ].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
@@ -0,0 +1,258 @@
1
+ =begin
2
+ --------------------------------------------------------------------------------------------------------------------
3
+ <copyright company="Aspose" file="DataTransformationRequestrb.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 DataTransformationRequest
34
+ #
35
+ attr_accessor :file_info
36
+ #
37
+ attr_accessor :transformation
38
+ #
39
+ attr_accessor :load_data
40
+ #
41
+ attr_accessor :region
42
+ #
43
+ attr_accessor :out_format
44
+
45
+ # Attribute mapping from ruby-style variable name to JSON key.
46
+ def self.attribute_map
47
+ {
48
+ :'file_info' => :'FileInfo',
49
+ :'transformation' => :'Transformation',
50
+ :'load_data' => :'LoadData',
51
+ :'region' => :'Region',
52
+ :'out_format' => :'OutFormat'
53
+ }
54
+ end
55
+
56
+ # Attribute type mapping.
57
+ def self.swagger_types
58
+ {
59
+ :'file_info' => :'FileInfo',
60
+ :'transformation' => :'Transformation',
61
+ :'load_data' => :'LoadData',
62
+ :'region' => :'String',
63
+ :'out_format' => :'String'
64
+ }
65
+ end
66
+
67
+ # Initializes the object
68
+ # @param [Hash] attributes Model attributes in the form of hash
69
+ def initialize(attributes = {})
70
+ return unless attributes.is_a?(Hash)
71
+
72
+ # convert string to symbol for hash key
73
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
74
+
75
+ if attributes.has_key?(:'FileInfo')
76
+ self.file_info = attributes[:'FileInfo']
77
+ end
78
+ if attributes.has_key?(:'Transformation')
79
+ self.transformation = attributes[:'Transformation']
80
+ end
81
+ if attributes.has_key?(:'LoadData')
82
+ self.load_data = attributes[:'LoadData']
83
+ end
84
+ if attributes.has_key?(:'Region')
85
+ self.region = attributes[:'Region']
86
+ end
87
+ if attributes.has_key?(:'OutFormat')
88
+ self.out_format = attributes[:'OutFormat']
89
+ end
90
+
91
+ end
92
+
93
+ # Show invalid properties with the reasons. Usually used together with valid?
94
+ # @return Array for valid properies with the reasons
95
+ def list_invalid_properties
96
+ invalid_properties = Array.new
97
+ if @file_info.nil?
98
+ invalid_properties.push("invalid value for 'file_info', file_info cannot be nil.")
99
+ end
100
+ if @transformation.nil?
101
+ invalid_properties.push("invalid value for 'transformation', transformation cannot be nil.")
102
+ end
103
+ if @load_data.nil?
104
+ invalid_properties.push("invalid value for 'load_data', load_data cannot be nil.")
105
+ end
106
+ if @region.nil?
107
+ invalid_properties.push("invalid value for 'region', region cannot be nil.")
108
+ end
109
+ if @out_format.nil?
110
+ invalid_properties.push("invalid value for 'out_format', out_format cannot be nil.")
111
+ end
112
+
113
+ return invalid_properties
114
+ end
115
+
116
+ # Check to see if the all the properties in the model are valid
117
+ # @return true if the model is valid
118
+ def valid?
119
+ return false if @file_info.nil?
120
+ return false if @transformation.nil?
121
+ return false if @load_data.nil?
122
+ return false if @region.nil?
123
+ return false if @out_format.nil?
124
+ return true
125
+ end
126
+
127
+ # Checks equality by comparing each attribute.
128
+ # @param [Object] Object to be compared
129
+ def ==(o)
130
+ return true if self.equal?(o)
131
+ self.class == o.class &&
132
+ file_info == o.file_info &&
133
+ transformation == o.transformation &&
134
+ load_data == o.load_data &&
135
+ region == o.region &&
136
+ out_format == o.out_format
137
+ std_dev == o.std_dev
138
+ end
139
+
140
+ # @see the `==` method
141
+ # @param [Object] Object to be compared
142
+ def eql?(o)
143
+ self == o
144
+ end
145
+
146
+ # Calculates hash code according to all attributes.
147
+ # @return [Fixnum] Hash code
148
+ def hash
149
+ [ file_info , transformation , load_data , region , out_format ].hash
150
+ end
151
+
152
+ # Builds the object from hash
153
+ # @param [Hash] attributes Model attributes in the form of hash
154
+ # @return [Object] Returns the model itself
155
+ def build_from_hash(attributes)
156
+ return nil unless attributes.is_a?(Hash)
157
+ self.class.swagger_types.each_pair do |key, type|
158
+ if type =~ /\AArray<(.*)>/i
159
+ # check to ensure the input is an array given that the the attribute
160
+ # is documented as an array but the input is not
161
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
162
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
163
+ end
164
+ elsif !attributes[self.class.attribute_map[key]].nil?
165
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
166
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
167
+ end
168
+
169
+ self
170
+ end
171
+
172
+ # Deserializes the data based on type
173
+ # @param string type Data type
174
+ # @param string value Value to be deserialized
175
+ # @return [Object] Deserialized data
176
+ def _deserialize(type, value)
177
+ case type.to_sym
178
+ when :DateTime
179
+ DateTime.parse(value)
180
+ when :Date
181
+ Date.parse(value)
182
+ when :String
183
+ value.to_s
184
+ when :Integer
185
+ value.to_i
186
+ when :Float
187
+ value.to_f
188
+ when :BOOLEAN
189
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
190
+ true
191
+ else
192
+ false
193
+ end
194
+ when :Object
195
+ # generic object (usually a Hash), return directly
196
+ value
197
+ when /\AArray<(?<inner_type>.+)>\z/
198
+ inner_type = Regexp.last_match[:inner_type]
199
+ value.map { |v| _deserialize(inner_type, v) }
200
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
201
+ k_type = Regexp.last_match[:k_type]
202
+ v_type = Regexp.last_match[:v_type]
203
+ {}.tap do |hash|
204
+ value.each do |k, v|
205
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
206
+ end
207
+ end
208
+ else # model
209
+ temp_model = AsposeCellsCloud.const_get(type).new
210
+ temp_model.build_from_hash(value)
211
+ end
212
+ end
213
+
214
+ # Returns the string representation of the object
215
+ # @return [String] String presentation of the object
216
+ def to_s
217
+ to_hash.to_s
218
+ end
219
+
220
+ # to_body is an alias to to_hash (backward compatibility)
221
+ # @return [Hash] Returns the object in the form of hash
222
+ def to_body
223
+ to_hash
224
+ end
225
+
226
+ # Returns the object in the form of hash
227
+ # @return [Hash] Returns the object in the form of hash
228
+ def to_hash
229
+ hash = {}
230
+ self.class.attribute_map.each_pair do |attr, param|
231
+ value = self.send(attr)
232
+ next if value.nil?
233
+ hash[param] = _to_hash(value)
234
+ end
235
+ hash
236
+ end
237
+
238
+ # Outputs non-array value in the form of hash
239
+ # For object, use to_hash. Otherwise, just return the value
240
+ # @param [Object] value Any valid value
241
+ # @return [Hash] Returns the value in the form of hash
242
+ def _to_hash(value)
243
+ if value.is_a?(Array)
244
+ value.compact.map{ |v| _to_hash(v) }
245
+ elsif value.is_a?(Hash)
246
+ {}.tap do |hash|
247
+ value.each { |k, v| hash[k] = _to_hash(v) }
248
+ end
249
+ elsif value.respond_to? :to_hash
250
+ value.to_hash
251
+ else
252
+ value
253
+ end
254
+ end
255
+
256
+ end
257
+
258
+ end
@@ -44,6 +44,8 @@ module AsposeCellsCloud
44
44
  #
45
45
  attr_accessor :import_data_type
46
46
  #
47
+ attr_accessor :data_source
48
+ #
47
49
  attr_accessor :source
48
50
 
49
51
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -55,6 +57,7 @@ module AsposeCellsCloud
55
57
  :'destination_worksheet' => :'DestinationWorksheet',
56
58
  :'is_insert' => :'IsInsert',
57
59
  :'import_data_type' => :'ImportDataType',
60
+ :'data_source' => :'DataSource',
58
61
  :'source' => :'Source'
59
62
  }
60
63
  end
@@ -68,6 +71,7 @@ module AsposeCellsCloud
68
71
  :'destination_worksheet' => :'String',
69
72
  :'is_insert' => :'BOOLEAN',
70
73
  :'import_data_type' => :'String',
74
+ :'data_source' => :'DataSource',
71
75
  :'source' => :'FileSource'
72
76
  }
73
77
  end
@@ -98,6 +102,9 @@ module AsposeCellsCloud
98
102
  if attributes.has_key?(:'ImportDataType')
99
103
  self.import_data_type = attributes[:'ImportDataType']
100
104
  end
105
+ if attributes.has_key?(:'DataSource')
106
+ self.data_source = attributes[:'DataSource']
107
+ end
101
108
  if attributes.has_key?(:'Source')
102
109
  self.source = attributes[:'Source']
103
110
  end
@@ -126,6 +133,9 @@ module AsposeCellsCloud
126
133
  if @import_data_type.nil?
127
134
  invalid_properties.push("invalid value for 'import_data_type', import_data_type cannot be nil.")
128
135
  end
136
+ if @data_source.nil?
137
+ invalid_properties.push("invalid value for 'data_source', data_source cannot be nil.")
138
+ end
129
139
  if @source.nil?
130
140
  invalid_properties.push("invalid value for 'source', source cannot be nil.")
131
141
  end
@@ -142,6 +152,7 @@ module AsposeCellsCloud
142
152
  return false if @destination_worksheet.nil?
143
153
  return false if @is_insert.nil?
144
154
  return false if @import_data_type.nil?
155
+ return false if @data_source.nil?
145
156
  return false if @source.nil?
146
157
  return true
147
158
  end
@@ -157,6 +168,7 @@ module AsposeCellsCloud
157
168
  destination_worksheet == o.destination_worksheet &&
158
169
  is_insert == o.is_insert &&
159
170
  import_data_type == o.import_data_type &&
171
+ data_source == o.data_source &&
160
172
  source == o.source
161
173
  std_dev == o.std_dev
162
174
  end
@@ -170,7 +182,7 @@ module AsposeCellsCloud
170
182
  # Calculates hash code according to all attributes.
171
183
  # @return [Fixnum] Hash code
172
184
  def hash
173
- [ first_row , first_column , data , destination_worksheet , is_insert , import_data_type , source ].hash
185
+ [ first_row , first_column , data , destination_worksheet , is_insert , import_data_type , data_source , source ].hash
174
186
  end
175
187
 
176
188
  # Builds the object from hash
@@ -44,6 +44,8 @@ module AsposeCellsCloud
44
44
  #
45
45
  attr_accessor :import_data_type
46
46
  #
47
+ attr_accessor :data_source
48
+ #
47
49
  attr_accessor :source
48
50
 
49
51
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -55,6 +57,7 @@ module AsposeCellsCloud
55
57
  :'destination_worksheet' => :'DestinationWorksheet',
56
58
  :'is_insert' => :'IsInsert',
57
59
  :'import_data_type' => :'ImportDataType',
60
+ :'data_source' => :'DataSource',
58
61
  :'source' => :'Source'
59
62
  }
60
63
  end
@@ -68,6 +71,7 @@ module AsposeCellsCloud
68
71
  :'destination_worksheet' => :'String',
69
72
  :'is_insert' => :'BOOLEAN',
70
73
  :'import_data_type' => :'String',
74
+ :'data_source' => :'DataSource',
71
75
  :'source' => :'FileSource'
72
76
  }
73
77
  end
@@ -98,6 +102,9 @@ module AsposeCellsCloud
98
102
  if attributes.has_key?(:'ImportDataType')
99
103
  self.import_data_type = attributes[:'ImportDataType']
100
104
  end
105
+ if attributes.has_key?(:'DataSource')
106
+ self.data_source = attributes[:'DataSource']
107
+ end
101
108
  if attributes.has_key?(:'Source')
102
109
  self.source = attributes[:'Source']
103
110
  end
@@ -126,6 +133,9 @@ module AsposeCellsCloud
126
133
  if @import_data_type.nil?
127
134
  invalid_properties.push("invalid value for 'import_data_type', import_data_type cannot be nil.")
128
135
  end
136
+ if @data_source.nil?
137
+ invalid_properties.push("invalid value for 'data_source', data_source cannot be nil.")
138
+ end
129
139
  if @source.nil?
130
140
  invalid_properties.push("invalid value for 'source', source cannot be nil.")
131
141
  end
@@ -142,6 +152,7 @@ module AsposeCellsCloud
142
152
  return false if @destination_worksheet.nil?
143
153
  return false if @is_insert.nil?
144
154
  return false if @import_data_type.nil?
155
+ return false if @data_source.nil?
145
156
  return false if @source.nil?
146
157
  return true
147
158
  end
@@ -157,6 +168,7 @@ module AsposeCellsCloud
157
168
  destination_worksheet == o.destination_worksheet &&
158
169
  is_insert == o.is_insert &&
159
170
  import_data_type == o.import_data_type &&
171
+ data_source == o.data_source &&
160
172
  source == o.source
161
173
  std_dev == o.std_dev
162
174
  end
@@ -170,7 +182,7 @@ module AsposeCellsCloud
170
182
  # Calculates hash code according to all attributes.
171
183
  # @return [Fixnum] Hash code
172
184
  def hash
173
- [ first_row , first_column , data , destination_worksheet , is_insert , import_data_type , source ].hash
185
+ [ first_row , first_column , data , destination_worksheet , is_insert , import_data_type , data_source , source ].hash
174
186
  end
175
187
 
176
188
  # Builds the object from hash
@@ -44,6 +44,8 @@ module AsposeCellsCloud
44
44
  #
45
45
  attr_accessor :import_data_type
46
46
  #
47
+ attr_accessor :data_source
48
+ #
47
49
  attr_accessor :source
48
50
 
49
51
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -55,6 +57,7 @@ module AsposeCellsCloud
55
57
  :'destination_worksheet' => :'DestinationWorksheet',
56
58
  :'is_insert' => :'IsInsert',
57
59
  :'import_data_type' => :'ImportDataType',
60
+ :'data_source' => :'DataSource',
58
61
  :'source' => :'Source'
59
62
  }
60
63
  end
@@ -68,6 +71,7 @@ module AsposeCellsCloud
68
71
  :'destination_worksheet' => :'String',
69
72
  :'is_insert' => :'BOOLEAN',
70
73
  :'import_data_type' => :'String',
74
+ :'data_source' => :'DataSource',
71
75
  :'source' => :'FileSource'
72
76
  }
73
77
  end
@@ -98,6 +102,9 @@ module AsposeCellsCloud
98
102
  if attributes.has_key?(:'ImportDataType')
99
103
  self.import_data_type = attributes[:'ImportDataType']
100
104
  end
105
+ if attributes.has_key?(:'DataSource')
106
+ self.data_source = attributes[:'DataSource']
107
+ end
101
108
  if attributes.has_key?(:'Source')
102
109
  self.source = attributes[:'Source']
103
110
  end
@@ -126,6 +133,9 @@ module AsposeCellsCloud
126
133
  if @import_data_type.nil?
127
134
  invalid_properties.push("invalid value for 'import_data_type', import_data_type cannot be nil.")
128
135
  end
136
+ if @data_source.nil?
137
+ invalid_properties.push("invalid value for 'data_source', data_source cannot be nil.")
138
+ end
129
139
  if @source.nil?
130
140
  invalid_properties.push("invalid value for 'source', source cannot be nil.")
131
141
  end
@@ -142,6 +152,7 @@ module AsposeCellsCloud
142
152
  return false if @destination_worksheet.nil?
143
153
  return false if @is_insert.nil?
144
154
  return false if @import_data_type.nil?
155
+ return false if @data_source.nil?
145
156
  return false if @source.nil?
146
157
  return true
147
158
  end
@@ -157,6 +168,7 @@ module AsposeCellsCloud
157
168
  destination_worksheet == o.destination_worksheet &&
158
169
  is_insert == o.is_insert &&
159
170
  import_data_type == o.import_data_type &&
171
+ data_source == o.data_source &&
160
172
  source == o.source
161
173
  std_dev == o.std_dev
162
174
  end
@@ -170,7 +182,7 @@ module AsposeCellsCloud
170
182
  # Calculates hash code according to all attributes.
171
183
  # @return [Fixnum] Hash code
172
184
  def hash
173
- [ first_row , first_column , data , destination_worksheet , is_insert , import_data_type , source ].hash
185
+ [ first_row , first_column , data , destination_worksheet , is_insert , import_data_type , data_source , source ].hash
174
186
  end
175
187
 
176
188
  # Builds the object from hash