Class: Worldline::Connect::SDK::V1::Domain::PaymentOperation
- Inherits:
-
Domain::DataObject
- Object
- Domain::DataObject
- Worldline::Connect::SDK::V1::Domain::PaymentOperation
- Defined in:
- lib/worldline/connect/sdk/v1/domain/payment_operation.rb
Instance Attribute Summary collapse
-
#amount_of_money ⇒ Worldline::Connect::SDK::V1::Domain::AmountOfMoney
The current value of amount_of_money.
-
#id ⇒ String
The current value of id.
-
#status ⇒ String
The current value of status.
-
#timestamp ⇒ String
The current value of timestamp.
-
#type ⇒ String
The current value of type.
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#amount_of_money ⇒ Worldline::Connect::SDK::V1::Domain::AmountOfMoney
Returns the current value of amount_of_money.
18 19 20 |
# File 'lib/worldline/connect/sdk/v1/domain/payment_operation.rb', line 18 def amount_of_money @amount_of_money end |
#id ⇒ String
Returns the current value of id.
18 19 20 |
# File 'lib/worldline/connect/sdk/v1/domain/payment_operation.rb', line 18 def id @id end |
#status ⇒ String
Returns the current value of status.
18 19 20 |
# File 'lib/worldline/connect/sdk/v1/domain/payment_operation.rb', line 18 def status @status end |
#timestamp ⇒ String
Returns the current value of timestamp.
18 19 20 |
# File 'lib/worldline/connect/sdk/v1/domain/payment_operation.rb', line 18 def end |
#type ⇒ String
Returns the current value of type.
18 19 20 |
# File 'lib/worldline/connect/sdk/v1/domain/payment_operation.rb', line 18 def type @type end |
Instance Method Details
#from_hash(hash) ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/worldline/connect/sdk/v1/domain/payment_operation.rb', line 41 def from_hash(hash) super if hash.has_key? 'amountOfMoney' raise TypeError, "value '%s' is not a Hash" % [hash['amountOfMoney']] unless hash['amountOfMoney'].is_a? Hash @amount_of_money = Worldline::Connect::SDK::V1::Domain::AmountOfMoney.new_from_hash(hash['amountOfMoney']) end if hash.has_key? 'id' @id = hash['id'] end if hash.has_key? 'status' @status = hash['status'] end if hash.has_key? 'timestamp' = hash['timestamp'] end if hash.has_key? 'type' @type = hash['type'] end end |
#to_h ⇒ Hash
31 32 33 34 35 36 37 38 39 |
# File 'lib/worldline/connect/sdk/v1/domain/payment_operation.rb', line 31 def to_h hash = super hash['amountOfMoney'] = @amount_of_money.to_h unless @amount_of_money.nil? hash['id'] = @id unless @id.nil? hash['status'] = @status unless @status.nil? hash['timestamp'] = unless .nil? hash['type'] = @type unless @type.nil? hash end |