Sha256: 9a949f29bf9a42c25027d179fa85d1887deb9d874318518c9262c23c345317ce

Contents?: true

Size: 510 Bytes

Versions: 1

Compression:

Stored size: 510 Bytes

Contents

module Ebanx
  module Command
    class GetMerchantSettlementExtract < Command
      def initialize(params)
        @params         = params
        @request_method = :get
        @request_action = 'merchantSettlement/getExtract'
        @response_type  = :json
      end

      def validate
        validate_presence :country_abbreviation
        validate_presence :currency_code
        validate_presence :date_field
        validate_presence :date
        validate_presence :hour
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ebanx-1.3.1 lib/ebanx/command/get_merchant_settlement_extract.rb