Sha256: ef3a33622c483f4e5a51f6500c61d8fa8f38d813007296aa1642418ea3321f58

Contents?: true

Size: 411 Bytes

Versions: 9

Compression:

Stored size: 411 Bytes

Contents

class GetInstantBuyDataResponse
  # Lista de cartões de crédito
  attr_accessor :CreditCardDataCollection

  # Total de cartões de crédito retornados
  attr_accessor :CreditCardDataCount

  def initialize
    @CreditCardDataCollection = Array.new
  end

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

end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
mundipagg_sdk-1.0.2 lib/gateway/InstantBuy/get_instant_buy_data_response.rb
mundipagg_sdk-1.0.1 lib/gateway/InstantBuy/get_instant_buy_data_response.rb
mundipagg_sdk-1.0.0 lib/gateway/InstantBuy/get_instant_buy_data_response.rb
mundipagg_api-1.3.1 lib/mundipagg/InstantBuy/get_instant_buy_data_response.rb
mundipagg_api-1.3.0 lib/mundipagg/InstantBuy/get_instant_buy_data_response.rb
mundipagg_api-1.1.1 lib/mundipagg/InstantBuy/get_instant_buy_data_response.rb
mundipagg_api-1.1.0 lib/mundipagg/InstantBuy/get_instant_buy_data_response.rb
mundipagg_api-1.0.1 lib/mundipagg/InstantBuy/get_instant_buy_data_response.rb
mundipagg_api-1.0.0 lib/mundipagg/InstantBuy/get_instant_buy_data_response.rb