late-sdk 0.0.950 → 0.0.951

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 (41) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -0
  3. data/docs/AdCampaignsApi.md +154 -0
  4. data/docs/AdKeyword.md +3 -1
  5. data/docs/AdKeywordQuality.md +24 -0
  6. data/docs/AdScheduleWindow.md +32 -0
  7. data/docs/GetCampaignAdSchedule200Response.md +28 -0
  8. data/docs/GetCampaignAdSchedule200ResponsePerformance.md +22 -0
  9. data/docs/GetCampaignAdSchedule200ResponsePerformanceByDayOfWeekInner.md +26 -0
  10. data/docs/GetCampaignAdSchedule200ResponsePerformanceByHourInner.md +26 -0
  11. data/docs/UpdateCampaignAdSchedule200Response.md +22 -0
  12. data/docs/UpdateCampaignAdScheduleRequest.md +18 -0
  13. data/docs/UpdateCampaignAdScheduleRequestScheduleInner.md +28 -0
  14. data/lib/zernio-sdk/api/ad_campaigns_api.rb +164 -0
  15. data/lib/zernio-sdk/models/ad_keyword.rb +11 -2
  16. data/lib/zernio-sdk/models/ad_keyword_quality.rb +241 -0
  17. data/lib/zernio-sdk/models/ad_schedule_window.rb +329 -0
  18. data/lib/zernio-sdk/models/get_campaign_ad_schedule200_response.rb +197 -0
  19. data/lib/zernio-sdk/models/get_campaign_ad_schedule200_response_performance.rb +174 -0
  20. data/lib/zernio-sdk/models/get_campaign_ad_schedule200_response_performance_by_day_of_week_inner.rb +218 -0
  21. data/lib/zernio-sdk/models/get_campaign_ad_schedule200_response_performance_by_hour_inner.rb +212 -0
  22. data/lib/zernio-sdk/models/update_campaign_ad_schedule200_response.rb +167 -0
  23. data/lib/zernio-sdk/models/update_campaign_ad_schedule_request.rb +176 -0
  24. data/lib/zernio-sdk/models/update_campaign_ad_schedule_request_schedule_inner.rb +362 -0
  25. data/lib/zernio-sdk/version.rb +1 -1
  26. data/lib/zernio-sdk.rb +9 -0
  27. data/openapi.yaml +200 -1
  28. data/spec/api/ad_campaigns_api_spec.rb +30 -0
  29. data/spec/models/ad_keyword_quality_spec.rb +66 -0
  30. data/spec/models/ad_keyword_spec.rb +6 -0
  31. data/spec/models/ad_schedule_window_spec.rb +90 -0
  32. data/spec/models/get_campaign_ad_schedule200_response_performance_by_day_of_week_inner_spec.rb +64 -0
  33. data/spec/models/get_campaign_ad_schedule200_response_performance_by_hour_inner_spec.rb +60 -0
  34. data/spec/models/get_campaign_ad_schedule200_response_performance_spec.rb +48 -0
  35. data/spec/models/get_campaign_ad_schedule200_response_spec.rb +66 -0
  36. data/spec/models/update_campaign_ad_schedule200_response_spec.rb +48 -0
  37. data/spec/models/update_campaign_ad_schedule_request_schedule_inner_spec.rb +78 -0
  38. data/spec/models/update_campaign_ad_schedule_request_spec.rb +36 -0
  39. data/zernio-sdk-0.0.951.gem +0 -0
  40. metadata +38 -2
  41. data/zernio-sdk-0.0.950.gem +0 -0
