class QuestionproRails::EmailListStatistic

Attributes

active[R]
bounced[R]
pendin_verification[R]
total[R]
unsubscribed[R]

Public Class Methods

new(attributes) click to toggle source
# File lib/questionpro_rails/email_list_statistic.rb, line 7
def initialize (attributes)
  @unsubscribed        = attributes['unsubscribed']
  @total               = attributes['total']
  @active              = attributes['active']
  @pendin_verification = attributes['pendinVerification']
  @bounced             = attributes['bounced']
end