ultracart_api 3.10.124 → 3.10.126

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +39 -4
  3. data/docs/DatawarehouseApi.md +461 -0
  4. data/docs/Report.md +17 -0
  5. data/docs/ReportAuth.md +11 -0
  6. data/docs/ReportAuthResponse.md +12 -0
  7. data/docs/ReportDataSet.md +22 -0
  8. data/docs/ReportDataSetColumn.md +8 -0
  9. data/docs/ReportDataSetPage.md +17 -0
  10. data/docs/ReportDataSetPageResponse.md +12 -0
  11. data/docs/ReportDataSetQuery.md +19 -0
  12. data/docs/ReportDataSetResponse.md +12 -0
  13. data/docs/ReportDataSetRow.md +8 -0
  14. data/docs/ReportDataSetSchema.md +9 -0
  15. data/docs/ReportDataSetSummary.md +14 -0
  16. data/docs/ReportDataSource.md +13 -0
  17. data/docs/ReportDataSourceSchema.md +10 -0
  18. data/docs/ReportExecuteQueriesRequest.md +14 -0
  19. data/docs/ReportFilter.md +13 -0
  20. data/docs/ReportFilterConnection.md +9 -0
  21. data/docs/ReportPage.md +11 -0
  22. data/docs/ReportPageVisualization.md +16 -0
  23. data/docs/ReportPageVisualizationDimension.md +14 -0
  24. data/docs/ReportPageVisualizationMetric.md +11 -0
  25. data/docs/ReportResponse.md +12 -0
  26. data/docs/ReportWebsocketEvent.md +9 -0
  27. data/docs/ReportsResponse.md +12 -0
  28. data/lib/ultracart_api/api/datawarehouse_api.rb +529 -0
  29. data/lib/ultracart_api/models/report.rb +307 -0
  30. data/lib/ultracart_api/models/report_auth.rb +212 -0
  31. data/lib/ultracart_api/models/report_auth_response.rb +221 -0
  32. data/lib/ultracart_api/models/report_data_set.rb +362 -0
  33. data/lib/ultracart_api/models/report_data_set_column.rb +184 -0
  34. data/lib/ultracart_api/models/report_data_set_page.rb +273 -0
  35. data/lib/ultracart_api/models/report_data_set_page_response.rb +221 -0
  36. data/lib/ultracart_api/models/report_data_set_query.rb +330 -0
  37. data/lib/ultracart_api/models/report_data_set_response.rb +221 -0
  38. data/lib/ultracart_api/models/report_data_set_row.rb +186 -0
  39. data/lib/ultracart_api/models/report_data_set_schema.rb +228 -0
  40. data/lib/ultracart_api/models/report_data_set_summary.rb +281 -0
  41. data/lib/ultracart_api/models/report_data_source.rb +232 -0
  42. data/lib/ultracart_api/models/report_data_source_schema.rb +238 -0
  43. data/lib/ultracart_api/models/report_execute_queries_request.rb +278 -0
  44. data/lib/ultracart_api/models/report_filter.rb +272 -0
  45. data/lib/ultracart_api/models/report_filter_connection.rb +193 -0
  46. data/lib/ultracart_api/models/report_page.rb +216 -0
  47. data/lib/ultracart_api/models/report_page_visualization.rb +299 -0
  48. data/lib/ultracart_api/models/report_page_visualization_dimension.rb +244 -0
  49. data/lib/ultracart_api/models/report_page_visualization_metric.rb +248 -0
  50. data/lib/ultracart_api/models/report_response.rb +221 -0
  51. data/lib/ultracart_api/models/report_websocket_event.rb +228 -0
  52. data/lib/ultracart_api/models/reports_response.rb +223 -0
  53. data/lib/ultracart_api/version.rb +1 -1
  54. data/lib/ultracart_api.rb +25 -0
  55. metadata +51 -1
