Class: Ingenico::Connect::SDK::Domain::Dispute::DisputeOutput
- Inherits:
-
Ingenico::Connect::SDK::DataObject
- Object
- Ingenico::Connect::SDK::DataObject
- Ingenico::Connect::SDK::Domain::Dispute::DisputeOutput
- Defined in:
- lib/ingenico/connect/sdk/domain/dispute/dispute_output.rb
Instance Attribute Summary collapse
-
#amount_of_money ⇒ Ingenico::Connect::SDK::Domain::Definitions::AmountOfMoney
The current value of amount_of_money.
-
#contact_person ⇒ String
The current value of contact_person.
-
#creation_details ⇒ Ingenico::Connect::SDK::Domain::Dispute::DisputeCreationDetail
The current value of creation_details.
-
#email_address ⇒ String
The current value of email_address.
-
#files ⇒ Array<Ingenico::Connect::SDK::Domain::File::HostedFile>
The current value of files.
-
#reference ⇒ Ingenico::Connect::SDK::Domain::Dispute::DisputeReference
The current value of reference.
-
#reply_to ⇒ String
The current value of reply_to.
-
#request_message ⇒ String
The current value of request_message.
-
#response_message ⇒ String
The current value of response_message.
Instance Method Summary collapse
Methods inherited from Ingenico::Connect::SDK::DataObject
Instance Attribute Details
#amount_of_money ⇒ Ingenico::Connect::SDK::Domain::Definitions::AmountOfMoney
Returns the current value of amount_of_money.
24 25 26 |
# File 'lib/ingenico/connect/sdk/domain/dispute/dispute_output.rb', line 24 def amount_of_money @amount_of_money end |
#contact_person ⇒ String
Returns the current value of contact_person.
24 25 26 |
# File 'lib/ingenico/connect/sdk/domain/dispute/dispute_output.rb', line 24 def contact_person @contact_person end |
#creation_details ⇒ Ingenico::Connect::SDK::Domain::Dispute::DisputeCreationDetail
Returns the current value of creation_details.
24 25 26 |
# File 'lib/ingenico/connect/sdk/domain/dispute/dispute_output.rb', line 24 def creation_details @creation_details end |
#email_address ⇒ String
Returns the current value of email_address.
24 25 26 |
# File 'lib/ingenico/connect/sdk/domain/dispute/dispute_output.rb', line 24 def email_address @email_address end |
#files ⇒ Array<Ingenico::Connect::SDK::Domain::File::HostedFile>
Returns the current value of files.
24 25 26 |
# File 'lib/ingenico/connect/sdk/domain/dispute/dispute_output.rb', line 24 def files @files end |
#reference ⇒ Ingenico::Connect::SDK::Domain::Dispute::DisputeReference
Returns the current value of reference.
24 25 26 |
# File 'lib/ingenico/connect/sdk/domain/dispute/dispute_output.rb', line 24 def reference @reference end |
#reply_to ⇒ String
Returns the current value of reply_to.
24 25 26 |
# File 'lib/ingenico/connect/sdk/domain/dispute/dispute_output.rb', line 24 def reply_to @reply_to end |
#request_message ⇒ String
Returns the current value of request_message.
24 25 26 |
# File 'lib/ingenico/connect/sdk/domain/dispute/dispute_output.rb', line 24 def @request_message end |
#response_message ⇒ String
Returns the current value of response_message.
24 25 26 |
# File 'lib/ingenico/connect/sdk/domain/dispute/dispute_output.rb', line 24 def @response_message end |
Instance Method Details
#from_hash(hash) ⇒ Object
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/ingenico/connect/sdk/domain/dispute/dispute_output.rb', line 59 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 = Ingenico::Connect::SDK::Domain::Definitions::AmountOfMoney.new_from_hash(hash['amountOfMoney']) end if hash.has_key? 'contactPerson' @contact_person = hash['contactPerson'] end if hash.has_key? 'creationDetails' raise TypeError, "value '%s' is not a Hash" % [hash['creationDetails']] unless hash['creationDetails'].is_a? Hash @creation_details = Ingenico::Connect::SDK::Domain::Dispute::DisputeCreationDetail.new_from_hash(hash['creationDetails']) end if hash.has_key? 'emailAddress' @email_address = hash['emailAddress'] end if hash.has_key? 'files' raise TypeError, "value '%s' is not an Array" % [hash['files']] unless hash['files'].is_a? Array @files = [] hash['files'].each do |e| @files << Ingenico::Connect::SDK::Domain::File::HostedFile.new_from_hash(e) end end if hash.has_key? 'reference' raise TypeError, "value '%s' is not a Hash" % [hash['reference']] unless hash['reference'].is_a? Hash @reference = Ingenico::Connect::SDK::Domain::Dispute::DisputeReference.new_from_hash(hash['reference']) end if hash.has_key? 'replyTo' @reply_to = hash['replyTo'] end if hash.has_key? 'requestMessage' @request_message = hash['requestMessage'] end if hash.has_key? 'responseMessage' @response_message = hash['responseMessage'] end end |
#to_h ⇒ Hash
45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/ingenico/connect/sdk/domain/dispute/dispute_output.rb', line 45 def to_h hash = super hash['amountOfMoney'] = @amount_of_money.to_h unless @amount_of_money.nil? hash['contactPerson'] = @contact_person unless @contact_person.nil? hash['creationDetails'] = @creation_details.to_h unless @creation_details.nil? hash['emailAddress'] = @email_address unless @email_address.nil? hash['files'] = @files.collect{|val| val.to_h} unless @files.nil? hash['reference'] = @reference.to_h unless @reference.nil? hash['replyTo'] = @reply_to unless @reply_to.nil? hash['requestMessage'] = @request_message unless @request_message.nil? hash['responseMessage'] = @response_message unless @response_message.nil? hash end |