late-sdk 0.0.76 → 0.0.78

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 (97) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +27 -1
  3. data/docs/ActivateSequence200Response.md +20 -0
  4. data/docs/AddBroadcastRecipients200Response.md +22 -0
  5. data/docs/BroadcastsApi.md +49 -42
  6. data/docs/CancelBroadcast200Response.md +20 -0
  7. data/docs/CancelBroadcast200ResponseBroadcast.md +20 -0
  8. data/docs/CreateBroadcast200Response.md +20 -0
  9. data/docs/CreateBroadcast200ResponseBroadcast.md +30 -0
  10. data/docs/CreateSequence200Response.md +20 -0
  11. data/docs/CreateSequence200ResponseSequence.md +30 -0
  12. data/docs/CreateSequenceRequestStepsInner.md +1 -1
  13. data/docs/EnrollContacts200Response.md +22 -0
  14. data/docs/GetBroadcast200Response.md +20 -0
  15. data/docs/GetBroadcast200ResponseBroadcast.md +54 -0
  16. data/docs/{CreateSequenceRequestStepsInnerMessage.md → GetBroadcast200ResponseBroadcastMessage.md} +2 -2
  17. data/docs/GetBroadcast200ResponseBroadcastSegmentFilters.md +18 -0
  18. data/docs/GetSequence200Response.md +20 -0
  19. data/docs/GetSequence200ResponseSequence.md +44 -0
  20. data/docs/GetSequence200ResponseSequenceStepsInner.md +24 -0
  21. data/docs/GetSequence200ResponseSequenceStepsInnerTemplate.md +22 -0
  22. data/docs/ListBroadcastRecipients200Response.md +22 -0
  23. data/docs/ListBroadcastRecipients200ResponseRecipientsInner.md +38 -0
  24. data/docs/ListSequenceEnrollments200Response.md +22 -0
  25. data/docs/ListSequenceEnrollments200ResponseEnrollmentsInner.md +40 -0
  26. data/docs/ScheduleBroadcast200Response.md +20 -0
  27. data/docs/ScheduleBroadcast200ResponseBroadcast.md +22 -0
  28. data/docs/SequencesApi.md +49 -42
  29. data/docs/UpdateBroadcast200Response.md +20 -0
  30. data/docs/UpdateBroadcast200ResponseBroadcast.md +26 -0
  31. data/docs/UpdateSequence200Response.md +20 -0
  32. data/docs/UpdateSequence200ResponseSequence.md +32 -0
  33. data/lib/late-sdk/api/broadcasts_api.rb +35 -35
  34. data/lib/late-sdk/api/sequences_api.rb +35 -35
  35. data/lib/late-sdk/models/activate_sequence200_response.rb +156 -0
  36. data/lib/late-sdk/models/add_broadcast_recipients200_response.rb +167 -0
  37. data/lib/late-sdk/models/cancel_broadcast200_response.rb +156 -0
  38. data/lib/late-sdk/models/cancel_broadcast200_response_broadcast.rb +156 -0
  39. data/lib/late-sdk/models/create_broadcast200_response.rb +156 -0
  40. data/lib/late-sdk/models/create_broadcast200_response_broadcast.rb +201 -0
  41. data/lib/late-sdk/models/create_sequence200_response.rb +156 -0
  42. data/lib/late-sdk/models/create_sequence200_response_sequence.rb +201 -0
  43. data/lib/late-sdk/models/create_sequence_request_steps_inner.rb +1 -1
  44. data/lib/late-sdk/models/enroll_contacts200_response.rb +167 -0
  45. data/lib/late-sdk/models/get_broadcast200_response.rb +156 -0
  46. data/lib/late-sdk/models/get_broadcast200_response_broadcast.rb +343 -0
  47. data/lib/late-sdk/models/{create_sequence_request_steps_inner_message.rb → get_broadcast200_response_broadcast_message.rb} +3 -3
  48. data/lib/late-sdk/models/get_broadcast200_response_broadcast_segment_filters.rb +149 -0
  49. data/lib/late-sdk/models/get_sequence200_response.rb +156 -0
  50. data/lib/late-sdk/models/get_sequence200_response_sequence.rb +300 -0
  51. data/lib/late-sdk/models/get_sequence200_response_sequence_steps_inner.rb +174 -0
  52. data/lib/late-sdk/models/get_sequence200_response_sequence_steps_inner_template.rb +165 -0
  53. data/lib/late-sdk/models/list_broadcast_recipients200_response.rb +167 -0
  54. data/lib/late-sdk/models/list_broadcast_recipients200_response_recipients_inner.rb +271 -0
  55. data/lib/late-sdk/models/list_sequence_enrollments200_response.rb +167 -0
  56. data/lib/late-sdk/models/list_sequence_enrollments200_response_enrollments_inner.rb +280 -0
  57. data/lib/late-sdk/models/schedule_broadcast200_response.rb +156 -0
  58. data/lib/late-sdk/models/schedule_broadcast200_response_broadcast.rb +165 -0
  59. data/lib/late-sdk/models/update_broadcast200_response.rb +156 -0
  60. data/lib/late-sdk/models/update_broadcast200_response_broadcast.rb +183 -0
  61. data/lib/late-sdk/models/update_sequence200_response.rb +156 -0
  62. data/lib/late-sdk/models/update_sequence200_response_sequence.rb +212 -0
  63. data/lib/late-sdk/version.rb +1 -1
  64. data/lib/late-sdk.rb +27 -1
  65. data/openapi.yaml +270 -14
  66. data/spec/api/broadcasts_api_spec.rb +7 -7
  67. data/spec/api/sequences_api_spec.rb +7 -7
  68. data/spec/models/activate_sequence200_response_spec.rb +42 -0
  69. data/spec/models/add_broadcast_recipients200_response_spec.rb +48 -0
  70. data/spec/models/cancel_broadcast200_response_broadcast_spec.rb +42 -0
  71. data/spec/models/cancel_broadcast200_response_spec.rb +42 -0
  72. data/spec/models/create_broadcast200_response_broadcast_spec.rb +72 -0
  73. data/spec/models/create_broadcast200_response_spec.rb +42 -0
  74. data/spec/models/create_sequence200_response_sequence_spec.rb +72 -0
  75. data/spec/models/create_sequence200_response_spec.rb +42 -0
  76. data/spec/models/enroll_contacts200_response_spec.rb +48 -0
  77. data/spec/models/{create_sequence_request_steps_inner_message_spec.rb → get_broadcast200_response_broadcast_message_spec.rb} +6 -6
  78. data/spec/models/get_broadcast200_response_broadcast_segment_filters_spec.rb +36 -0
  79. data/spec/models/get_broadcast200_response_broadcast_spec.rb +148 -0
  80. data/spec/models/get_broadcast200_response_spec.rb +42 -0
  81. data/spec/models/get_sequence200_response_sequence_spec.rb +118 -0
  82. data/spec/models/get_sequence200_response_sequence_steps_inner_spec.rb +54 -0
  83. data/spec/models/get_sequence200_response_sequence_steps_inner_template_spec.rb +48 -0
  84. data/spec/models/get_sequence200_response_spec.rb +42 -0
  85. data/spec/models/list_broadcast_recipients200_response_recipients_inner_spec.rb +100 -0
  86. data/spec/models/list_broadcast_recipients200_response_spec.rb +48 -0
  87. data/spec/models/list_sequence_enrollments200_response_enrollments_inner_spec.rb +106 -0
  88. data/spec/models/list_sequence_enrollments200_response_spec.rb +48 -0
  89. data/spec/models/schedule_broadcast200_response_broadcast_spec.rb +48 -0
  90. data/spec/models/schedule_broadcast200_response_spec.rb +42 -0
  91. data/spec/models/update_broadcast200_response_broadcast_spec.rb +60 -0
  92. data/spec/models/update_broadcast200_response_spec.rb +42 -0
  93. data/spec/models/update_sequence200_response_sequence_spec.rb +78 -0
  94. data/spec/models/update_sequence200_response_spec.rb +42 -0
  95. data/zernio-sdk-0.0.78.gem +0 -0
  96. metadata +110 -6
  97. data/zernio-sdk-0.0.76.gem +0 -0