@@ -0,0 +1,228 @@
1
+ =begin
2
+ #UltraCart Rest API V2
3
+
4
+ #UltraCart REST API Version 2
5
+
6
+ OpenAPI spec version: 2.0.0
7
+ Contact: support@ultracart.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.15-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module UltracartClient
16
+ class ReportWebsocketEvent
17
+ # Event type
18
+ attr_accessor :event_type
19
+
20
+ attr_accessor :query_completion
21
+
22
+ class EnumAttributeValidator
23
+ attr_reader :datatype
24
+ attr_reader :allowable_values
25
+
26
+ def initialize(datatype, allowable_values)
27
+ @allowable_values = allowable_values.map do |value|
28
+ case datatype.to_s
29
+ when /Integer/i
30
+ value.to_i
31
+ when /Float/i
32
+ value.to_f
33
+ else
34
+ value
35
+ end
36
+ end
37
+ end
38
+
39
+ def valid?(value)
40
+ !value || allowable_values.include?(value)
41
+ end
42
+ end
43
+
44
+ # Attribute mapping from ruby-style variable name to JSON key.
45
+ def self.attribute_map
46
+ {
47
+ :'event_type' => :'event_type',
48
+ :'query_completion' => :'query_completion'
49
+ }
50
+ end
51
+
52
+ # Attribute type mapping.
53
+ def self.swagger_types
54
+ {
55
+ :'event_type' => :'String',
56
+ :'query_completion' => :'ReportDataSetSummary'
57
+ }
58
+ end
59
+
60
+ # Initializes the object
61
+ # @param [Hash] attributes Model attributes in the form of hash
62
+ def initialize(attributes = {})
63
+ return unless attributes.is_a?(Hash)
64
+
65
+ # convert string to symbol for hash key
66
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
67
+
68
+ if attributes.has_key?(:'event_type')
69
+ self.event_type = attributes[:'event_type']
70
+ end
71
+
72
+ if attributes.has_key?(:'query_completion')
73
+ self.query_completion = attributes[:'query_completion']
74
+ end
75
+ end
76
+
77
+ # Show invalid properties with the reasons. Usually used together with valid?
78
+ # @return Array for valid properties with the reasons
79
+ def list_invalid_properties
80
+ invalid_properties = Array.new
81
+ invalid_properties
82
+ end
83
+
84
+ # Check to see if the all the properties in the model are valid
85
+ # @return true if the model is valid
86
+ def valid?
87
+ event_type_validator = EnumAttributeValidator.new('String', ['ping', 'query completion'])
88
+ return false unless event_type_validator.valid?(@event_type)
89
+ true
90
+ end
91
+
92
+ # Custom attribute writer method checking allowed values (enum).
93
+ # @param [Object] event_type Object to be assigned
94
+ def event_type=(event_type)
95
+ validator = EnumAttributeValidator.new('String', ['ping', 'query completion'])
96
+ unless validator.valid?(event_type)
97
+ fail ArgumentError, 'invalid value for "event_type", must be one of #{validator.allowable_values}.'
98
+ end
99
+ @event_type = event_type
100
+ end
101
+
102
+ # Checks equality by comparing each attribute.
103
+ # @param [Object] Object to be compared
104
+ def ==(o)
105
+ return true if self.equal?(o)
106
+ self.class == o.class &&
107
+ event_type == o.event_type &&
108
+ query_completion == o.query_completion
109
+ end
110
+
111
+ # @see the `==` method
112
+ # @param [Object] Object to be compared
113
+ def eql?(o)
114
+ self == o
115
+ end
116
+
117
+ # Calculates hash code according to all attributes.
118
+ # @return [Fixnum] Hash code
119
+ def hash
120
+ [event_type, query_completion].hash
121
+ end
122
+
123
+ # Builds the object from hash
124
+ # @param [Hash] attributes Model attributes in the form of hash
125
+ # @return [Object] Returns the model itself
126
+ def build_from_hash(attributes)
127
+ return nil unless attributes.is_a?(Hash)
128
+ self.class.swagger_types.each_pair do |key, type|
129
+ if type =~ /\AArray<(.*)>/i
130
+ # check to ensure the input is an array given that the attribute
131
+ # is documented as an array but the input is not
132
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
133
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
134
+ end
135
+ elsif !attributes[self.class.attribute_map[key]].nil?
136
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
137
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
138
+ end
139
+
140
+ self
141
+ end
142
+
143
+ # Deserializes the data based on type
144
+ # @param string type Data type
145
+ # @param string value Value to be deserialized
146
+ # @return [Object] Deserialized data
147
+ def _deserialize(type, value)
148
+ case type.to_sym
149
+ when :DateTime
150
+ DateTime.parse(value)
151
+ when :Date
152
+ Date.parse(value)
153
+ when :String
154
+ value.to_s
155
+ when :Integer
156
+ value.to_i
157
+ when :Float
158
+ value.to_f
159
+ when :BOOLEAN
160
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
161
+ true
162
+ else
163
+ false
164
+ end
165
+ when :Object
166
+ # generic object (usually a Hash), return directly
167
+ value
168
+ when /\AArray<(?<inner_type>.+)>\z/
169
+ inner_type = Regexp.last_match[:inner_type]
170
+ value.map { |v| _deserialize(inner_type, v) }
171
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
172
+ k_type = Regexp.last_match[:k_type]
173
+ v_type = Regexp.last_match[:v_type]
174
+ {}.tap do |hash|
175
+ value.each do |k, v|
176
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
177
+ end
178
+ end
179
+ else # model
180
+ temp_model = UltracartClient.const_get(type).new
181
+ temp_model.build_from_hash(value)
182
+ end
183
+ end
184
+
185
+ # Returns the string representation of the object
186
+ # @return [String] String presentation of the object
187
+ def to_s
188
+ to_hash.to_s
189
+ end
190
+
191
+ # to_body is an alias to to_hash (backward compatibility)
192
+ # @return [Hash] Returns the object in the form of hash
193
+ def to_body
194
+ to_hash
195
+ end
196
+
197
+ # Returns the object in the form of hash
198
+ # @return [Hash] Returns the object in the form of hash
199
+ def to_hash
200
+ hash = {}
201
+ self.class.attribute_map.each_pair do |attr, param|
202
+ value = self.send(attr)
203
+ next if value.nil?
204
+ hash[param] = _to_hash(value)
205
+ end
206
+ hash
207
+ end
208
+
209
+ # Outputs non-array value in the form of hash
210
+ # For object, use to_hash. Otherwise, just return the value
211
+ # @param [Object] value Any valid value
212
+ # @return [Hash] Returns the value in the form of hash
213
+ def _to_hash(value)
214
+ if value.is_a?(Array)
215
+ value.compact.map { |v| _to_hash(v) }
216
+ elsif value.is_a?(Hash)
217
+ {}.tap do |hash|
218
+ value.each { |k, v| hash[k] = _to_hash(v) }
219
+ end
220
+ elsif value.respond_to? :to_hash
221
+ value.to_hash
222
+ else
223
+ value
224
+ end
225
+ end
226
+
227
+ end
228
+ end
@@ -0,0 +1,223 @@
1
+ =begin
2
+ #UltraCart Rest API V2
3
+
4
+ #UltraCart REST API Version 2
5
+
6
+ OpenAPI spec version: 2.0.0
7
+ Contact: support@ultracart.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.15-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module UltracartClient
16
+ class ReportsResponse
17
+ attr_accessor :error
18
+
19
+ attr_accessor :metadata
20
+
21
+ attr_accessor :reports
22
+
23
+ # Indicates if API call was successful
24
+ attr_accessor :success
25
+
26
+ attr_accessor :warning
27
+
28
+ # Attribute mapping from ruby-style variable name to JSON key.
29
+ def self.attribute_map
30
+ {
31
+ :'error' => :'error',
32
+ :'metadata' => :'metadata',
33
+ :'reports' => :'reports',
34
+ :'success' => :'success',
35
+ :'warning' => :'warning'
36
+ }
37
+ end
38
+
39
+ # Attribute type mapping.
40
+ def self.swagger_types
41
+ {
42
+ :'error' => :'Error',
43
+ :'metadata' => :'ResponseMetadata',
44
+ :'reports' => :'Array<Report>',
45
+ :'success' => :'BOOLEAN',
46
+ :'warning' => :'Warning'
47
+ }
48
+ end
49
+
50
+ # Initializes the object
51
+ # @param [Hash] attributes Model attributes in the form of hash
52
+ def initialize(attributes = {})
53
+ return unless attributes.is_a?(Hash)
54
+
55
+ # convert string to symbol for hash key
56
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
57
+
58
+ if attributes.has_key?(:'error')
59
+ self.error = attributes[:'error']
60
+ end
61
+
62
+ if attributes.has_key?(:'metadata')
63
+ self.metadata = attributes[:'metadata']
64
+ end
65
+
66
+ if attributes.has_key?(:'reports')
67
+ if (value = attributes[:'reports']).is_a?(Array)
68
+ self.reports = value
69
+ end
70
+ end
71
+
72
+ if attributes.has_key?(:'success')
73
+ self.success = attributes[:'success']
74
+ end
75
+
76
+ if attributes.has_key?(:'warning')
77
+ self.warning = attributes[:'warning']
78
+ end
79
+ end
80
+
81
+ # Show invalid properties with the reasons. Usually used together with valid?
82
+ # @return Array for valid properties with the reasons
83
+ def list_invalid_properties
84
+ invalid_properties = Array.new
85
+ invalid_properties
86
+ end
87
+
88
+ # Check to see if the all the properties in the model are valid
89
+ # @return true if the model is valid
90
+ def valid?
91
+ 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
+ error == o.error &&
100
+ metadata == o.metadata &&
101
+ reports == o.reports &&
102
+ success == o.success &&
103
+ warning == o.warning
104
+ end
105
+
106
+ # @see the `==` method
107
+ # @param [Object] Object to be compared
108
+ def eql?(o)
109
+ self == o
110
+ end
111
+
112
+ # Calculates hash code according to all attributes.
113
+ # @return [Fixnum] Hash code
114
+ def hash
115
+ [error, metadata, reports, success, warning].hash
116
+ end
117
+
118
+ # Builds the object from hash
119
+ # @param [Hash] attributes Model attributes in the form of hash
120
+ # @return [Object] Returns the model itself
121
+ def build_from_hash(attributes)
122
+ return nil unless attributes.is_a?(Hash)
123
+ self.class.swagger_types.each_pair do |key, type|
124
+ if type =~ /\AArray<(.*)>/i
125
+ # check to ensure the input is an array given that the attribute
126
+ # is documented as an array but the input is not
127
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
128
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
129
+ end
130
+ elsif !attributes[self.class.attribute_map[key]].nil?
131
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
132
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
133
+ end
134
+
135
+ self
136
+ end
137
+
138
+ # Deserializes the data based on type
139
+ # @param string type Data type
140
+ # @param string value Value to be deserialized
141
+ # @return [Object] Deserialized data
142
+ def _deserialize(type, value)
143
+ case type.to_sym
144
+ when :DateTime
145
+ DateTime.parse(value)
146
+ when :Date
147
+ Date.parse(value)
148
+ when :String
149
+ value.to_s
150
+ when :Integer
151
+ value.to_i
152
+ when :Float
153
+ value.to_f
154
+ when :BOOLEAN
155
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
156
+ true
157
+ else
158
+ false
159
+ end
160
+ when :Object
161
+ # generic object (usually a Hash), return directly
162
+ value
163
+ when /\AArray<(?<inner_type>.+)>\z/
164
+ inner_type = Regexp.last_match[:inner_type]
165
+ value.map { |v| _deserialize(inner_type, v) }
166
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
167
+ k_type = Regexp.last_match[:k_type]
168
+ v_type = Regexp.last_match[:v_type]
169
+ {}.tap do |hash|
170
+ value.each do |k, v|
171
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
172
+ end
173
+ end
174
+ else # model
175
+ temp_model = UltracartClient.const_get(type).new
176
+ temp_model.build_from_hash(value)
177
+ end
178
+ end
179
+
180
+ # Returns the string representation of the object
181
+ # @return [String] String presentation of the object
182
+ def to_s
183
+ to_hash.to_s
184
+ end
185
+
186
+ # to_body is an alias to to_hash (backward compatibility)
187
+ # @return [Hash] Returns the object in the form of hash
188
+ def to_body
189
+ to_hash
190
+ end
191
+
192
+ # Returns the object in the form of hash
193
+ # @return [Hash] Returns the object in the form of hash
194
+ def to_hash
195
+ hash = {}
196
+ self.class.attribute_map.each_pair do |attr, param|
197
+ value = self.send(attr)
198
+ next if value.nil?
199
+ hash[param] = _to_hash(value)
200
+ end
201
+ hash
202
+ end
203
+
204
+ # Outputs non-array value in the form of hash
205
+ # For object, use to_hash. Otherwise, just return the value
206
+ # @param [Object] value Any valid value
207
+ # @return [Hash] Returns the value in the form of hash
208
+ def _to_hash(value)
209
+ if value.is_a?(Array)
210
+ value.compact.map { |v| _to_hash(v) }
211
+ elsif value.is_a?(Hash)
212
+ {}.tap do |hash|
213
+ value.each { |k, v| hash[k] = _to_hash(v) }
214
+ end
215
+ elsif value.respond_to? :to_hash
216
+ value.to_hash
217
+ else
218
+ value
219
+ end
220
+ end
221
+
222
+ end
223
+ end
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.124'
14
+ VERSION = '3.10.126'
15
15
  end
