class Softlayer::Account::Contact

Constants

SERVICE

Attributes

account[RW]
account_id[RW]
address1[RW]
address2[RW]
alternate_phone[RW]
city[RW]
company_name[RW]
country[RW]
create_date[RW]
email[RW]
fax_phone[RW]
first_name[RW]
id[RW]
job_title[RW]
last_name[RW]
modify_date[RW]
office_phone[RW]
postal_code[RW]
profile_name[RW]
state[RW]
type[RW]
type_id[RW]
url[RW]

Public Class Methods

create_object(message) click to toggle source

template_object

# File lib/softlayer/account/contact.rb, line 31
def self.create_object(message)
  request(:create_object, Softlayer::Account::Contact, message)
end
get_all_contact_types() click to toggle source
# File lib/softlayer/account/contact.rb, line 48
def self.get_all_contact_types
  request(:get_all_contact_types, Array[Softlayer::Account::Contact::Type])
end

Public Instance Methods

delete_object() click to toggle source
# File lib/softlayer/account/contact.rb, line 35
def delete_object
  request(:delete_object, Boolean)
end
edit_object(message) click to toggle source

template_object

# File lib/softlayer/account/contact.rb, line 40
def edit_object(message)
  request(:edit_object, Boolean, message)
end
get_account() click to toggle source
# File lib/softlayer/account/contact.rb, line 44
def get_account
  request(:get_account, Softlayer::Account)
end
get_object() click to toggle source
# File lib/softlayer/account/contact.rb, line 52
def get_object
  request(:get_object, Softlayer::Account::Contact)
end
get_type() click to toggle source
# File lib/softlayer/account/contact.rb, line 56
def get_type
  request(:get_type, Softlayer::Account::Contact::Type)
end