Class: YSM::UserManagementService::BillingUser
- Inherits:
-
Object
- Object
- YSM::UserManagementService::BillingUser
- Defined in:
- lib/ysm4r/v1/UserManagementService.rb,
lib/ysm4r/v2/UserManagementService.rb
Overview
http://marketing.ews.yahooapis.com/V2BillingUser
Instance Attribute Summary collapse
-
#email ⇒ Object
Returns the value of attribute email.
-
#firstName ⇒ Object
Returns the value of attribute firstName.
-
#lastName ⇒ Object
Returns the value of attribute lastName.
-
#middleInitial ⇒ Object
Returns the value of attribute middleInitial.
-
#phone ⇒ Object
Returns the value of attribute phone.
Instance Method Summary collapse
-
#initialize(email = nil, firstName = nil, lastName = nil, middleInitial = nil, phone = nil) ⇒ BillingUser
constructor
A new instance of BillingUser.
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
#email ⇒ Object
Returns the value of attribute email.
98 99 100 |
# File 'lib/ysm4r/v1/UserManagementService.rb', line 98 def email @email end |
#firstName ⇒ Object
Returns the value of attribute firstName.
99 100 101 |
# File 'lib/ysm4r/v1/UserManagementService.rb', line 99 def firstName @firstName end |
#lastName ⇒ Object
Returns the value of attribute lastName.
100 101 102 |
# File 'lib/ysm4r/v1/UserManagementService.rb', line 100 def lastName @lastName end |
#middleInitial ⇒ Object
Returns the value of attribute middleInitial.
101 102 103 |
# File 'lib/ysm4r/v1/UserManagementService.rb', line 101 def middleInitial @middleInitial end |
#phone ⇒ Object
Returns the value of attribute phone.
102 103 104 |
# File 'lib/ysm4r/v1/UserManagementService.rb', line 102 def phone @phone end |