data/lib/ultracart_api.rb CHANGED
@@ -641,6 +641,30 @@ require 'ultracart_api/models/property'
641
641
  require 'ultracart_api/models/publish_library_item_request'
642
642
  require 'ultracart_api/models/register_affiliate_click_request'
643
643
  require 'ultracart_api/models/register_affiliate_click_response'
644
+ require 'ultracart_api/models/report'
645
+ require 'ultracart_api/models/report_auth'
646
+ require 'ultracart_api/models/report_auth_response'
647
+ require 'ultracart_api/models/report_data_set'
648
+ require 'ultracart_api/models/report_data_set_column'
649
+ require 'ultracart_api/models/report_data_set_page'
650
+ require 'ultracart_api/models/report_data_set_page_response'
651
+ require 'ultracart_api/models/report_data_set_query'
652
+ require 'ultracart_api/models/report_data_set_response'
653
+ require 'ultracart_api/models/report_data_set_row'
654
+ require 'ultracart_api/models/report_data_set_schema'
655
+ require 'ultracart_api/models/report_data_set_summary'
656
+ require 'ultracart_api/models/report_data_source'
657
+ require 'ultracart_api/models/report_data_source_schema'
658
+ require 'ultracart_api/models/report_execute_queries_request'
659
+ require 'ultracart_api/models/report_filter'
660
+ require 'ultracart_api/models/report_filter_connection'
661
+ require 'ultracart_api/models/report_page'
662
+ require 'ultracart_api/models/report_page_visualization'
663
+ require 'ultracart_api/models/report_page_visualization_dimension'
664
+ require 'ultracart_api/models/report_page_visualization_metric'
665
+ require 'ultracart_api/models/report_response'
666
+ require 'ultracart_api/models/report_websocket_event'
667
+ require 'ultracart_api/models/reports_response'
644
668
  require 'ultracart_api/models/response_metadata'
