Class: Worldline::Acquiring::SDK::V1::Domain::ApiRefundResource

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Domain::DataObject

new_from_hash

Instance Attribute Details

#card_payment_dataWorldline::Acquiring::SDK::V1::Domain::CardPaymentDataForResource

Returns the current value of card_payment_data.

Returns:



27
28
29
# File 'lib/worldline/acquiring/sdk/v1/domain/api_refund_resource.rb', line 27

def card_payment_data
  @card_payment_data
end

#initial_authorization_codeString

Returns the current value of initial_authorization_code.

Returns:

  • (String)

    the current value of initial_authorization_code



27
28
29
# File 'lib/worldline/acquiring/sdk/v1/domain/api_refund_resource.rb', line 27

def initial_authorization_code
  @initial_authorization_code
end

#operationsArray<Worldline::Acquiring::SDK::V1::Domain::SubOperationForRefund>

Returns the current value of operations.

Returns:



27
28
29
# File 'lib/worldline/acquiring/sdk/v1/domain/api_refund_resource.rb', line 27

def operations
  @operations
end

#referenced_payment_idString

Returns the current value of referenced_payment_id.

Returns:

  • (String)

    the current value of referenced_payment_id



27
28
29
# File 'lib/worldline/acquiring/sdk/v1/domain/api_refund_resource.rb', line 27

def referenced_payment_id
  @referenced_payment_id
end

#referencesWorldline::Acquiring::SDK::V1::Domain::ApiReferencesForResponses

Returns the current value of references.

Returns:



27
28
29
# File 'lib/worldline/acquiring/sdk/v1/domain/api_refund_resource.rb', line 27

def references
  @references
end

#refund_idString

Returns the current value of refund_id.

Returns:

  • (String)

    the current value of refund_id



27
28
29
# File 'lib/worldline/acquiring/sdk/v1/domain/api_refund_resource.rb', line 27

def refund_id
  @refund_id
end

#retry_afterString

Returns the current value of retry_after.

Returns:

  • (String)

    the current value of retry_after



27
28
29
# File 'lib/worldline/acquiring/sdk/v1/domain/api_refund_resource.rb', line 27

def retry_after
  @retry_after
end

#statusString

Returns the current value of status.

Returns:

  • (String)

    the current value of status



27
28
29
# File 'lib/worldline/acquiring/sdk/v1/domain/api_refund_resource.rb', line 27

def status
  @status
end

#status_timestampDateTime

Returns the current value of status_timestamp.

Returns:

  • (DateTime)

    the current value of status_timestamp



27
28
29
# File 'lib/worldline/acquiring/sdk/v1/domain/api_refund_resource.rb', line 27

def status_timestamp
  @status_timestamp
end

#total_authorized_amountWorldline::Acquiring::SDK::V1::Domain::AmountData

Returns the current value of total_authorized_amount.

Returns:



27
28
29
# File 'lib/worldline/acquiring/sdk/v1/domain/api_refund_resource.rb', line 27

def total_authorized_amount
  @total_authorized_amount
end

Instance Method Details

#from_hash(hash) ⇒ Object



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
96
97
98
99
100
101
102
103
104
# File 'lib/worldline/acquiring/sdk/v1/domain/api_refund_resource.rb', line 65

def from_hash(hash)
  super
  if hash.has_key? 'cardPaymentData'
    raise TypeError, "value '%s' is not a Hash" % [hash['cardPaymentData']] unless hash['cardPaymentData'].is_a? Hash
    @card_payment_data = Worldline::Acquiring::SDK::V1::Domain::CardPaymentDataForResource.new_from_hash(hash['cardPaymentData'])
  end
  if hash.has_key? 'initialAuthorizationCode'
    @initial_authorization_code = hash['initialAuthorizationCode']
  end
  if hash.has_key? 'operations'
    raise TypeError, "value '%s' is not an Array" % [hash['operations']] unless hash['operations'].is_a? Array
    @operations = []
    hash['operations'].each do |e|
      @operations << Worldline::Acquiring::SDK::V1::Domain::SubOperationForRefund.new_from_hash(e)
    end
  end
  if hash.has_key? 'referencedPaymentId'
    @referenced_payment_id = hash['referencedPaymentId']
  end
  if hash.has_key? 'references'
    raise TypeError, "value '%s' is not a Hash" % [hash['references']] unless hash['references'].is_a? Hash
    @references = Worldline::Acquiring::SDK::V1::Domain::ApiReferencesForResponses.new_from_hash(hash['references'])
  end
  if hash.has_key? 'refundId'
    @refund_id = hash['refundId']
  end
  if hash.has_key? 'retryAfter'
    @retry_after = hash['retryAfter']
  end
  if hash.has_key? 'status'
    @status = hash['status']
  end
  if hash.has_key? 'statusTimestamp'
    @status_timestamp = DateTime.parse(hash['statusTimestamp'])
  end
  if hash.has_key? 'totalAuthorizedAmount'
    raise TypeError, "value '%s' is not a Hash" % [hash['totalAuthorizedAmount']] unless hash['totalAuthorizedAmount'].is_a? Hash
    @total_authorized_amount = Worldline::Acquiring::SDK::V1::Domain::AmountData.new_from_hash(hash['totalAuthorizedAmount'])
  end
end

#to_hHash

Returns:

  • (Hash)


50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/worldline/acquiring/sdk/v1/domain/api_refund_resource.rb', line 50

def to_h
  hash = super
  hash['cardPaymentData'] = @card_payment_data.to_h unless @card_payment_data.nil?
  hash['initialAuthorizationCode'] = @initial_authorization_code unless @initial_authorization_code.nil?
  hash['operations'] = @operations.collect{|val| val.to_h} unless @operations.nil?
  hash['referencedPaymentId'] = @referenced_payment_id unless @referenced_payment_id.nil?
  hash['references'] = @references.to_h unless @references.nil?
  hash['refundId'] = @refund_id unless @refund_id.nil?
  hash['retryAfter'] = @retry_after unless @retry_after.nil?
  hash['status'] = @status unless @status.nil?
  hash['statusTimestamp'] = @status_timestamp.iso8601(3) unless @status_timestamp.nil?
  hash['totalAuthorizedAmount'] = @total_authorized_amount.to_h unless @total_authorized_amount.nil?
  hash
end