bombbomb 2.0.22196 → 2.0.24005
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +41 -21
- data/bombbomb.gemspec +1 -1
- data/docs/AccountsApi.md +192 -0
- data/docs/ContactsApi.md +60 -0
- data/docs/EmailsApi.md +5 -6
- data/docs/FilesApi.md +60 -0
- data/docs/JerichoPerformance.md +4 -0
- data/docs/ListsApi.md +167 -0
- data/docs/OrdersApi.md +60 -0
- data/docs/PromptBot.md +22 -0
- data/docs/PromptsApi.md +55 -21
- data/docs/SocialsApi.md +387 -0
- data/docs/TeamsApi.md +165 -0
- data/docs/VideoEmailPrompt.md +2 -1
- data/docs/VideoEncodingStatusResponse.md +10 -0
- data/docs/VideosApi.md +53 -0
- data/lib/bombbomb.rb +9 -2
- data/lib/bombbomb/api/accounts_api.rb +254 -0
- data/lib/bombbomb/api/automations_api.rb +1 -1
- data/lib/bombbomb/api/contacts_api.rb +91 -0
- data/lib/bombbomb/api/curriculum_api.rb +1 -1
- data/lib/bombbomb/api/emails_api.rb +9 -11
- data/lib/bombbomb/api/files_api.rb +91 -0
- data/lib/bombbomb/api/lists_api.rb +207 -0
- data/lib/bombbomb/api/orders_api.rb +91 -0
- data/lib/bombbomb/api/prompts_api.rb +92 -40
- data/lib/bombbomb/api/socials_api.rb +458 -0
- data/lib/bombbomb/api/teams_api.rb +184 -1
- data/lib/bombbomb/api/utilities_api.rb +1 -1
- data/lib/bombbomb/api/videos_api.rb +58 -1
- data/lib/bombbomb/api/webhooks_api.rb +1 -1
- data/lib/bombbomb/api_client.rb +1 -1
- data/lib/bombbomb/api_error.rb +1 -1
- data/lib/bombbomb/configuration.rb +1 -1
- data/lib/bombbomb/models/bb_web_hook.rb +1 -1
- data/lib/bombbomb/models/curriculum.rb +1 -1
- data/lib/bombbomb/models/curriculum_user_progress.rb +1 -1
- data/lib/bombbomb/models/curriculum_with_progress.rb +1 -1
- data/lib/bombbomb/models/inline_response_200.rb +1 -1
- data/lib/bombbomb/models/inline_response_200_items.rb +1 -1
- data/lib/bombbomb/models/jericho_configuration.rb +1 -1
- data/lib/bombbomb/models/jericho_performance.rb +45 -5
- data/lib/bombbomb/models/o_auth_client.rb +1 -1
- data/lib/bombbomb/models/prompt_bot.rb +340 -0
- data/lib/bombbomb/models/sign_upload_request.rb +1 -1
- data/lib/bombbomb/models/sign_upload_response.rb +1 -1
- data/lib/bombbomb/models/string.rb +1 -1
- data/lib/bombbomb/models/team_public_representation.rb +1 -1
- data/lib/bombbomb/models/video_email_prompt.rb +19 -11
- data/lib/bombbomb/models/video_encoding_status_response.rb +220 -0
- data/lib/bombbomb/models/video_public_representation.rb +1 -1
- data/lib/bombbomb/models/video_recorder_method_response.rb +1 -1
- data/lib/bombbomb/version.rb +2 -2
- data/spec/api/accounts_api_spec.rb +96 -0
- data/spec/api/contacts_api_spec.rb +58 -0
- data/spec/api/files_api_spec.rb +58 -0
- data/spec/api/lists_api_spec.rb +83 -0
- data/spec/api/orders_api_spec.rb +58 -0
- data/spec/api/socials_api_spec.rb +135 -0
- data/spec/models/prompt_bot_spec.rb +137 -0
- data/spec/models/video_encoding_status_response_spec.rb +65 -0
- metadata +34 -2
@@ -0,0 +1,340 @@
|
|
1
|
+
=begin
|
2
|
+
#BombBomb
|
3
|
+
|
4
|
+
#We make it easy to build relationships using simple videos.
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0.24005
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
require 'date'
|
25
|
+
|
26
|
+
module BombBomb
|
27
|
+
# The Prompt\\Bot class
|
28
|
+
class PromptBot
|
29
|
+
# The identifier of the prompt bot. Read Only.
|
30
|
+
attr_accessor :id
|
31
|
+
|
32
|
+
# The prompt bot's owner. Read Only.
|
33
|
+
attr_accessor :user_id
|
34
|
+
|
35
|
+
# The default email being sent to contacts in the prompt bot list.
|
36
|
+
attr_accessor :email_id
|
37
|
+
|
38
|
+
# The list to attach the Prompt Bot to.
|
39
|
+
attr_accessor :list_id
|
40
|
+
|
41
|
+
# The name of the bot.
|
42
|
+
attr_accessor :name
|
43
|
+
|
44
|
+
# The custom contact field value column used for this bot.
|
45
|
+
attr_accessor :contact_field_value_column
|
46
|
+
|
47
|
+
# The status of the prompt bot. Read Only.
|
48
|
+
attr_accessor :status
|
49
|
+
|
50
|
+
# when the bot started
|
51
|
+
attr_accessor :start_date
|
52
|
+
|
53
|
+
# when the bot should finish
|
54
|
+
attr_accessor :end_date
|
55
|
+
|
56
|
+
# The type of bot.
|
57
|
+
attr_accessor :bot_type_id
|
58
|
+
|
59
|
+
# The template id used to generate the default email.
|
60
|
+
attr_accessor :template_id
|
61
|
+
|
62
|
+
# The video that was added to the prompt.
|
63
|
+
attr_accessor :video_id
|
64
|
+
|
65
|
+
# The content to use in the email.
|
66
|
+
attr_accessor :content
|
67
|
+
|
68
|
+
# The subject of the default email.
|
69
|
+
attr_accessor :subject
|
70
|
+
|
71
|
+
# Set when generated as a default by a bot.
|
72
|
+
attr_accessor :generated_by
|
73
|
+
|
74
|
+
|
75
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
76
|
+
def self.attribute_map
|
77
|
+
{
|
78
|
+
:'id' => :'id',
|
79
|
+
:'user_id' => :'userId',
|
80
|
+
:'email_id' => :'emailId',
|
81
|
+
:'list_id' => :'listId',
|
82
|
+
:'name' => :'name',
|
83
|
+
:'contact_field_value_column' => :'contactFieldValueColumn',
|
84
|
+
:'status' => :'status',
|
85
|
+
:'start_date' => :'startDate',
|
86
|
+
:'end_date' => :'endDate',
|
87
|
+
:'bot_type_id' => :'botTypeId',
|
88
|
+
:'template_id' => :'templateId',
|
89
|
+
:'video_id' => :'videoId',
|
90
|
+
:'content' => :'content',
|
91
|
+
:'subject' => :'subject',
|
92
|
+
:'generated_by' => :'generatedBy'
|
93
|
+
}
|
94
|
+
end
|
95
|
+
|
96
|
+
# Attribute type mapping.
|
97
|
+
def self.swagger_types
|
98
|
+
{
|
99
|
+
:'id' => :'String',
|
100
|
+
:'user_id' => :'String',
|
101
|
+
:'email_id' => :'String',
|
102
|
+
:'list_id' => :'String',
|
103
|
+
:'name' => :'String',
|
104
|
+
:'contact_field_value_column' => :'String',
|
105
|
+
:'status' => :'Integer',
|
106
|
+
:'start_date' => :'DateTime',
|
107
|
+
:'end_date' => :'DateTime',
|
108
|
+
:'bot_type_id' => :'String',
|
109
|
+
:'template_id' => :'String',
|
110
|
+
:'video_id' => :'String',
|
111
|
+
:'content' => :'String',
|
112
|
+
:'subject' => :'String',
|
113
|
+
:'generated_by' => :'String'
|
114
|
+
}
|
115
|
+
end
|
116
|
+
|
117
|
+
# Initializes the object
|
118
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
119
|
+
def initialize(attributes = {})
|
120
|
+
return unless attributes.is_a?(Hash)
|
121
|
+
|
122
|
+
# convert string to symbol for hash key
|
123
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
124
|
+
|
125
|
+
if attributes.has_key?(:'id')
|
126
|
+
self.id = attributes[:'id']
|
127
|
+
end
|
128
|
+
|
129
|
+
if attributes.has_key?(:'userId')
|
130
|
+
self.user_id = attributes[:'userId']
|
131
|
+
end
|
132
|
+
|
133
|
+
if attributes.has_key?(:'emailId')
|
134
|
+
self.email_id = attributes[:'emailId']
|
135
|
+
end
|
136
|
+
|
137
|
+
if attributes.has_key?(:'listId')
|
138
|
+
self.list_id = attributes[:'listId']
|
139
|
+
end
|
140
|
+
|
141
|
+
if attributes.has_key?(:'name')
|
142
|
+
self.name = attributes[:'name']
|
143
|
+
end
|
144
|
+
|
145
|
+
if attributes.has_key?(:'contactFieldValueColumn')
|
146
|
+
self.contact_field_value_column = attributes[:'contactFieldValueColumn']
|
147
|
+
end
|
148
|
+
|
149
|
+
if attributes.has_key?(:'status')
|
150
|
+
self.status = attributes[:'status']
|
151
|
+
end
|
152
|
+
|
153
|
+
if attributes.has_key?(:'startDate')
|
154
|
+
self.start_date = attributes[:'startDate']
|
155
|
+
end
|
156
|
+
|
157
|
+
if attributes.has_key?(:'endDate')
|
158
|
+
self.end_date = attributes[:'endDate']
|
159
|
+
end
|
160
|
+
|
161
|
+
if attributes.has_key?(:'botTypeId')
|
162
|
+
self.bot_type_id = attributes[:'botTypeId']
|
163
|
+
end
|
164
|
+
|
165
|
+
if attributes.has_key?(:'templateId')
|
166
|
+
self.template_id = attributes[:'templateId']
|
167
|
+
end
|
168
|
+
|
169
|
+
if attributes.has_key?(:'videoId')
|
170
|
+
self.video_id = attributes[:'videoId']
|
171
|
+
end
|
172
|
+
|
173
|
+
if attributes.has_key?(:'content')
|
174
|
+
self.content = attributes[:'content']
|
175
|
+
end
|
176
|
+
|
177
|
+
if attributes.has_key?(:'subject')
|
178
|
+
self.subject = attributes[:'subject']
|
179
|
+
end
|
180
|
+
|
181
|
+
if attributes.has_key?(:'generatedBy')
|
182
|
+
self.generated_by = attributes[:'generatedBy']
|
183
|
+
end
|
184
|
+
|
185
|
+
end
|
186
|
+
|
187
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
188
|
+
# @return Array for valid properies with the reasons
|
189
|
+
def list_invalid_properties
|
190
|
+
invalid_properties = Array.new
|
191
|
+
return invalid_properties
|
192
|
+
end
|
193
|
+
|
194
|
+
# Check to see if the all the properties in the model are valid
|
195
|
+
# @return true if the model is valid
|
196
|
+
def valid?
|
197
|
+
return true
|
198
|
+
end
|
199
|
+
|
200
|
+
# Checks equality by comparing each attribute.
|
201
|
+
# @param [Object] Object to be compared
|
202
|
+
def ==(o)
|
203
|
+
return true if self.equal?(o)
|
204
|
+
self.class == o.class &&
|
205
|
+
id == o.id &&
|
206
|
+
user_id == o.user_id &&
|
207
|
+
email_id == o.email_id &&
|
208
|
+
list_id == o.list_id &&
|
209
|
+
name == o.name &&
|
210
|
+
contact_field_value_column == o.contact_field_value_column &&
|
211
|
+
status == o.status &&
|
212
|
+
start_date == o.start_date &&
|
213
|
+
end_date == o.end_date &&
|
214
|
+
bot_type_id == o.bot_type_id &&
|
215
|
+
template_id == o.template_id &&
|
216
|
+
video_id == o.video_id &&
|
217
|
+
content == o.content &&
|
218
|
+
subject == o.subject &&
|
219
|
+
generated_by == o.generated_by
|
220
|
+
end
|
221
|
+
|
222
|
+
# @see the `==` method
|
223
|
+
# @param [Object] Object to be compared
|
224
|
+
def eql?(o)
|
225
|
+
self == o
|
226
|
+
end
|
227
|
+
|
228
|
+
# Calculates hash code according to all attributes.
|
229
|
+
# @return [Fixnum] Hash code
|
230
|
+
def hash
|
231
|
+
[id, user_id, email_id, list_id, name, contact_field_value_column, status, start_date, end_date, bot_type_id, template_id, video_id, content, subject, generated_by].hash
|
232
|
+
end
|
233
|
+
|
234
|
+
# Builds the object from hash
|
235
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
236
|
+
# @return [Object] Returns the model itself
|
237
|
+
def build_from_hash(attributes)
|
238
|
+
return nil unless attributes.is_a?(Hash)
|
239
|
+
self.class.swagger_types.each_pair do |key, type|
|
240
|
+
if type =~ /^Array<(.*)>/i
|
241
|
+
# check to ensure the input is an array given that the the attribute
|
242
|
+
# is documented as an array but the input is not
|
243
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
244
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
245
|
+
end
|
246
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
247
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
248
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
249
|
+
end
|
250
|
+
|
251
|
+
self
|
252
|
+
end
|
253
|
+
|
254
|
+
# Deserializes the data based on type
|
255
|
+
# @param string type Data type
|
256
|
+
# @param string value Value to be deserialized
|
257
|
+
# @return [Object] Deserialized data
|
258
|
+
def _deserialize(type, value)
|
259
|
+
case type.to_sym
|
260
|
+
when :DateTime
|
261
|
+
DateTime.parse(value)
|
262
|
+
when :Date
|
263
|
+
Date.parse(value)
|
264
|
+
when :String
|
265
|
+
value.to_s
|
266
|
+
when :Integer
|
267
|
+
value.to_i
|
268
|
+
when :Float
|
269
|
+
value.to_f
|
270
|
+
when :BOOLEAN
|
271
|
+
if value.to_s =~ /^(true|t|yes|y|1)$/i
|
272
|
+
true
|
273
|
+
else
|
274
|
+
false
|
275
|
+
end
|
276
|
+
when :Object
|
277
|
+
# generic object (usually a Hash), return directly
|
278
|
+
value
|
279
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
280
|
+
inner_type = Regexp.last_match[:inner_type]
|
281
|
+
value.map { |v| _deserialize(inner_type, v) }
|
282
|
+
when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
|
283
|
+
k_type = Regexp.last_match[:k_type]
|
284
|
+
v_type = Regexp.last_match[:v_type]
|
285
|
+
{}.tap do |hash|
|
286
|
+
value.each do |k, v|
|
287
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
288
|
+
end
|
289
|
+
end
|
290
|
+
else # model
|
291
|
+
temp_model = BombBomb.const_get(type).new
|
292
|
+
temp_model.build_from_hash(value)
|
293
|
+
end
|
294
|
+
end
|
295
|
+
|
296
|
+
# Returns the string representation of the object
|
297
|
+
# @return [String] String presentation of the object
|
298
|
+
def to_s
|
299
|
+
to_hash.to_s
|
300
|
+
end
|
301
|
+
|
302
|
+
# to_body is an alias to to_hash (backward compatibility)
|
303
|
+
# @return [Hash] Returns the object in the form of hash
|
304
|
+
def to_body
|
305
|
+
to_hash
|
306
|
+
end
|
307
|
+
|
308
|
+
# Returns the object in the form of hash
|
309
|
+
# @return [Hash] Returns the object in the form of hash
|
310
|
+
def to_hash
|
311
|
+
hash = {}
|
312
|
+
self.class.attribute_map.each_pair do |attr, param|
|
313
|
+
value = self.send(attr)
|
314
|
+
next if value.nil?
|
315
|
+
hash[param] = _to_hash(value)
|
316
|
+
end
|
317
|
+
hash
|
318
|
+
end
|
319
|
+
|
320
|
+
# Outputs non-array value in the form of hash
|
321
|
+
# For object, use to_hash. Otherwise, just return the value
|
322
|
+
# @param [Object] value Any valid value
|
323
|
+
# @return [Hash] Returns the value in the form of hash
|
324
|
+
def _to_hash(value)
|
325
|
+
if value.is_a?(Array)
|
326
|
+
value.compact.map{ |v| _to_hash(v) }
|
327
|
+
elsif value.is_a?(Hash)
|
328
|
+
{}.tap do |hash|
|
329
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
330
|
+
end
|
331
|
+
elsif value.respond_to? :to_hash
|
332
|
+
value.to_hash
|
333
|
+
else
|
334
|
+
value
|
335
|
+
end
|
336
|
+
end
|
337
|
+
|
338
|
+
end
|
339
|
+
|
340
|
+
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#We make it easy to build relationships using simple videos.
|
5
5
|
|
6
|
-
OpenAPI spec version: 2.0.
|
6
|
+
OpenAPI spec version: 2.0.24005
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
@@ -44,8 +44,8 @@ module BombBomb
|
|
44
44
|
# The URL of a thumbnail image for this prompt
|
45
45
|
attr_accessor :thumbnail_url
|
46
46
|
|
47
|
-
#
|
48
|
-
attr_accessor :
|
47
|
+
# Contact Id to send the final email to
|
48
|
+
attr_accessor :contact_id
|
49
49
|
|
50
50
|
# List Ids to send the final email to
|
51
51
|
attr_accessor :to_lists
|
@@ -65,6 +65,9 @@ module BombBomb
|
|
65
65
|
# An example or explanatory video to help the user understand what to say.
|
66
66
|
attr_accessor :example_video_id
|
67
67
|
|
68
|
+
# An example or explanatory video to help the user understand what to say.
|
69
|
+
attr_accessor :followup_video_id
|
70
|
+
|
68
71
|
# Whether to send the email if no video is recorded. If set to require a video, and none is added before the videoDueDate, the prompt is cancelled.
|
69
72
|
attr_accessor :send_without_video
|
70
73
|
|
@@ -111,13 +114,14 @@ module BombBomb
|
|
111
114
|
:'email_subject_line' => :'emailSubjectLine',
|
112
115
|
:'email_content' => :'emailContent',
|
113
116
|
:'thumbnail_url' => :'thumbnailUrl',
|
114
|
-
:'
|
117
|
+
:'contact_id' => :'contactId',
|
115
118
|
:'to_lists' => :'toLists',
|
116
119
|
:'jericho_id' => :'jerichoId',
|
117
120
|
:'prompt_subject' => :'promptSubject',
|
118
121
|
:'prompt_html' => :'promptHtml',
|
119
122
|
:'prompt_intro' => :'promptIntro',
|
120
123
|
:'example_video_id' => :'exampleVideoId',
|
124
|
+
:'followup_video_id' => :'followupVideoId',
|
121
125
|
:'send_without_video' => :'sendWithoutVideo',
|
122
126
|
:'video_due_date' => :'videoDueDate',
|
123
127
|
:'scheduled_send_date' => :'scheduledSendDate',
|
@@ -142,13 +146,14 @@ module BombBomb
|
|
142
146
|
:'email_subject_line' => :'String',
|
143
147
|
:'email_content' => :'String',
|
144
148
|
:'thumbnail_url' => :'String',
|
145
|
-
:'
|
149
|
+
:'contact_id' => :'String',
|
146
150
|
:'to_lists' => :'Array<String>',
|
147
151
|
:'jericho_id' => :'String',
|
148
152
|
:'prompt_subject' => :'String',
|
149
153
|
:'prompt_html' => :'String',
|
150
154
|
:'prompt_intro' => :'String',
|
151
155
|
:'example_video_id' => :'String',
|
156
|
+
:'followup_video_id' => :'String',
|
152
157
|
:'send_without_video' => :'BOOLEAN',
|
153
158
|
:'video_due_date' => :'DateTime',
|
154
159
|
:'scheduled_send_date' => :'DateTime',
|
@@ -196,10 +201,8 @@ module BombBomb
|
|
196
201
|
self.thumbnail_url = attributes[:'thumbnailUrl']
|
197
202
|
end
|
198
203
|
|
199
|
-
if attributes.has_key?(:'
|
200
|
-
|
201
|
-
self.to_email_addresses = value
|
202
|
-
end
|
204
|
+
if attributes.has_key?(:'contactId')
|
205
|
+
self.contact_id = attributes[:'contactId']
|
203
206
|
end
|
204
207
|
|
205
208
|
if attributes.has_key?(:'toLists')
|
@@ -228,6 +231,10 @@ module BombBomb
|
|
228
231
|
self.example_video_id = attributes[:'exampleVideoId']
|
229
232
|
end
|
230
233
|
|
234
|
+
if attributes.has_key?(:'followupVideoId')
|
235
|
+
self.followup_video_id = attributes[:'followupVideoId']
|
236
|
+
end
|
237
|
+
|
231
238
|
if attributes.has_key?(:'sendWithoutVideo')
|
232
239
|
self.send_without_video = attributes[:'sendWithoutVideo']
|
233
240
|
end
|
@@ -307,13 +314,14 @@ module BombBomb
|
|
307
314
|
email_subject_line == o.email_subject_line &&
|
308
315
|
email_content == o.email_content &&
|
309
316
|
thumbnail_url == o.thumbnail_url &&
|
310
|
-
|
317
|
+
contact_id == o.contact_id &&
|
311
318
|
to_lists == o.to_lists &&
|
312
319
|
jericho_id == o.jericho_id &&
|
313
320
|
prompt_subject == o.prompt_subject &&
|
314
321
|
prompt_html == o.prompt_html &&
|
315
322
|
prompt_intro == o.prompt_intro &&
|
316
323
|
example_video_id == o.example_video_id &&
|
324
|
+
followup_video_id == o.followup_video_id &&
|
317
325
|
send_without_video == o.send_without_video &&
|
318
326
|
video_due_date == o.video_due_date &&
|
319
327
|
scheduled_send_date == o.scheduled_send_date &&
|
@@ -337,7 +345,7 @@ module BombBomb
|
|
337
345
|
# Calculates hash code according to all attributes.
|
338
346
|
# @return [Fixnum] Hash code
|
339
347
|
def hash
|
340
|
-
[id, user_id, template_id, email_subject_line, email_content, thumbnail_url,
|
348
|
+
[id, user_id, template_id, email_subject_line, email_content, thumbnail_url, contact_id, to_lists, jericho_id, prompt_subject, prompt_html, prompt_intro, example_video_id, followup_video_id, send_without_video, video_due_date, scheduled_send_date, video_id, email_id, job_id, prompt_bot_id, client_group_id, status, apply_template, created_date, last_notified].hash
|
341
349
|
end
|
342
350
|
|
343
351
|
# Builds the object from hash
|