Class: Openpix::RubySdk::Resources::Refund

Inherits:
Resource
  • Object
show all
Defined in:
lib/openpix/ruby_sdk/resources/refund.rb

Overview

Make API operations on Refund resource

Constant Summary collapse

ATTRS =
%w[
  value
  transactionEndToEndId
  correlationID
  comment
].freeze

Instance Method Summary collapse

Methods inherited from Resource

#fetch, #fetch!, #fetch_next_page!, #fetch_previous_page!, #find, #find!, #initialize, #save, #save!, #to_body, #to_collection_resource, #to_single_resource

Constructor Details

This class inherits a constructor from Openpix::RubySdk::Resources::Resource

Instance Method Details

#create_attributesObject



28
29
30
# File 'lib/openpix/ruby_sdk/resources/refund.rb', line 28

def create_attributes
  ATTRS
end

#destroy(id:) ⇒ Object

rubocop:disable Lint/UnusedMethodArgument



37
38
39
40
41
42
# File 'lib/openpix/ruby_sdk/resources/refund.rb', line 37

def destroy(id:)
  raise(
    ActionNotImplementedError,
    'refund does not implement DELETE action'
  )
end

#destroy!(id:) ⇒ Object



44
45
46
47
48
49
# File 'lib/openpix/ruby_sdk/resources/refund.rb', line 44

def destroy!(id:)
  raise(
    ActionNotImplementedError,
    'refund does not implement DELETE action'
  )
end

#init_body(params: {}, rest: {}) ⇒ Object

Parameters:

  • params (Hash{String => String, Number, Hash{String, Number}, Array<Hash{String, String}>}) (defaults to: {})

    the attributes for creating a Charge

  • rest (Hash) (defaults to: {})

    more attributes to be merged at the body, use this only for unsupported fields



24
25
26
# File 'lib/openpix/ruby_sdk/resources/refund.rb', line 24

def init_body(params: {}, rest: {})
  super(base_attrs: ATTRS, params: params, rest: rest)
end

#to_urlObject



32
33
34
# File 'lib/openpix/ruby_sdk/resources/refund.rb', line 32

def to_url
  'refund'
end