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

Version Path
cobrato-client-0.10.0 lib/cobrato/resources/charging_type.rb
cobrato-client-0.9.1 lib/cobrato/resources/charging_type.rb
cobrato-client-0.9.0 lib/cobrato/resources/charging_type.rb
cobrato-client-0.8.0 lib/cobrato/resources/charging_type.rb
cobrato-client-0.7.0 lib/cobrato/resources/charging_type.rb
cobrato-client-0.6.0 lib/cobrato/resources/charging_type.rb
cobrato-client-0.5.0 lib/cobrato/resources/charging_type.rb
cobrato-client-0.4.2 lib/cobrato/resources/charging_type.rb
cobrato-client-0.4.1 lib/cobrato/resources/charging_type.rb
cobrato-client-0.4.0 lib/cobrato/resources/charging_type.rb
cobrato-client-0.4.0.rc1 lib/cobrato/resources/charging_type.rb
cobrato-client-0.3.0 lib/cobrato/resources/charging_type.rb
cobrato-client-0.3.0.rc1 lib/cobrato/resources/charging_type.rb
cobrato-client-0.2.11 lib/cobrato/resources/charging_type.rb
cobrato-client-0.2.10 lib/cobrato/resources/charging_type.rb
cobrato-client-0.2.9 lib/cobrato/resources/charging_type.rb
cobrato-client-0.2.8 lib/cobrato/resources/charging_type.rb
cobrato-client-0.2.7 lib/cobrato/resources/charging_type.rb
cobrato-client-0.2.6 lib/cobrato/resources/charging_type.rb