module SendGridWebApi::Modules

Public Instance Methods

apikey() click to toggle source
# File lib/web_api/modules.rb, line 51
def apikey
  @apikey ||= SendGridWebApi::ApiKey.new(@api_key)
end
blocks() click to toggle source
# File lib/web_api/modules.rb, line 11
def blocks
  @block_instance ||= Block.new(@api_key)
end
bounces() click to toggle source
# File lib/web_api/modules.rb, line 7
def bounces
  @bounce_instance ||= Bounce.new(@api_key)
end
event_notification() click to toggle source
# File lib/web_api/modules.rb, line 31
def event_notification
  @event_notification_instance ||= EventNotification.new(@api_key)
end
invalid_emails() click to toggle source
# File lib/web_api/modules.rb, line 19
def invalid_emails
  @invalid_email_instance ||= InvalidEmail.new(@api_key)
end
mail() click to toggle source
# File lib/web_api/modules.rb, line 43
def mail
  @mail_instance ||= Mail.new(@api_key)
end
parse_email() click to toggle source
# File lib/web_api/modules.rb, line 27
def parse_email
  @parse_email_instance ||= ParseEmail.new(@api_key)
end
profile() click to toggle source
# File lib/web_api/modules.rb, line 39
def profile
  @profile_instance ||= Profile.new(@api_key)
end
spam() click to toggle source
# File lib/web_api/modules.rb, line 15
def spam
  @spam_instance ||= Spam.new(@api_key)
end
stats() click to toggle source
# File lib/web_api/modules.rb, line 35
def stats
  @stats_instance ||= Stats.new(@api_key)
end
sub_user() click to toggle source
# File lib/web_api/modules.rb, line 47
def sub_user
  @sub_user ||= SendGridWebApi::SubUser.new(@api_key)
end
unsubscribes() click to toggle source
# File lib/web_api/modules.rb, line 23
def unsubscribes
  @unsubscribe_instance ||= Unsubscribe.new(@api_key)
end