class Honeybadger::Api::User

Attributes

email[R]
name[R]

Public Class Methods

new(name, email) click to toggle source

Public: Build a new instance of User

name - the name of the user email - the email address of the user

Returns a new User

# File lib/honeybadger-api/user.rb, line 13
def initialize(name, email)
  @name = name
  @email = email
end