Class: Paymill::Base
- Inherits:
-
Object
- Object
- Paymill::Base
- Includes:
- Operations::All, Operations::Create, Operations::Find
- Defined in:
- lib/paymill/base.rb
Direct Known Subclasses
Client, Offer, Payment, Preauthorization, Refund, Subscription, Transaction, Webhook
Instance Attribute Summary collapse
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#updated_at ⇒ Object
Returns the value of attribute updated_at.
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ Base
constructor
Initializes the object using the given attributes.
-
#parse_timestamps ⇒ Object
Parses UNIX timestamps and creates Time objects.
-
#set_attributes(attributes) ⇒ Object
Sets the attributes.
Methods included from Operations::Find
Methods included from Operations::Create
Methods included from Operations::All
Constructor Details
permalink #initialize(attributes = {}) ⇒ Base
Initializes the object using the given attributes
12 13 14 15 |
# File 'lib/paymill/base.rb', line 12 def initialize(attributes = {}) set_attributes(attributes) end |
Instance Attribute Details
permalink #created_at ⇒ Object
Returns the value of attribute created_at.
7 8 9 |
# File 'lib/paymill/base.rb', line 7 def created_at @created_at end |
permalink #updated_at ⇒ Object
Returns the value of attribute updated_at.
7 8 9 |
# File 'lib/paymill/base.rb', line 7 def updated_at @updated_at end |
Instance Method Details
permalink #parse_timestamps ⇒ Object
Parses UNIX timestamps and creates Time objects.
27 28 29 30 |
# File 'lib/paymill/base.rb', line 27 def @created_at = Time.at(created_at) if created_at @updated_at = Time.at(updated_at) if updated_at end |
permalink #set_attributes(attributes) ⇒ Object
Sets the attributes
20 21 22 23 24 |
# File 'lib/paymill/base.rb', line 20 def set_attributes(attributes) attributes.each_pair do |key, value| instance_variable_set("@#{key}", value) end end |