Class: PaysonAPI::V1::Sender
- Inherits:
-
Object
- Object
- PaysonAPI::V1::Sender
- Defined in:
- lib/payson_api/v1/sender.rb
Constant Summary collapse
- FORMAT_STRING =
'sender%s'
Instance Attribute Summary collapse
-
#email ⇒ Object
Returns the value of attribute email.
-
#first_name ⇒ Object
Returns the value of attribute first_name.
-
#last_name ⇒ Object
Returns the value of attribute last_name.
Class Method Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#email ⇒ Object
Returns the value of attribute email.
9 10 11 |
# File 'lib/payson_api/v1/sender.rb', line 9 def email @email end |
#first_name ⇒ Object
Returns the value of attribute first_name.
9 10 11 |
# File 'lib/payson_api/v1/sender.rb', line 9 def first_name @first_name end |
#last_name ⇒ Object
Returns the value of attribute last_name.
9 10 11 |
# File 'lib/payson_api/v1/sender.rb', line 9 def last_name @last_name end |
Class Method Details
.parse(data) ⇒ Object
19 20 21 22 23 24 25 |
# File 'lib/payson_api/v1/sender.rb', line 19 def self.parse(data) new.tap do |s| s.email = data[FORMAT_STRING % 'email'] s.first_name = CGI.unescape(data[FORMAT_STRING % 'FirstName'].to_s) s.last_name = CGI.unescape(data[FORMAT_STRING % 'LastName'].to_s) end end |
Instance Method Details
#to_hash ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/payson_api/v1/sender.rb', line 11 def to_hash {}.tap do |hash| hash[FORMAT_STRING % 'Email'] = @email hash[FORMAT_STRING % 'FirstName'] = @first_name hash[FORMAT_STRING % 'LastName'] = @last_name end end |