@@ -0,0 +1,329 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api Versioning and deprecation: all endpoints are versioned in the URL path (current version: /v1). Breaking changes only ship in a new path version; existing versions keep working. Deprecated operations are marked 'deprecated: true' in this spec and announced in the changelog (https://zernio.com/changelog) before removal. Errors: every 4xx/5xx response is application/json with a machine-readable 'code' and a human-readable 'error' message (see the ErrorResponse schema).
5
+
6
+ The version of the OpenAPI document: 1.0.4
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Zernio
17
+ # One ad schedule window as Google stores it. Half-open: it is exclusive of the end minute, so 09:00-12:00 and 12:00-17:00 are adjacent, not overlapping.
18
+ class AdScheduleWindow < ApiModelBase
19
+ # Google campaign criterion id. Changes whenever the window is rewritten, because Google cannot edit a schedule in place.
20
+ attr_accessor :criterion_id
21
+
22
+ attr_accessor :resource_name
23
+
24
+ attr_accessor :day_of_week
25
+
26
+ attr_accessor :start_hour
27
+
28
+ attr_accessor :start_minute
29
+
30
+ # 24 means midnight at the end of the day.
31
+ attr_accessor :end_hour
32
+
33
+ attr_accessor :end_minute
34
+
35
+ # Bid adjustment for this window, 0.1-10.0. Null when the window runs at the campaign bid.
36
+ attr_accessor :bid_modifier
37
+
38
+ class EnumAttributeValidator
39
+ attr_reader :datatype
40
+ attr_reader :allowable_values
41
+
42
+ def initialize(datatype, allowable_values)
43
+ @allowable_values = allowable_values.map do |value|
44
+ case datatype.to_s
45
+ when /Integer/i
46
+ value.to_i
47
+ when /Float/i
48
+ value.to_f
49
+ else
50
+ value
51
+ end
52
+ end
53
+ end
54
+
55
+ def valid?(value)
56
+ !value || allowable_values.include?(value)
57
+ end
58
+ end
59
+
60
+ # Attribute mapping from ruby-style variable name to JSON key.
61
+ def self.attribute_map
62
+ {
63
+ :'criterion_id' => :'criterionId',
64
+ :'resource_name' => :'resourceName',
65
+ :'day_of_week' => :'dayOfWeek',
66
+ :'start_hour' => :'startHour',
67
+ :'start_minute' => :'startMinute',
68
+ :'end_hour' => :'endHour',
69
+ :'end_minute' => :'endMinute',
70
+ :'bid_modifier' => :'bidModifier'
71
+ }
72
+ end
73
+
74
+ # Returns attribute mapping this model knows about
75
+ def self.acceptable_attribute_map
76
+ attribute_map
77
+ end
78
+
79
+ # Returns all the JSON keys this model knows about
80
+ def self.acceptable_attributes
81
+ acceptable_attribute_map.values
82
+ end
83
+
84
+ # Attribute type mapping.
85
+ def self.openapi_types
86
+ {
87
+ :'criterion_id' => :'String',
88
+ :'resource_name' => :'String',
89
+ :'day_of_week' => :'String',
90
+ :'start_hour' => :'Integer',
91
+ :'start_minute' => :'Integer',
92
+ :'end_hour' => :'Integer',
93
+ :'end_minute' => :'Integer',
94
+ :'bid_modifier' => :'Float'
95
+ }
96
+ end
97
+
98
+ # List of attributes with nullable: true
99
+ def self.openapi_nullable
100
+ Set.new([
101
+ :'bid_modifier'
102
+ ])
103
+ end
104
+
105
+ # Initializes the object
106
+ # @param [Hash] attributes Model attributes in the form of hash
107
+ def initialize(attributes = {})
108
+ if (!attributes.is_a?(Hash))
109
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Zernio::AdScheduleWindow` initialize method"
110
+ end
111
+
112
+ # check to see if the attribute exists and convert string to symbol for hash key
113
+ acceptable_attribute_map = self.class.acceptable_attribute_map
114
+ attributes = attributes.each_with_object({}) { |(k, v), h|
115
+ if (!acceptable_attribute_map.key?(k.to_sym))
116
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Zernio::AdScheduleWindow`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
117
+ end
118
+ h[k.to_sym] = v
119
+ }
120
+
121
+ if attributes.key?(:'criterion_id')
122
+ self.criterion_id = attributes[:'criterion_id']
123
+ end
124
+
125
+ if attributes.key?(:'resource_name')
126
+ self.resource_name = attributes[:'resource_name']
127
+ end
128
+
129
+ if attributes.key?(:'day_of_week')
130
+ self.day_of_week = attributes[:'day_of_week']
131
+ end
132
+
133
+ if attributes.key?(:'start_hour')
134
+ self.start_hour = attributes[:'start_hour']
135
+ end
136
+
137
+ if attributes.key?(:'start_minute')
138
+ self.start_minute = attributes[:'start_minute']
139
+ end
140
+
141
+ if attributes.key?(:'end_hour')
142
+ self.end_hour = attributes[:'end_hour']
143
+ end
144
+
145
+ if attributes.key?(:'end_minute')
146
+ self.end_minute = attributes[:'end_minute']
147
+ end
148
+
149
+ if attributes.key?(:'bid_modifier')
150
+ self.bid_modifier = attributes[:'bid_modifier']
151
+ end
152
+ end
153
+
154
+ # Show invalid properties with the reasons. Usually used together with valid?
155
+ # @return Array for valid properties with the reasons
156
+ def list_invalid_properties
157
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
158
+ invalid_properties = Array.new
159
+ if !@start_hour.nil? && @start_hour > 23
160
+ invalid_properties.push('invalid value for "start_hour", must be smaller than or equal to 23.')
161
+ end
162
+
163
+ if !@start_hour.nil? && @start_hour < 0
164
+ invalid_properties.push('invalid value for "start_hour", must be greater than or equal to 0.')
165
+ end
166
+
167
+ if !@end_hour.nil? && @end_hour > 24
168
+ invalid_properties.push('invalid value for "end_hour", must be smaller than or equal to 24.')
169
+ end
170
+
171
+ if !@end_hour.nil? && @end_hour < 0
172
+ invalid_properties.push('invalid value for "end_hour", must be greater than or equal to 0.')
173
+ end
174
+
175
+ invalid_properties
176
+ end
177
+
178
+ # Check to see if the all the properties in the model are valid
179
+ # @return true if the model is valid
180
+ def valid?
181
+ warn '[DEPRECATED] the `valid?` method is obsolete'
182
+ day_of_week_validator = EnumAttributeValidator.new('String', ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"])
183
+ return false unless day_of_week_validator.valid?(@day_of_week)
184
+ return false if !@start_hour.nil? && @start_hour > 23
185
+ return false if !@start_hour.nil? && @start_hour < 0
186
+ start_minute_validator = EnumAttributeValidator.new('Integer', [0, 15, 30, 45])
187
+ return false unless start_minute_validator.valid?(@start_minute)
188
+ return false if !@end_hour.nil? && @end_hour > 24
189
+ return false if !@end_hour.nil? && @end_hour < 0
190
+ end_minute_validator = EnumAttributeValidator.new('Integer', [0, 15, 30, 45])
191
+ return false unless end_minute_validator.valid?(@end_minute)
192
+ true
193
+ end
194
+
195
+ # Custom attribute writer method checking allowed values (enum).
196
+ # @param [Object] day_of_week Object to be assigned
197
+ def day_of_week=(day_of_week)
198
+ validator = EnumAttributeValidator.new('String', ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"])
199
+ unless validator.valid?(day_of_week)
200
+ fail ArgumentError, "invalid value for \"day_of_week\", must be one of #{validator.allowable_values}."
201
+ end
202
+ @day_of_week = day_of_week
203
+ end
204
+
205
+ # Custom attribute writer method with validation
206
+ # @param [Object] start_hour Value to be assigned
207
+ def start_hour=(start_hour)
208
+ if start_hour.nil?
209
+ fail ArgumentError, 'start_hour cannot be nil'
210
+ end
211
+
212
+ if start_hour > 23
213
+ fail ArgumentError, 'invalid value for "start_hour", must be smaller than or equal to 23.'
214
+ end
215
+
216
+ if start_hour < 0
217
+ fail ArgumentError, 'invalid value for "start_hour", must be greater than or equal to 0.'
218
+ end
219
+
220
+ @start_hour = start_hour
221
+ end
222
+
223
+ # Custom attribute writer method checking allowed values (enum).
224
+ # @param [Object] start_minute Object to be assigned
225
+ def start_minute=(start_minute)
226
+ validator = EnumAttributeValidator.new('Integer', [0, 15, 30, 45])
227
+ unless validator.valid?(start_minute)
228
+ fail ArgumentError, "invalid value for \"start_minute\", must be one of #{validator.allowable_values}."
229
+ end
230
+ @start_minute = start_minute
231
+ end
232
+
233
+ # Custom attribute writer method with validation
234
+ # @param [Object] end_hour Value to be assigned
235
+ def end_hour=(end_hour)
236
+ if end_hour.nil?
237
+ fail ArgumentError, 'end_hour cannot be nil'
238
+ end
239
+
240
+ if end_hour > 24
241
+ fail ArgumentError, 'invalid value for "end_hour", must be smaller than or equal to 24.'
242
+ end
243
+
244
+ if end_hour < 0
245
+ fail ArgumentError, 'invalid value for "end_hour", must be greater than or equal to 0.'
246
+ end
247
+
248
+ @end_hour = end_hour
249
+ end
250
+
251
+ # Custom attribute writer method checking allowed values (enum).
252
+ # @param [Object] end_minute Object to be assigned
253
+ def end_minute=(end_minute)
254
+ validator = EnumAttributeValidator.new('Integer', [0, 15, 30, 45])
255
+ unless validator.valid?(end_minute)
256
+ fail ArgumentError, "invalid value for \"end_minute\", must be one of #{validator.allowable_values}."
257
+ end
258
+ @end_minute = end_minute
259
+ end
260
+
261
+ # Checks equality by comparing each attribute.
262
+ # @param [Object] Object to be compared
263
+ def ==(o)
264
+ return true if self.equal?(o)
265
+ self.class == o.class &&
266
+ criterion_id == o.criterion_id &&
267
+ resource_name == o.resource_name &&
268
+ day_of_week == o.day_of_week &&
269
+ start_hour == o.start_hour &&
270
+ start_minute == o.start_minute &&
271
+ end_hour == o.end_hour &&
272
+ end_minute == o.end_minute &&
273
+ bid_modifier == o.bid_modifier
274
+ end
275
+
276
+ # @see the `==` method
277
+ # @param [Object] Object to be compared
278
+ def eql?(o)
279
+ self == o
280
+ end
281
+
282
+ # Calculates hash code according to all attributes.
283
+ # @return [Integer] Hash code
284
+ def hash
285
+ [criterion_id, resource_name, day_of_week, start_hour, start_minute, end_hour, end_minute, bid_modifier].hash
286
+ end
287
+
288
+ # Builds the object from hash
289
+ # @param [Hash] attributes Model attributes in the form of hash
290
+ # @return [Object] Returns the model itself
291
+ def self.build_from_hash(attributes)
292
+ return nil unless attributes.is_a?(Hash)
293
+ attributes = attributes.transform_keys(&:to_sym)
294
+ transformed_hash = {}
295
+ openapi_types.each_pair do |key, type|
296
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
297
+ transformed_hash["#{key}"] = nil
298
+ elsif type =~ /\AArray<(.*)>/i
299
+ # check to ensure the input is an array given that the attribute
300
+ # is documented as an array but the input is not
301
+ if attributes[attribute_map[key]].is_a?(Array)
302
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
303
+ end
304
+ elsif !attributes[attribute_map[key]].nil?
305
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
306
+ end
307
+ end
308
+ new(transformed_hash)
309
+ end
310
+
311
+ # Returns the object in the form of hash
312
+ # @return [Hash] Returns the object in the form of hash
313
+ def to_hash
314
+ hash = {}
315
+ self.class.attribute_map.each_pair do |attr, param|
316
+ value = self.send(attr)
317
+ if value.nil?
318
+ is_nullable = self.class.openapi_nullable.include?(attr)
319
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
320
+ end
321
+
322
+ hash[param] = _to_hash(value)
323
+ end
324
+ hash
325
+ end
326
+
327
+ end
328
+
329
+ end
@@ -0,0 +1,197 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api Versioning and deprecation: all endpoints are versioned in the URL path (current version: /v1). Breaking changes only ship in a new path version; existing versions keep working. Deprecated operations are marked 'deprecated: true' in this spec and announced in the changelog (https://zernio.com/changelog) before removal. Errors: every 4xx/5xx response is application/json with a machine-readable 'code' and a human-readable 'error' message (see the ErrorResponse schema).
5
+
6
+ The version of the OpenAPI document: 1.0.4
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Zernio
17
+ class GetCampaignAdSchedule200Response < ApiModelBase
18
+ attr_accessor :campaign_id
19
+
20
+ attr_accessor :schedule
21
+
22
+ # True when the campaign carries no ad schedule at all, so it can serve at any time.
23
+ attr_accessor :serves_around_the_clock
24
+
25
+ attr_accessor :cached_at
26
+
27
+ # True when a quota-exhausted read served the last-good copy.
28
+ attr_accessor :stale
29
+
30
+ attr_accessor :performance
31
+
32
+ # Attribute mapping from ruby-style variable name to JSON key.
33
+ def self.attribute_map
34
+ {
35
+ :'campaign_id' => :'campaignId',
36
+ :'schedule' => :'schedule',
37
+ :'serves_around_the_clock' => :'servesAroundTheClock',
38
+ :'cached_at' => :'cachedAt',
39
+ :'stale' => :'stale',
40
+ :'performance' => :'performance'
41
+ }
42
+ end
43
+
44
+ # Returns attribute mapping this model knows about
45
+ def self.acceptable_attribute_map
46
+ attribute_map
47
+ end
48
+
49
+ # Returns all the JSON keys this model knows about
50
+ def self.acceptable_attributes
51
+ acceptable_attribute_map.values
52
+ end
53
+
54
+ # Attribute type mapping.
55
+ def self.openapi_types
56
+ {
57
+ :'campaign_id' => :'String',
58
+ :'schedule' => :'Array<AdScheduleWindow>',
59
+ :'serves_around_the_clock' => :'Boolean',
60
+ :'cached_at' => :'Time',
61
+ :'stale' => :'Boolean',
62
+ :'performance' => :'GetCampaignAdSchedule200ResponsePerformance'
63
+ }
64
+ end
65
+
66
+ # List of attributes with nullable: true
67
+ def self.openapi_nullable
68
+ Set.new([
69
+ :'cached_at',
70
+ ])
71
+ end
72
+
73
+ # Initializes the object
74
+ # @param [Hash] attributes Model attributes in the form of hash
75
+ def initialize(attributes = {})
76
+ if (!attributes.is_a?(Hash))
77
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Zernio::GetCampaignAdSchedule200Response` initialize method"
78
+ end
79
+
80
+ # check to see if the attribute exists and convert string to symbol for hash key
81
+ acceptable_attribute_map = self.class.acceptable_attribute_map
82
+ attributes = attributes.each_with_object({}) { |(k, v), h|
83
+ if (!acceptable_attribute_map.key?(k.to_sym))
84
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Zernio::GetCampaignAdSchedule200Response`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
85
+ end
86
+ h[k.to_sym] = v
87
+ }
88
+
89
+ if attributes.key?(:'campaign_id')
90
+ self.campaign_id = attributes[:'campaign_id']
91
+ end
92
+
93
+ if attributes.key?(:'schedule')
94
+ if (value = attributes[:'schedule']).is_a?(Array)
95
+ self.schedule = value
96
+ end
97
+ end
98
+
99
+ if attributes.key?(:'serves_around_the_clock')
100
+ self.serves_around_the_clock = attributes[:'serves_around_the_clock']
101
+ end
102
+
103
+ if attributes.key?(:'cached_at')
104
+ self.cached_at = attributes[:'cached_at']
105
+ end
106
+
107
+ if attributes.key?(:'stale')
108
+ self.stale = attributes[:'stale']
109
+ end
110
+
111
+ if attributes.key?(:'performance')
112
+ self.performance = attributes[:'performance']
113
+ end
114
+ end
115
+
116
+ # Show invalid properties with the reasons. Usually used together with valid?
117
+ # @return Array for valid properties with the reasons
118
+ def list_invalid_properties
119
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
120
+ invalid_properties = Array.new
121
+ invalid_properties
122
+ end
123
+
124
+ # Check to see if the all the properties in the model are valid
125
+ # @return true if the model is valid
126
+ def valid?
127
+ warn '[DEPRECATED] the `valid?` method is obsolete'
128
+ true
129
+ end
130
+
131
+ # Checks equality by comparing each attribute.
132
+ # @param [Object] Object to be compared
133
+ def ==(o)
134
+ return true if self.equal?(o)
135
+ self.class == o.class &&
136
+ campaign_id == o.campaign_id &&
137
+ schedule == o.schedule &&
138
+ serves_around_the_clock == o.serves_around_the_clock &&
139
+ cached_at == o.cached_at &&
140
+ stale == o.stale &&
141
+ performance == o.performance
142
+ end
143
+
144
+ # @see the `==` method
145
+ # @param [Object] Object to be compared
146
+ def eql?(o)
147
+ self == o
148
+ end
149
+
150
+ # Calculates hash code according to all attributes.
151
+ # @return [Integer] Hash code
152
+ def hash
153
+ [campaign_id, schedule, serves_around_the_clock, cached_at, stale, performance].hash
154
+ end
155
+
156
+ # Builds the object from hash
157
+ # @param [Hash] attributes Model attributes in the form of hash
158
+ # @return [Object] Returns the model itself
159
+ def self.build_from_hash(attributes)
160
+ return nil unless attributes.is_a?(Hash)
161
+ attributes = attributes.transform_keys(&:to_sym)
162
+ transformed_hash = {}
163
+ openapi_types.each_pair do |key, type|
164
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
165
+ transformed_hash["#{key}"] = nil
166
+ elsif type =~ /\AArray<(.*)>/i
167
+ # check to ensure the input is an array given that the attribute
168
+ # is documented as an array but the input is not
169
+ if attributes[attribute_map[key]].is_a?(Array)
170
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
171
+ end
172
+ elsif !attributes[attribute_map[key]].nil?
173
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
174
+ end
175
+ end
176
+ new(transformed_hash)
177
+ end
178
+
179
+ # Returns the object in the form of hash
180
+ # @return [Hash] Returns the object in the form of hash
181
+ def to_hash
182
+ hash = {}
183
+ self.class.attribute_map.each_pair do |attr, param|
184
+ value = self.send(attr)
185
+ if value.nil?
186
+ is_nullable = self.class.openapi_nullable.include?(attr)
187
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
188
+ end
189
+
190
+ hash[param] = _to_hash(value)
191
+ end
192
+ hash
193
+ end
194
+
195
+ end
196
+
197
+ end
@@ -0,0 +1,174 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api Versioning and deprecation: all endpoints are versioned in the URL path (current version: /v1). Breaking changes only ship in a new path version; existing versions keep working. Deprecated operations are marked 'deprecated: true' in this spec and announced in the changelog (https://zernio.com/changelog) before removal. Errors: every 4xx/5xx response is application/json with a machine-readable 'code' and a human-readable 'error' message (see the ErrorResponse schema).
5
+
6
+ The version of the OpenAPI document: 1.0.4
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Zernio
17
+ # Only present when includePerformance=true.
18
+ class GetCampaignAdSchedule200ResponsePerformance < ApiModelBase
19
+ # The trailing window used, or null when an explicit fromDate/toDate range was given.
20
+ attr_accessor :window_days
21
+
22
+ # One entry per day that delivered, Monday first.
23
+ attr_accessor :by_day_of_week
24
+
25
+ # One entry per hour that delivered, 0-23 in the account time zone.
26
+ attr_accessor :by_hour
27
+
28
+ # Attribute mapping from ruby-style variable name to JSON key.
29
+ def self.attribute_map
30
+ {
31
+ :'window_days' => :'windowDays',
32
+ :'by_day_of_week' => :'byDayOfWeek',
33
+ :'by_hour' => :'byHour'
34
+ }
35
+ end
36
+
37
+ # Returns attribute mapping this model knows about
38
+ def self.acceptable_attribute_map
39
+ attribute_map
40
+ end
41
+
42
+ # Returns all the JSON keys this model knows about
43
+ def self.acceptable_attributes
44
+ acceptable_attribute_map.values
45
+ end
46
+
47
+ # Attribute type mapping.
48
+ def self.openapi_types
49
+ {
50
+ :'window_days' => :'Integer',
51
+ :'by_day_of_week' => :'Array<GetCampaignAdSchedule200ResponsePerformanceByDayOfWeekInner>',
52
+ :'by_hour' => :'Array<GetCampaignAdSchedule200ResponsePerformanceByHourInner>'
53
+ }
54
+ end
55
+
56
+ # List of attributes with nullable: true
57
+ def self.openapi_nullable
58
+ Set.new([
59
+ :'window_days',
60
+ ])
61
+ end
62
+
63
+ # Initializes the object
64
+ # @param [Hash] attributes Model attributes in the form of hash
65
+ def initialize(attributes = {})
66
+ if (!attributes.is_a?(Hash))
67
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Zernio::GetCampaignAdSchedule200ResponsePerformance` initialize method"
68
+ end
69
+
70
+ # check to see if the attribute exists and convert string to symbol for hash key
71
+ acceptable_attribute_map = self.class.acceptable_attribute_map
72
+ attributes = attributes.each_with_object({}) { |(k, v), h|
73
+ if (!acceptable_attribute_map.key?(k.to_sym))
74
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Zernio::GetCampaignAdSchedule200ResponsePerformance`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
75
+ end
76
+ h[k.to_sym] = v
77
+ }
78
+
79
+ if attributes.key?(:'window_days')
80
+ self.window_days = attributes[:'window_days']
81
+ end
82
+
83
+ if attributes.key?(:'by_day_of_week')
84
+ if (value = attributes[:'by_day_of_week']).is_a?(Array)
85
+ self.by_day_of_week = value
86
+ end
87
+ end
88
+
89
+ if attributes.key?(:'by_hour')
90
+ if (value = attributes[:'by_hour']).is_a?(Array)
91
+ self.by_hour = value
92
+ end
93
+ end
94
+ end
95
+
96
+ # Show invalid properties with the reasons. Usually used together with valid?
97
+ # @return Array for valid properties with the reasons
98
+ def list_invalid_properties
99
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
100
+ invalid_properties = Array.new
101
+ invalid_properties
102
+ end
103
+
104
+ # Check to see if the all the properties in the model are valid
105
+ # @return true if the model is valid
106
+ def valid?
107
+ warn '[DEPRECATED] the `valid?` method is obsolete'
108
+ true
109
+ end
110
+
111
+ # Checks equality by comparing each attribute.
112
+ # @param [Object] Object to be compared
113
+ def ==(o)
114
+ return true if self.equal?(o)
115
+ self.class == o.class &&
116
+ window_days == o.window_days &&
117
+ by_day_of_week == o.by_day_of_week &&
118
+ by_hour == o.by_hour
119
+ end
120
+
121
+ # @see the `==` method
122
+ # @param [Object] Object to be compared
123
+ def eql?(o)
124
+ self == o
125
+ end
126
+
127
+ # Calculates hash code according to all attributes.
128
+ # @return [Integer] Hash code
129
+ def hash
130
+ [window_days, by_day_of_week, by_hour].hash
131
+ end
132
+
133
+ # Builds the object from hash
134
+ # @param [Hash] attributes Model attributes in the form of hash
135
+ # @return [Object] Returns the model itself
136
+ def self.build_from_hash(attributes)
137
+ return nil unless attributes.is_a?(Hash)
138
+ attributes = attributes.transform_keys(&:to_sym)
139
+ transformed_hash = {}
140
+ openapi_types.each_pair do |key, type|
141
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
142
+ transformed_hash["#{key}"] = nil
143
+ elsif type =~ /\AArray<(.*)>/i
144
+ # check to ensure the input is an array given that the attribute
145
+ # is documented as an array but the input is not
146
+ if attributes[attribute_map[key]].is_a?(Array)
147
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
148
+ end
149
+ elsif !attributes[attribute_map[key]].nil?
150
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
151
+ end
152
+ end
153
+ new(transformed_hash)
154
+ end
155
+
156
+ # Returns the object in the form of hash
157
+ # @return [Hash] Returns the object in the form of hash
158
+ def to_hash
159
+ hash = {}
160
+ self.class.attribute_map.each_pair do |attr, param|
161
+ value = self.send(attr)
162
+ if value.nil?
163
+ is_nullable = self.class.openapi_nullable.include?(attr)
164
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
165
+ end
166
+
167
+ hash[param] = _to_hash(value)
168
+ end
169
+ hash
170
+ end
171
+
172
+ end
173
+
174
+ end