Class: Worldline::Connect::SDK::V1::Domain::CreateDisputeRequest

Inherits:
Domain::DataObject show all
Defined in:
lib/worldline/connect/sdk/v1/domain/create_dispute_request.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Domain::DataObject

new_from_hash

Instance Attribute Details

#amount_of_moneyWorldline::Connect::SDK::V1::Domain::AmountOfMoney

Returns the current value of amount_of_money.

Returns:



18
19
20
# File 'lib/worldline/connect/sdk/v1/domain/create_dispute_request.rb', line 18

def amount_of_money
  @amount_of_money
end

#contact_personString

Returns the current value of contact_person.

Returns:

  • (String)

    the current value of contact_person



18
19
20
# File 'lib/worldline/connect/sdk/v1/domain/create_dispute_request.rb', line 18

def contact_person
  @contact_person
end

#email_addressString

Returns the current value of email_address.

Returns:

  • (String)

    the current value of email_address



18
19
20
# File 'lib/worldline/connect/sdk/v1/domain/create_dispute_request.rb', line 18

def email_address
  @email_address
end

#reply_toString

Returns the current value of reply_to.

Returns:

  • (String)

    the current value of reply_to



18
19
20
# File 'lib/worldline/connect/sdk/v1/domain/create_dispute_request.rb', line 18

def reply_to
  @reply_to
end

#request_messageString

Returns the current value of request_message.

Returns:

  • (String)

    the current value of request_message



18
19
20
# File 'lib/worldline/connect/sdk/v1/domain/create_dispute_request.rb', line 18

def request_message
  @request_message
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/create_dispute_request.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? 'contactPerson'
    @contact_person = hash['contactPerson']
  end
  if hash.has_key? 'emailAddress'
    @email_address = hash['emailAddress']
  end
  if hash.has_key? 'replyTo'
    @reply_to = hash['replyTo']
  end
  if hash.has_key? 'requestMessage'
    @request_message = hash['requestMessage']
  end
end

#to_hHash

Returns:

  • (Hash)


31
32
33
34
35
36
37
38
39
# File 'lib/worldline/connect/sdk/v1/domain/create_dispute_request.rb', line 31

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['emailAddress'] = @email_address unless @email_address.nil?
  hash['replyTo'] = @reply_to unless @reply_to.nil?
  hash['requestMessage'] = @request_message unless @request_message.nil?
  hash
end