Class: BrevoRuby::UpdateEmailCampaign
- Inherits:
-
Object
- Object
- BrevoRuby::UpdateEmailCampaign
- Defined in:
- lib/brevo-ruby/models/update_email_campaign.rb
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#ab_testing ⇒ Object
Status of A/B Test.
-
#attachment_url ⇒ Object
Absolute url of the attachment (no local file).
-
#footer ⇒ Object
Footer of the email campaign.
-
#header ⇒ Object
Header of the email campaign.
-
#html_content ⇒ Object
Body of the message (HTML version).
-
#html_url ⇒ Object
Url which contents the body of the email message.
-
#increase_rate ⇒ Object
Set a percentage increase rate for warming up your ip.
-
#initial_quota ⇒ Object
Set an initial quota greater than 1 for warming up your ip.
-
#inline_image_activation ⇒ Object
Status of inline image.
-
#ip_warmup_enable ⇒ Object
Available for dedicated ip clients.
-
#mirror_active ⇒ Object
Status of mirror links in campaign.
-
#name ⇒ Object
Name of the campaign.
-
#params ⇒ Object
Pass the set of attributes to customize the type ‘classic’ campaign.
-
#recipients ⇒ Object
Returns the value of attribute recipients.
-
#recurring ⇒ Object
FOR TRIGGER ONLY ! Type of trigger campaign.recurring = false means contact can receive the same Trigger campaign only once, & recurring = true means contact can receive the same Trigger campaign several times.
-
#reply_to ⇒ Object
Email on which campaign recipients will be able to reply to.
-
#scheduled_at ⇒ Object
UTC date-time on which the campaign has to run (YYYY-MM-DDTHH:mm:ss.SSSZ).
-
#send_at_best_time ⇒ Object
Set this to true if you want to send your campaign at best time.
-
#sender ⇒ Object
Returns the value of attribute sender.
-
#split_rule ⇒ Object
Add the size of your test groups.
-
#subject ⇒ Object
Subject of the campaign.
-
#subject_a ⇒ Object
Subject A of the campaign.
-
#subject_b ⇒ Object
Subject B of the campaign.
-
#tag ⇒ Object
Tag of the campaign.
-
#to_field ⇒ Object
To personalize the «To» Field.
-
#unsubscription_page_id ⇒ Object
Enter an unsubscription page id.
-
#update_form_id ⇒ Object
Mandatory if templateId is used containing the update_profile } tag.
-
#utm_campaign ⇒ Object
Customize the utm_campaign value.
-
#winner_criteria ⇒ Object
Choose the metrics that will determinate the winning version.
-
#winner_delay ⇒ Object
Choose the duration of the test in hours.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ UpdateEmailCampaign
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ UpdateEmailCampaign
Initializes the object
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 201 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } if attributes.has_key?(:'tag') self.tag = attributes[:'tag'] end if attributes.has_key?(:'sender') self.sender = attributes[:'sender'] end if attributes.has_key?(:'name') self.name = attributes[:'name'] end if attributes.has_key?(:'htmlContent') self.html_content = attributes[:'htmlContent'] end if attributes.has_key?(:'htmlUrl') self.html_url = attributes[:'htmlUrl'] end if attributes.has_key?(:'scheduledAt') self.scheduled_at = attributes[:'scheduledAt'] end if attributes.has_key?(:'subject') self.subject = attributes[:'subject'] end if attributes.has_key?(:'replyTo') self.reply_to = attributes[:'replyTo'] end if attributes.has_key?(:'toField') self.to_field = attributes[:'toField'] end if attributes.has_key?(:'recipients') self.recipients = attributes[:'recipients'] end if attributes.has_key?(:'attachmentUrl') self. = attributes[:'attachmentUrl'] end if attributes.has_key?(:'inlineImageActivation') self.inline_image_activation = attributes[:'inlineImageActivation'] else self.inline_image_activation = false end if attributes.has_key?(:'mirrorActive') self.mirror_active = attributes[:'mirrorActive'] end if attributes.has_key?(:'recurring') self.recurring = attributes[:'recurring'] else self.recurring = false end if attributes.has_key?(:'footer') self. = attributes[:'footer'] end if attributes.has_key?(:'header') self.header = attributes[:'header'] end if attributes.has_key?(:'utmCampaign') self.utm_campaign = attributes[:'utmCampaign'] end if attributes.has_key?(:'params') self.params = attributes[:'params'] end if attributes.has_key?(:'sendAtBestTime') self.send_at_best_time = attributes[:'sendAtBestTime'] end if attributes.has_key?(:'abTesting') self.ab_testing = attributes[:'abTesting'] else self.ab_testing = false end if attributes.has_key?(:'subjectA') self.subject_a = attributes[:'subjectA'] end if attributes.has_key?(:'subjectB') self.subject_b = attributes[:'subjectB'] end if attributes.has_key?(:'splitRule') self.split_rule = attributes[:'splitRule'] end if attributes.has_key?(:'winnerCriteria') self.winner_criteria = attributes[:'winnerCriteria'] end if attributes.has_key?(:'winnerDelay') self.winner_delay = attributes[:'winnerDelay'] end if attributes.has_key?(:'ipWarmupEnable') self.ip_warmup_enable = attributes[:'ipWarmupEnable'] else self.ip_warmup_enable = false end if attributes.has_key?(:'initialQuota') self.initial_quota = attributes[:'initialQuota'] end if attributes.has_key?(:'increaseRate') self.increase_rate = attributes[:'increaseRate'] end if attributes.has_key?(:'unsubscriptionPageId') self.unsubscription_page_id = attributes[:'unsubscriptionPageId'] end if attributes.has_key?(:'updateFormId') self.update_form_id = attributes[:'updateFormId'] end end |
Instance Attribute Details
#ab_testing ⇒ Object
Status of A/B Test. abTesting = false means it is disabled, & abTesting = true means it is enabled. ‘subjectA’, ‘subjectB’, ‘splitRule’, ‘winnerCriteria’ & ‘winnerDelay’ will be considered if abTesting is set to true. ‘subject’ if passed is ignored. Can be set to true only if ‘sendAtBestTime’ is ‘false’. You will be able to set up two subject lines for your campaign and send them to a random sample of your total recipients. Half of the test group will receive version A, and the other half will receive version B
73 74 75 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 73 def ab_testing @ab_testing end |
#attachment_url ⇒ Object
Absolute url of the attachment (no local file). Extension allowed: xlsx, xls, ods, docx, docm, doc, csv, pdf, txt, gif, jpg, jpeg, png, tif, tiff, rtf, bmp, cgm, css, shtml, html, htm, zip, xml, ppt, pptx, tar, ez, ics, mobi, msg, pub and eps
46 47 48 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 46 def @attachment_url end |
#footer ⇒ Object
Footer of the email campaign
58 59 60 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 58 def @footer end |
#header ⇒ Object
Header of the email campaign
61 62 63 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 61 def header @header end |
#html_content ⇒ Object
Body of the message (HTML version). If the campaign is designed using Drag & Drop editor via HTML content, then the design page will not have Drag & Drop editor access for that campaign. REQUIRED if htmlUrl is empty
26 27 28 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 26 def html_content @html_content end |
#html_url ⇒ Object
Url which contents the body of the email message. REQUIRED if htmlContent is empty
29 30 31 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 29 def html_url @html_url end |
#increase_rate ⇒ Object
Set a percentage increase rate for warming up your ip. We recommend you set the increase rate to 30% per day. If you want to send the same number of emails every day, set the daily increase value to 0%.
97 98 99 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 97 def increase_rate @increase_rate end |
#initial_quota ⇒ Object
Set an initial quota greater than 1 for warming up your ip. We recommend you set a value of 3000.
94 95 96 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 94 def initial_quota @initial_quota end |
#inline_image_activation ⇒ Object
Status of inline image. inlineImageActivation = false means image can’t be embedded, & inlineImageActivation = true means image can be embedded, in the email. You cannot send a campaign of more than 4MB with images embedded in the email. Campaigns with the images embedded in the email must be sent to less than 5000 contacts.
49 50 51 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 49 def inline_image_activation @inline_image_activation end |
#ip_warmup_enable ⇒ Object
Available for dedicated ip clients. Set this to true if you wish to warm up your ip.
91 92 93 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 91 def ip_warmup_enable @ip_warmup_enable end |
#mirror_active ⇒ Object
Status of mirror links in campaign. mirrorActive = false means mirror links are deactivated, & mirrorActive = true means mirror links are activated, in the campaign
52 53 54 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 52 def mirror_active @mirror_active end |
#name ⇒ Object
Name of the campaign
23 24 25 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 23 def name @name end |
#params ⇒ Object
Pass the set of attributes to customize the type ‘classic’ campaign. For example, "LNAME":"Doe". The ‘params’ field will get updated, only if the campaign is in New Template Language, else ignored. The New Template Language is dependent on the values of ‘subject’, ‘htmlContent/htmlUrl’, ‘sender.name’ & ‘toField’
67 68 69 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 67 def params @params end |
#recipients ⇒ Object
Returns the value of attribute recipients.
43 44 45 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 43 def recipients @recipients end |
#recurring ⇒ Object
FOR TRIGGER ONLY ! Type of trigger campaign.recurring = false means contact can receive the same Trigger campaign only once, & recurring = true means contact can receive the same Trigger campaign several times
55 56 57 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 55 def recurring @recurring end |
#reply_to ⇒ Object
Email on which campaign recipients will be able to reply to
38 39 40 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 38 def reply_to @reply_to end |
#scheduled_at ⇒ Object
UTC date-time on which the campaign has to run (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. If sendAtBestTime is set to true, your campaign will be sent according to the date passed (ignoring the time part).
32 33 34 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 32 def scheduled_at @scheduled_at end |
#send_at_best_time ⇒ Object
Set this to true if you want to send your campaign at best time. Note:- if true, warmup ip will be disabled.
70 71 72 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 70 def send_at_best_time @send_at_best_time end |
#sender ⇒ Object
Returns the value of attribute sender.
20 21 22 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 20 def sender @sender end |
#split_rule ⇒ Object
Add the size of your test groups. Considered if abTesting = true. We’ll send version A and B to a random sample of recipients, and then the winning version to everyone else
82 83 84 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 82 def split_rule @split_rule end |
#subject ⇒ Object
Subject of the campaign
35 36 37 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 35 def subject @subject end |
#subject_a ⇒ Object
Subject A of the campaign. Considered if abTesting = true. subjectA & subjectB should have unique value
76 77 78 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 76 def subject_a @subject_a end |
#subject_b ⇒ Object
Subject B of the campaign. Considered if abTesting = true. subjectA & subjectB should have unique value
79 80 81 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 79 def subject_b @subject_b end |
#tag ⇒ Object
Tag of the campaign
18 19 20 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 18 def tag @tag end |
#to_field ⇒ Object
To personalize the «To» Field. If you want to include the first name and last name of your recipient, add FNAME LNAME. These contact attributes must already exist in your Brevo account. If input parameter ‘params’ used please use BrevoRuby::UpdateEmailCampaign.{contact{contact.FNAME} BrevoRuby::UpdateEmailCampaign.{contact{contact.LNAME} for personalization
41 42 43 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 41 def to_field @to_field end |
#unsubscription_page_id ⇒ Object
Enter an unsubscription page id. The page id is a 24 digit alphanumeric id that can be found in the URL when editing the page.
100 101 102 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 100 def unsubscription_page_id @unsubscription_page_id end |
#update_form_id ⇒ Object
Mandatory if templateId is used containing the update_profile } tag. Enter an update profile form id. The form id is a 24 digit alphanumeric id that can be found in the URL when editing the form.
103 104 105 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 103 def update_form_id @update_form_id end |
#utm_campaign ⇒ Object
Customize the utm_campaign value. If this field is empty, the campaign name will be used. Only alphanumeric characters and spaces are allowed
64 65 66 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 64 def utm_campaign @utm_campaign end |
#winner_criteria ⇒ Object
Choose the metrics that will determinate the winning version. Considered if ‘splitRule’ >= 1 and < 50. If splitRule = 50, ‘winnerCriteria’ is ignored if passed or alreday exist in record
85 86 87 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 85 def winner_criteria @winner_criteria end |
#winner_delay ⇒ Object
Choose the duration of the test in hours. Maximum is 7 days, pass 24*7 = 168 hours. The winning version will be sent at the end of the test. Considered if ‘splitRule’ >= 1 and < 50. If splitRule = 50, ‘winnerDelay’ is ignored if passed or alreday exist in record
88 89 90 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 88 def winner_delay @winner_delay end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 128 def self.attribute_map { :'tag' => :'tag', :'sender' => :'sender', :'name' => :'name', :'html_content' => :'htmlContent', :'html_url' => :'htmlUrl', :'scheduled_at' => :'scheduledAt', :'subject' => :'subject', :'reply_to' => :'replyTo', :'to_field' => :'toField', :'recipients' => :'recipients', :'attachment_url' => :'attachmentUrl', :'inline_image_activation' => :'inlineImageActivation', :'mirror_active' => :'mirrorActive', :'recurring' => :'recurring', :'footer' => :'footer', :'header' => :'header', :'utm_campaign' => :'utmCampaign', :'params' => :'params', :'send_at_best_time' => :'sendAtBestTime', :'ab_testing' => :'abTesting', :'subject_a' => :'subjectA', :'subject_b' => :'subjectB', :'split_rule' => :'splitRule', :'winner_criteria' => :'winnerCriteria', :'winner_delay' => :'winnerDelay', :'ip_warmup_enable' => :'ipWarmupEnable', :'initial_quota' => :'initialQuota', :'increase_rate' => :'increaseRate', :'unsubscription_page_id' => :'unsubscriptionPageId', :'update_form_id' => :'updateFormId' } end |
.swagger_types ⇒ Object
Attribute type mapping.
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 164 def self.swagger_types { :'tag' => :'String', :'sender' => :'UpdateEmailCampaignSender', :'name' => :'String', :'html_content' => :'String', :'html_url' => :'String', :'scheduled_at' => :'String', :'subject' => :'String', :'reply_to' => :'String', :'to_field' => :'String', :'recipients' => :'UpdateEmailCampaignRecipients', :'attachment_url' => :'String', :'inline_image_activation' => :'BOOLEAN', :'mirror_active' => :'BOOLEAN', :'recurring' => :'BOOLEAN', :'footer' => :'String', :'header' => :'String', :'utm_campaign' => :'String', :'params' => :'Object', :'send_at_best_time' => :'BOOLEAN', :'ab_testing' => :'BOOLEAN', :'subject_a' => :'String', :'subject_b' => :'String', :'split_rule' => :'Integer', :'winner_criteria' => :'String', :'winner_delay' => :'Integer', :'ip_warmup_enable' => :'BOOLEAN', :'initial_quota' => :'Integer', :'increase_rate' => :'Integer', :'unsubscription_page_id' => :'String', :'update_form_id' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 435 def ==(o) return true if self.equal?(o) self.class == o.class && tag == o.tag && sender == o.sender && name == o.name && html_content == o.html_content && html_url == o.html_url && scheduled_at == o.scheduled_at && subject == o.subject && reply_to == o.reply_to && to_field == o.to_field && recipients == o.recipients && == o. && inline_image_activation == o.inline_image_activation && mirror_active == o.mirror_active && recurring == o.recurring && == o. && header == o.header && utm_campaign == o.utm_campaign && params == o.params && send_at_best_time == o.send_at_best_time && ab_testing == o.ab_testing && subject_a == o.subject_a && subject_b == o.subject_b && split_rule == o.split_rule && winner_criteria == o.winner_criteria && winner_delay == o.winner_delay && ip_warmup_enable == o.ip_warmup_enable && initial_quota == o.initial_quota && increase_rate == o.increase_rate && unsubscription_page_id == o.unsubscription_page_id && update_form_id == o.update_form_id end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 506 def _deserialize(type, value) case type.to_sym when :DateTime DateTime.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :BOOLEAN if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model temp_model = BrevoRuby.const_get(type).new temp_model.build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
572 573 574 575 576 577 578 579 580 581 582 583 584 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 572 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 485 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(o) ⇒ Boolean
472 473 474 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 472 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
478 479 480 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 478 def hash [tag, sender, name, html_content, html_url, scheduled_at, subject, reply_to, to_field, recipients, , inline_image_activation, mirror_active, recurring, , header, utm_campaign, params, send_at_best_time, ab_testing, subject_a, subject_b, split_rule, winner_criteria, winner_delay, ip_warmup_enable, initial_quota, increase_rate, unsubscription_page_id, update_form_id].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 338 def list_invalid_properties invalid_properties = Array.new if !@split_rule.nil? && @split_rule > 50 invalid_properties.push('invalid value for "split_rule", must be smaller than or equal to 50.') end if !@split_rule.nil? && @split_rule < 1 invalid_properties.push('invalid value for "split_rule", must be greater than or equal to 1.') end if !@winner_delay.nil? && @winner_delay > 168 invalid_properties.push('invalid value for "winner_delay", must be smaller than or equal to 168.') end if !@winner_delay.nil? && @winner_delay < 1 invalid_properties.push('invalid value for "winner_delay", must be greater than or equal to 1.') end if !@increase_rate.nil? && @increase_rate > 100 invalid_properties.push('invalid value for "increase_rate", must be smaller than or equal to 100.') end if !@increase_rate.nil? && @increase_rate < 0 invalid_properties.push('invalid value for "increase_rate", must be greater than or equal to 0.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
552 553 554 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 552 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
558 559 560 561 562 563 564 565 566 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 558 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) next if value.nil? hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
546 547 548 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 546 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
369 370 371 372 373 374 375 376 377 378 379 |
# File 'lib/brevo-ruby/models/update_email_campaign.rb', line 369 def valid? return false if !@split_rule.nil? && @split_rule > 50 return false if !@split_rule.nil? && @split_rule < 1 winner_criteria_validator = EnumAttributeValidator.new('String', ['open', 'click']) return false unless winner_criteria_validator.valid?(@winner_criteria) return false if !@winner_delay.nil? && @winner_delay > 168 return false if !@winner_delay.nil? && @winner_delay < 1 return false if !@increase_rate.nil? && @increase_rate > 100 return false if !@increase_rate.nil? && @increase_rate < 0 true end |