Sha256: 05a38d4d9c467ce5cd133a4df0209df6758cefba033e42d51de215dd7bacf05b

Contents?: true

Size: 863 Bytes

Versions: 14

Compression:

Stored size: 863 Bytes

Contents

module GoTransverseTractApi

  module Product

    class PriceList

      def self.find_all
        GoTransverseTractApi.get_response_for(self)
      end

      #
      # @param {Long} eid
      # @param {String} query_scope (default: 'SHALLOW')
      #
      def self.find_by_eid eid, query_scope=nil
        GoTransverseTractApi.get_response_for(self, {eid: eid, queryScope: query_scope})
      end

      #
      # @param {String} name
      # @param {String} query_scope (default: 'SHALLOW')
      #
      def self.find_by_name name, query_scope=nil
        GoTransverseTractApi.get_response_for(self, {name: name, queryScope: query_scope})
      end

      #
      # @param {Hash} price_list
      #
      def self.get_price_list price_list
        {
          name: price_list[:name],
          eid: price_list[:eid]
        }
      end
    end

  end

end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
gotransverse-tract-api-0.7.4 lib/gotransverse-tract-api/product/price_list.rb
gotransverse-tract-api-0.7.3 lib/gotransverse-tract-api/product/price_list.rb
gotransverse-tract-api-0.7.2 lib/gotransverse-tract-api/product/price_list.rb
gotransverse-tract-api-0.7.1 lib/gotransverse-tract-api/product/price_list.rb
gotransverse-tract-api-0.7.0 lib/gotransverse-tract-api/product/price_list.rb
gotransverse-tract-api-0.6.7 lib/gotransverse-tract-api/product/price_list.rb
gotransverse-tract-api-0.6.6 lib/gotransverse-tract-api/product/price_list.rb
gotransverse-tract-api-0.6.5 lib/gotransverse-tract-api/product/price_list.rb
gotransverse-tract-api-0.6.4 lib/gotransverse-tract-api/product/price_list.rb
gotransverse-tract-api-0.6.3 lib/gotransverse-tract-api/product/price_list.rb
gotransverse-tract-api-0.6.2 lib/gotransverse-tract-api/product/price_list.rb
gotransverse-tract-api-0.6.1 lib/gotransverse-tract-api/product/price_list.rb
gotransverse-tract-api-0.6.0 lib/gotransverse-tract-api/product/price_list.rb
gotransverse-tract-api-0.5.3 lib/gotransverse-tract-api/product/price_list.rb