@@ -0,0 +1,280 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
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 Late
17
+ class ListSequenceEnrollments200ResponseEnrollmentsInner < ApiModelBase
18
+ attr_accessor :id
19
+
20
+ attr_accessor :contact_id
21
+
22
+ attr_accessor :channel_id
23
+
24
+ attr_accessor :platform_identifier
25
+
26
+ attr_accessor :contact_name
27
+
28
+ attr_accessor :current_step_index
29
+
30
+ attr_accessor :status
31
+
32
+ attr_accessor :exit_reason
33
+
34
+ attr_accessor :next_step_at
35
+
36
+ attr_accessor :steps_sent
37
+
38
+ attr_accessor :last_step_sent_at
39
+
40
+ attr_accessor :created_at
41
+
42
+ class EnumAttributeValidator
43
+ attr_reader :datatype
44
+ attr_reader :allowable_values
45
+
46
+ def initialize(datatype, allowable_values)
47
+ @allowable_values = allowable_values.map do |value|
48
+ case datatype.to_s
49
+ when /Integer/i
50
+ value.to_i
51
+ when /Float/i
52
+ value.to_f
53
+ else
54
+ value
55
+ end
56
+ end
57
+ end
58
+
59
+ def valid?(value)
60
+ !value || allowable_values.include?(value)
61
+ end
62
+ end
63
+
64
+ # Attribute mapping from ruby-style variable name to JSON key.
65
+ def self.attribute_map
66
+ {
67
+ :'id' => :'id',
68
+ :'contact_id' => :'contactId',
69
+ :'channel_id' => :'channelId',
70
+ :'platform_identifier' => :'platformIdentifier',
71
+ :'contact_name' => :'contactName',
72
+ :'current_step_index' => :'currentStepIndex',
73
+ :'status' => :'status',
74
+ :'exit_reason' => :'exitReason',
75
+ :'next_step_at' => :'nextStepAt',
76
+ :'steps_sent' => :'stepsSent',
77
+ :'last_step_sent_at' => :'lastStepSentAt',
78
+ :'created_at' => :'createdAt'
79
+ }
80
+ end
81
+
82
+ # Returns attribute mapping this model knows about
83
+ def self.acceptable_attribute_map
84
+ attribute_map
85
+ end
86
+
87
+ # Returns all the JSON keys this model knows about
88
+ def self.acceptable_attributes
89
+ acceptable_attribute_map.values
90
+ end
91
+
92
+ # Attribute type mapping.
93
+ def self.openapi_types
94
+ {
95
+ :'id' => :'String',
96
+ :'contact_id' => :'String',
97
+ :'channel_id' => :'String',
98
+ :'platform_identifier' => :'String',
99
+ :'contact_name' => :'String',
100
+ :'current_step_index' => :'Integer',
101
+ :'status' => :'String',
102
+ :'exit_reason' => :'String',
103
+ :'next_step_at' => :'Time',
104
+ :'steps_sent' => :'Integer',
105
+ :'last_step_sent_at' => :'Time',
106
+ :'created_at' => :'Time'
107
+ }
108
+ end
109
+
110
+ # List of attributes with nullable: true
111
+ def self.openapi_nullable
112
+ Set.new([
113
+ ])
114
+ end
115
+
116
+ # Initializes the object
117
+ # @param [Hash] attributes Model attributes in the form of hash
118
+ def initialize(attributes = {})
119
+ if (!attributes.is_a?(Hash))
120
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Late::ListSequenceEnrollments200ResponseEnrollmentsInner` initialize method"
121
+ end
122
+
123
+ # check to see if the attribute exists and convert string to symbol for hash key
124
+ acceptable_attribute_map = self.class.acceptable_attribute_map
125
+ attributes = attributes.each_with_object({}) { |(k, v), h|
126
+ if (!acceptable_attribute_map.key?(k.to_sym))
127
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Late::ListSequenceEnrollments200ResponseEnrollmentsInner`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
128
+ end
129
+ h[k.to_sym] = v
130
+ }
131
+
132
+ if attributes.key?(:'id')
133
+ self.id = attributes[:'id']
134
+ end
135
+
136
+ if attributes.key?(:'contact_id')
137
+ self.contact_id = attributes[:'contact_id']
138
+ end
139
+
140
+ if attributes.key?(:'channel_id')
141
+ self.channel_id = attributes[:'channel_id']
142
+ end
143
+
144
+ if attributes.key?(:'platform_identifier')
145
+ self.platform_identifier = attributes[:'platform_identifier']
146
+ end
147
+
148
+ if attributes.key?(:'contact_name')
149
+ self.contact_name = attributes[:'contact_name']
150
+ end
151
+
152
+ if attributes.key?(:'current_step_index')
153
+ self.current_step_index = attributes[:'current_step_index']
154
+ end
155
+
156
+ if attributes.key?(:'status')
157
+ self.status = attributes[:'status']
158
+ end
159
+
160
+ if attributes.key?(:'exit_reason')
161
+ self.exit_reason = attributes[:'exit_reason']
162
+ end
163
+
164
+ if attributes.key?(:'next_step_at')
165
+ self.next_step_at = attributes[:'next_step_at']
166
+ end
167
+
168
+ if attributes.key?(:'steps_sent')
169
+ self.steps_sent = attributes[:'steps_sent']
170
+ end
171
+
172
+ if attributes.key?(:'last_step_sent_at')
173
+ self.last_step_sent_at = attributes[:'last_step_sent_at']
174
+ end
175
+
176
+ if attributes.key?(:'created_at')
177
+ self.created_at = attributes[:'created_at']
178
+ end
179
+ end
180
+
181
+ # Show invalid properties with the reasons. Usually used together with valid?
182
+ # @return Array for valid properties with the reasons
183
+ def list_invalid_properties
184
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
185
+ invalid_properties = Array.new
186
+ invalid_properties
187
+ end
188
+
189
+ # Check to see if the all the properties in the model are valid
190
+ # @return true if the model is valid
191
+ def valid?
192
+ warn '[DEPRECATED] the `valid?` method is obsolete'
193
+ status_validator = EnumAttributeValidator.new('String', ["active", "completed", "exited", "paused"])
194
+ return false unless status_validator.valid?(@status)
195
+ true
196
+ end
197
+
198
+ # Custom attribute writer method checking allowed values (enum).
199
+ # @param [Object] status Object to be assigned
200
+ def status=(status)
201
+ validator = EnumAttributeValidator.new('String', ["active", "completed", "exited", "paused"])
202
+ unless validator.valid?(status)
203
+ fail ArgumentError, "invalid value for \"status\", must be one of #{validator.allowable_values}."
204
+ end
205
+ @status = status
206
+ end
207
+
208
+ # Checks equality by comparing each attribute.
209
+ # @param [Object] Object to be compared
210
+ def ==(o)
211
+ return true if self.equal?(o)
212
+ self.class == o.class &&
213
+ id == o.id &&
214
+ contact_id == o.contact_id &&
215
+ channel_id == o.channel_id &&
216
+ platform_identifier == o.platform_identifier &&
217
+ contact_name == o.contact_name &&
218
+ current_step_index == o.current_step_index &&
219
+ status == o.status &&
220
+ exit_reason == o.exit_reason &&
221
+ next_step_at == o.next_step_at &&
222
+ steps_sent == o.steps_sent &&
223
+ last_step_sent_at == o.last_step_sent_at &&
224
+ created_at == o.created_at
225
+ end
226
+
227
+ # @see the `==` method
228
+ # @param [Object] Object to be compared
229
+ def eql?(o)
230
+ self == o
231
+ end
232
+
233
+ # Calculates hash code according to all attributes.
234
+ # @return [Integer] Hash code
235
+ def hash
236
+ [id, contact_id, channel_id, platform_identifier, contact_name, current_step_index, status, exit_reason, next_step_at, steps_sent, last_step_sent_at, created_at].hash
237
+ end
238
+
239
+ # Builds the object from hash
240
+ # @param [Hash] attributes Model attributes in the form of hash
241
+ # @return [Object] Returns the model itself
242
+ def self.build_from_hash(attributes)
243
+ return nil unless attributes.is_a?(Hash)
244
+ attributes = attributes.transform_keys(&:to_sym)
245
+ transformed_hash = {}
246
+ openapi_types.each_pair do |key, type|
247
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
248
+ transformed_hash["#{key}"] = nil
249
+ elsif type =~ /\AArray<(.*)>/i
250
+ # check to ensure the input is an array given that the attribute
251
+ # is documented as an array but the input is not
252
+ if attributes[attribute_map[key]].is_a?(Array)
253
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
254
+ end
255
+ elsif !attributes[attribute_map[key]].nil?
256
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
257
+ end
258
+ end
259
+ new(transformed_hash)
260
+ end
261
+
262
+ # Returns the object in the form of hash
263
+ # @return [Hash] Returns the object in the form of hash
264
+ def to_hash
265
+ hash = {}
266
+ self.class.attribute_map.each_pair do |attr, param|
267
+ value = self.send(attr)
268
+ if value.nil?
269
+ is_nullable = self.class.openapi_nullable.include?(attr)
270
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
271
+ end
272
+
273
+ hash[param] = _to_hash(value)
274
+ end
275
+ hash
276
+ end
277
+
278
+ end
279
+
280
+ end
@@ -0,0 +1,156 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
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 Late
17
+ class ScheduleBroadcast200Response < ApiModelBase
18
+ attr_accessor :success
19
+
20
+ attr_accessor :broadcast
21
+
22
+ # Attribute mapping from ruby-style variable name to JSON key.
23
+ def self.attribute_map
24
+ {
25
+ :'success' => :'success',
26
+ :'broadcast' => :'broadcast'
27
+ }
28
+ end
29
+
30
+ # Returns attribute mapping this model knows about
31
+ def self.acceptable_attribute_map
32
+ attribute_map
33
+ end
34
+
35
+ # Returns all the JSON keys this model knows about
36
+ def self.acceptable_attributes
37
+ acceptable_attribute_map.values
38
+ end
39
+
40
+ # Attribute type mapping.
41
+ def self.openapi_types
42
+ {
43
+ :'success' => :'Boolean',
44
+ :'broadcast' => :'ScheduleBroadcast200ResponseBroadcast'
45
+ }
46
+ end
47
+
48
+ # List of attributes with nullable: true
49
+ def self.openapi_nullable
50
+ Set.new([
51
+ ])
52
+ end
53
+
54
+ # Initializes the object
55
+ # @param [Hash] attributes Model attributes in the form of hash
56
+ def initialize(attributes = {})
57
+ if (!attributes.is_a?(Hash))
58
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Late::ScheduleBroadcast200Response` initialize method"
59
+ end
60
+
61
+ # check to see if the attribute exists and convert string to symbol for hash key
62
+ acceptable_attribute_map = self.class.acceptable_attribute_map
63
+ attributes = attributes.each_with_object({}) { |(k, v), h|
64
+ if (!acceptable_attribute_map.key?(k.to_sym))
65
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Late::ScheduleBroadcast200Response`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
66
+ end
67
+ h[k.to_sym] = v
68
+ }
69
+
70
+ if attributes.key?(:'success')
71
+ self.success = attributes[:'success']
72
+ end
73
+
74
+ if attributes.key?(:'broadcast')
75
+ self.broadcast = attributes[:'broadcast']
76
+ end
77
+ end
78
+
79
+ # Show invalid properties with the reasons. Usually used together with valid?
80
+ # @return Array for valid properties with the reasons
81
+ def list_invalid_properties
82
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
83
+ invalid_properties = Array.new
84
+ invalid_properties
85
+ end
86
+
87
+ # Check to see if the all the properties in the model are valid
88
+ # @return true if the model is valid
89
+ def valid?
90
+ warn '[DEPRECATED] the `valid?` method is obsolete'
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
+ success == o.success &&
100
+ broadcast == o.broadcast
101
+ end
102
+
103
+ # @see the `==` method
104
+ # @param [Object] Object to be compared
105
+ def eql?(o)
106
+ self == o
107
+ end
108
+
109
+ # Calculates hash code according to all attributes.
110
+ # @return [Integer] Hash code
111
+ def hash
112
+ [success, broadcast].hash
113
+ end
114
+
115
+ # Builds the object from hash
116
+ # @param [Hash] attributes Model attributes in the form of hash
117
+ # @return [Object] Returns the model itself
118
+ def self.build_from_hash(attributes)
119
+ return nil unless attributes.is_a?(Hash)
120
+ attributes = attributes.transform_keys(&:to_sym)
121
+ transformed_hash = {}
122
+ openapi_types.each_pair do |key, type|
123
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
124
+ transformed_hash["#{key}"] = nil
125
+ elsif type =~ /\AArray<(.*)>/i
126
+ # check to ensure the input is an array given that the attribute
127
+ # is documented as an array but the input is not
128
+ if attributes[attribute_map[key]].is_a?(Array)
129
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
130
+ end
131
+ elsif !attributes[attribute_map[key]].nil?
132
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
133
+ end
134
+ end
135
+ new(transformed_hash)
136
+ end
137
+
138
+ # Returns the object in the form of hash
139
+ # @return [Hash] Returns the object in the form of hash
140
+ def to_hash
141
+ hash = {}
142
+ self.class.attribute_map.each_pair do |attr, param|
143
+ value = self.send(attr)
144
+ if value.nil?
145
+ is_nullable = self.class.openapi_nullable.include?(attr)
146
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
147
+ end
148
+
149
+ hash[param] = _to_hash(value)
150
+ end
151
+ hash
152
+ end
153
+
154
+ end
155
+
156
+ end
@@ -0,0 +1,165 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
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 Late
17
+ class ScheduleBroadcast200ResponseBroadcast < ApiModelBase
18
+ attr_accessor :id
19
+
20
+ attr_accessor :status
21
+
22
+ attr_accessor :scheduled_at
23
+
24
+ # Attribute mapping from ruby-style variable name to JSON key.
25
+ def self.attribute_map
26
+ {
27
+ :'id' => :'id',
28
+ :'status' => :'status',
29
+ :'scheduled_at' => :'scheduledAt'
30
+ }
31
+ end
32
+
33
+ # Returns attribute mapping this model knows about
34
+ def self.acceptable_attribute_map
35
+ attribute_map
36
+ end
37
+
38
+ # Returns all the JSON keys this model knows about
39
+ def self.acceptable_attributes
40
+ acceptable_attribute_map.values
41
+ end
42
+
43
+ # Attribute type mapping.
44
+ def self.openapi_types
45
+ {
46
+ :'id' => :'String',
47
+ :'status' => :'String',
48
+ :'scheduled_at' => :'Time'
49
+ }
50
+ end
51
+
52
+ # List of attributes with nullable: true
53
+ def self.openapi_nullable
54
+ Set.new([
55
+ ])
56
+ end
57
+
58
+ # Initializes the object
59
+ # @param [Hash] attributes Model attributes in the form of hash
60
+ def initialize(attributes = {})
61
+ if (!attributes.is_a?(Hash))
62
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Late::ScheduleBroadcast200ResponseBroadcast` initialize method"
63
+ end
64
+
65
+ # check to see if the attribute exists and convert string to symbol for hash key
66
+ acceptable_attribute_map = self.class.acceptable_attribute_map
67
+ attributes = attributes.each_with_object({}) { |(k, v), h|
68
+ if (!acceptable_attribute_map.key?(k.to_sym))
69
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Late::ScheduleBroadcast200ResponseBroadcast`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
70
+ end
71
+ h[k.to_sym] = v
72
+ }
73
+
74
+ if attributes.key?(:'id')
75
+ self.id = attributes[:'id']
76
+ end
77
+
78
+ if attributes.key?(:'status')
79
+ self.status = attributes[:'status']
80
+ end
81
+
82
+ if attributes.key?(:'scheduled_at')
83
+ self.scheduled_at = attributes[:'scheduled_at']
84
+ end
85
+ end
86
+
87
+ # Show invalid properties with the reasons. Usually used together with valid?
88
+ # @return Array for valid properties with the reasons
89
+ def list_invalid_properties
90
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
91
+ invalid_properties = Array.new
92
+ invalid_properties
93
+ end
94
+
95
+ # Check to see if the all the properties in the model are valid
96
+ # @return true if the model is valid
97
+ def valid?
98
+ warn '[DEPRECATED] the `valid?` method is obsolete'
99
+ true
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
+ id == o.id &&
108
+ status == o.status &&
109
+ scheduled_at == o.scheduled_at
110
+ end
111
+
112
+ # @see the `==` method
113
+ # @param [Object] Object to be compared
114
+ def eql?(o)
115
+ self == o
116
+ end
117
+
118
+ # Calculates hash code according to all attributes.
119
+ # @return [Integer] Hash code
120
+ def hash
121
+ [id, status, scheduled_at].hash
122
+ end
123
+
124
+ # Builds the object from hash
125
+ # @param [Hash] attributes Model attributes in the form of hash
126
+ # @return [Object] Returns the model itself
127
+ def self.build_from_hash(attributes)
128
+ return nil unless attributes.is_a?(Hash)
129
+ attributes = attributes.transform_keys(&:to_sym)
130
+ transformed_hash = {}
131
+ openapi_types.each_pair do |key, type|
132
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
133
+ transformed_hash["#{key}"] = nil
134
+ elsif type =~ /\AArray<(.*)>/i
135
+ # check to ensure the input is an array given that the attribute
136
+ # is documented as an array but the input is not
137
+ if attributes[attribute_map[key]].is_a?(Array)
138
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
139
+ end
140
+ elsif !attributes[attribute_map[key]].nil?
141
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
142
+ end
143
+ end
144
+ new(transformed_hash)
145
+ end
146
+
147
+ # Returns the object in the form of hash
148
+ # @return [Hash] Returns the object in the form of hash
149
+ def to_hash
150
+ hash = {}
151
+ self.class.attribute_map.each_pair do |attr, param|
152
+ value = self.send(attr)
153
+ if value.nil?
154
+ is_nullable = self.class.openapi_nullable.include?(attr)
155
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
156
+ end
157
+
158
+ hash[param] = _to_hash(value)
159
+ end
160
+ hash
161
+ end
162
+
163
+ end
164
+
165
+ end