Class: YSM::UserManagementService::BillingUser

Inherits:
Object
  • Object
show all
Defined in:
lib/ysm4r/v1/UserManagementService.rb,
lib/ysm4r/v2/UserManagementService.rb

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(email = nil, firstName = nil, lastName = nil, middleInitial = nil, phone = nil) ⇒ BillingUser

Returns a new instance of BillingUser.



104
105
106
107
108
109
110
# File 'lib/ysm4r/v1/UserManagementService.rb', line 104

def initialize(email = nil, firstName = nil, lastName = nil, middleInitial = nil, phone = nil)
  @email = email
  @firstName = firstName
  @lastName = lastName
  @middleInitial = middleInitial
  @phone = phone
end

Instance Attribute Details

#emailObject

Returns the value of attribute email.



98
99
100
# File 'lib/ysm4r/v1/UserManagementService.rb', line 98

def email
  @email
end

#firstNameObject

Returns the value of attribute firstName.



99
100
101
# File 'lib/ysm4r/v1/UserManagementService.rb', line 99

def firstName
  @firstName
end

#lastNameObject

Returns the value of attribute lastName.



100
101
102
# File 'lib/ysm4r/v1/UserManagementService.rb', line 100

def lastName
  @lastName
end

#middleInitialObject

Returns the value of attribute middleInitial.



101
102
103
# File 'lib/ysm4r/v1/UserManagementService.rb', line 101

def middleInitial
  @middleInitial
end

#phoneObject

Returns the value of attribute phone.



102
103
104
# File 'lib/ysm4r/v1/UserManagementService.rb', line 102

def phone
  @phone
end