645
669
  require 'ultracart_api/models/result_set'
646
670
  require 'ultracart_api/models/ruler_validation_request'
@@ -770,6 +794,7 @@ require 'ultracart_api/api/checkout_api'
770
794
  require 'ultracart_api/api/conversation_api'
771
795
  require 'ultracart_api/api/coupon_api'
772
796
  require 'ultracart_api/api/customer_api'
797
+ require 'ultracart_api/api/datawarehouse_api'
773
798
  require 'ultracart_api/api/fulfillment_api'
774
799
  require 'ultracart_api/api/gift_certificate_api'
775
800
  require 'ultracart_api/api/integration_log_api'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.10.124
4
+ version: 3.10.126
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
@@ -515,6 +515,7 @@ files:
515
515
  - docs/CustomerTaxCodes.md
516
516
  - docs/CustomersResponse.md
517
517
  - docs/DataTablesServerSideResponse.md
518
+ - docs/DatawarehouseApi.md
518
519
  - docs/Distance.md
519
520
  - docs/DistributionCenter.md
520
521
  - docs/DistributionCentersResponse.md
@@ -859,6 +860,30 @@ files:
859
860
  - docs/PublishLibraryItemRequest.md
860
861
  - docs/RegisterAffiliateClickRequest.md
861
862
  - docs/RegisterAffiliateClickResponse.md
