class AutotaskRuby::Contact

Represents the Autotask Entity Contact

Constants

FIELDS

Public Instance Methods

email() click to toggle source
# File lib/autotask_ruby/contact.rb, line 21
def email
  @e_mail_address
end
full_name() click to toggle source
# File lib/autotask_ruby/contact.rb, line 17
def full_name
  [@first_name, @last_name].join(' ')
end
post_initialize() click to toggle source
# File lib/autotask_ruby/contact.rb, line 13
def post_initialize
  belongs_to :account
end