Sha256: dab677b664b6b0b6bf5e621d59e29af4a29502bbaee3348fcc5413b8e13935b6
Contents?: true
Size: 435 Bytes
Versions: 59
Compression:
Stored size: 435 Bytes
Contents
module Cobrato module Resources class ChargingType < Base crud :all def list http.get(resource_base_path) do |response| bank_billets = parsed_body(response)[collection_name]['bank_billets'].map do |item| Cobrato::Entities::BankBillet.new(item) end Struct.new(:bank_billets).new(bank_billets) end end end end end
Version data entries
59 entries across 59 versions & 1 rubygems