863
+ - docs/Report.md
864
+ - docs/ReportAuth.md
865
+ - docs/ReportAuthResponse.md
866
+ - docs/ReportDataSet.md
867
+ - docs/ReportDataSetColumn.md
868
+ - docs/ReportDataSetPage.md
869
+ - docs/ReportDataSetPageResponse.md
870
+ - docs/ReportDataSetQuery.md
871
+ - docs/ReportDataSetResponse.md
872
+ - docs/ReportDataSetRow.md
873
+ - docs/ReportDataSetSchema.md
874
+ - docs/ReportDataSetSummary.md
875
+ - docs/ReportDataSource.md
876
+ - docs/ReportDataSourceSchema.md
877
+ - docs/ReportExecuteQueriesRequest.md
878
+ - docs/ReportFilter.md
879
+ - docs/ReportFilterConnection.md
880
+ - docs/ReportPage.md
881
+ - docs/ReportPageVisualization.md
882
+ - docs/ReportPageVisualizationDimension.md
883
+ - docs/ReportPageVisualizationMetric.md
884
+ - docs/ReportResponse.md
885
+ - docs/ReportWebsocketEvent.md
886
+ - docs/ReportsResponse.md
862
887
  - docs/ResponseMetadata.md
863
888
  - docs/ResultSet.md
