Sha256: a2e69724df587a9bc5936d3136b60b5b6ddfefe5d508cd5c347292f3d76391c4

Contents?: true

Size: 467 Bytes

Versions: 1

Compression:

Stored size: 467 Bytes

Contents

module Gateway

  class BoletoTransactionOptions
    # Total de dias para expirar o boleto
    attr_accessor :DaysToAddInBoletoExpirationDate

    # Moeda. Opções: BRL, EUR, USD, ARS, BOB, CLP, COP, UYU, MXN, PYG
    attr_accessor :CurrencyIso

    # URL de notificação
    attr_accessor :NotificationUrl

    def to_json
      hash = {}
      instance_variables.each { |var| hash[var.to_s.delete('@')] = instance_variable_get(var) }
      hash
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mundipagg_sdk-1.4.1 lib/gateway/BoletoTransaction/boleto_transaction_options.rb