Class: OnlinePayments::SDK::Domain::OrderStatusOutput
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::OrderStatusOutput
- Defined in:
- lib/onlinepayments/sdk/domain/order_status_output.rb
Instance Attribute Summary collapse
-
#errors ⇒ Array<OnlinePayments::SDK::Domain::APIError>
The current value of errors.
-
#is_cancellable ⇒ true/false
The current value of is_cancellable.
-
#status_category ⇒ String
The current value of status_category.
-
#status_code ⇒ Integer
The current value of status_code.
-
#status_code_change_date_time ⇒ String
The current value of status_code_change_date_time.
Instance Method Summary collapse
Methods inherited from OnlinePayments::SDK::DataObject
Instance Attribute Details
#errors ⇒ Array<OnlinePayments::SDK::Domain::APIError>
Returns the current value of errors.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/order_status_output.rb', line 15 def errors @errors end |
#is_cancellable ⇒ true/false
Returns the current value of is_cancellable.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/order_status_output.rb', line 15 def is_cancellable @is_cancellable end |
#status_category ⇒ String
Returns the current value of status_category.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/order_status_output.rb', line 15 def status_category @status_category end |
#status_code ⇒ Integer
Returns the current value of status_code.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/order_status_output.rb', line 15 def status_code @status_code end |
#status_code_change_date_time ⇒ String
Returns the current value of status_code_change_date_time.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/order_status_output.rb', line 15 def status_code_change_date_time @status_code_change_date_time end |
Instance Method Details
#from_hash(hash) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/onlinepayments/sdk/domain/order_status_output.rb', line 33 def from_hash(hash) super if hash.key? 'errors' raise TypeError, "value '%s' is not an Array" % [hash['errors']] unless hash['errors'].is_a? Array @errors = [] hash['errors'].each do |e| @errors << OnlinePayments::SDK::Domain::APIError.new_from_hash(e) end end @is_cancellable = hash['isCancellable'] if hash.key? 'isCancellable' @status_category = hash['statusCategory'] if hash.key? 'statusCategory' @status_code = hash['statusCode'] if hash.key? 'statusCode' @status_code_change_date_time = hash['statusCodeChangeDateTime'] if hash.key? 'statusCodeChangeDateTime' end |
#to_h ⇒ Hash
23 24 25 26 27 28 29 30 31 |
# File 'lib/onlinepayments/sdk/domain/order_status_output.rb', line 23 def to_h hash = super hash['errors'] = @errors.collect(&:to_h) if @errors hash['isCancellable'] = @is_cancellable unless @is_cancellable.nil? hash['statusCategory'] = @status_category unless @status_category.nil? hash['statusCode'] = @status_code unless @status_code.nil? hash['statusCodeChangeDateTime'] = @status_code_change_date_time unless @status_code_change_date_time.nil? hash end |