864
889
  - docs/RulerValidationRequest.md
@@ -993,6 +1018,7 @@ files:
993
1018
  - lib/ultracart_api/api/conversation_api.rb
994
1019
  - lib/ultracart_api/api/coupon_api.rb
995
1020
  - lib/ultracart_api/api/customer_api.rb
1021
+ - lib/ultracart_api/api/datawarehouse_api.rb
996
1022
  - lib/ultracart_api/api/fulfillment_api.rb
997
1023
  - lib/ultracart_api/api/gift_certificate_api.rb
998
1024
  - lib/ultracart_api/api/integration_log_api.rb
@@ -1631,6 +1657,30 @@ files:
1631
1657
  - lib/ultracart_api/models/publish_library_item_request.rb
1632
1658
  - lib/ultracart_api/models/register_affiliate_click_request.rb
1633
1659
  - lib/ultracart_api/models/register_affiliate_click_response.rb
1660
+ - lib/ultracart_api/models/report.rb
1661
+ - lib/ultracart_api/models/report_auth.rb
1662
+ - lib/ultracart_api/models/report_auth_response.rb
1663
+ - lib/ultracart_api/models/report_data_set.rb
1664
+ - lib/ultracart_api/models/report_data_set_column.rb
1665
+ - lib/ultracart_api/models/report_data_set_page.rb
1666
+ - lib/ultracart_api/models/report_data_set_page_response.rb
1667
+ - lib/ultracart_api/models/report_data_set_query.rb
1668
+ - lib/ultracart_api/models/report_data_set_response.rb
1669
+ - lib/ultracart_api/models/report_data_set_row.rb
1670
+ - lib/ultracart_api/models/report_data_set_schema.rb
1671
+ - lib/ultracart_api/models/report_data_set_summary.rb
1672
+ - lib/ultracart_api/models/report_data_source.rb
1673
+ - lib/ultracart_api/models/report_data_source_schema.rb
1674
+ - lib/ultracart_api/models/report_execute_queries_request.rb
1675
+ - lib/ultracart_api/models/report_filter.rb
1676
+ - lib/ultracart_api/models/report_filter_connection.rb
1677
+ - lib/ultracart_api/models/report_page.rb
1678
+ - lib/ultracart_api/models/report_page_visualization.rb
1679
+ - lib/ultracart_api/models/report_page_visualization_dimension.rb
1680
+ - lib/ultracart_api/models/report_page_visualization_metric.rb
1681
+ - lib/ultracart_api/models/report_response.rb
1682
+ - lib/ultracart_api/models/report_websocket_event.rb
1683
+ - lib/ultracart_api/models/reports_response.rb
1634
1684
  - lib/ultracart_api/models/response_metadata.rb
1635
1685
  - lib/ultracart_api/models/result_set.rb
1636
1686
  - lib/ultracart_api/models/ruler_validation_request.rb