Sha256: a0ec2e7826dbb2e38a86287c77eecb58fe3e85be6a280041b4109210077311da

Contents?: true

Size: 1.44 KB

Versions: 22

Compression:

Stored size: 1.44 KB

Contents

module GoTransverseTractApi

  module Product

    class DiscountIdentifier

      class << self

        #
        # @param {Hash} options
        #
        def find_all options={}
          params ||= GoTransverseTractApi::ApiData.new.get_query_params({}, options)
          GoTransverseTractApi.get_response_for(self, params)
        end

        #
        # @param {Long} eid
        # @param {Hash} options
        #
        def find_by_eid eid, options={}
          return nil unless eid.present?

          params ||= GoTransverseTractApi::ApiData.new.get_query_params({eid: eid}, options)
          GoTransverseTractApi.get_response_for(self, params)
        end

        #
        # @param {Long} identifier
        # @param {Hash} options
        #
        def find_by_identifier identifier, options={}
          return nil unless identifier.present?

          params ||= GoTransverseTractApi::ApiData.new.get_query_params({identifier: identifier}, options)
          GoTransverseTractApi.get_response_for(self, params)
        end

        #
        # @param {Long} order_item_eid
        # @param {Hash} options
        #
        def find_by_order_item_eid order_item_eid, options={}
          return nil unless order_item_eid.present?

          params ||= GoTransverseTractApi::ApiData.new.get_query_params({order_item_eid: order_item_eid}, options)
          GoTransverseTractApi.get_response_for(self, params)
        end

      end

    end

  end

end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
gotransverse-tract-api-0.24.0 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.23.0 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.22.1 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.22.0 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.21.1 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.21.0 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.20.3 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.20.2 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.20.1 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.20.0 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.19.0 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.18.3 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.18.2 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.18.1 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.18.0 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.17.2 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.17.1 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.17.0 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.16.0 lib/gotransverse-tract-api/product/discount_identifier.rb
gotransverse-tract-api-0.15.0 lib/gotransverse-tract-api/product/discount_identifier.rb