Sha256: 3b8181dc45fb94aca56d48f47c4eb837a8d1053c4e9692a00e77a7d40992e128

Contents?: true

Size: 994 Bytes

Versions: 14

Compression:

Stored size: 994 Bytes

Contents

module GoTransverseTractApi

  module BillingAccount

    class ScheduledCharge

      class << self

        def find_all
          GoTransverseTractApi.get_response_for(self)
        end

        #
        # @param {Long} eid
        #
        def find_by_eid eid
          GoTransverseTractApi.get_response_for(self, {eid: eid})
        end

        #
        # @param {Long} service_price_eid
        #
        def find_by_service_price_eid service_price_eid
          GoTransverseTractApi.get_response_for(self, {service_price_eid: service_price_eid})
        end

        #
        # @param {Boolean} invoiced
        #
        def find_by_invoiced invoiced
          GoTransverseTractApi.get_response_for(self, {invoiced: invoiced})
        end

        #
        # @param {Long} order_item_eid
        #
        def find_by_order_item_eid order_item_eid
          GoTransverseTractApi.get_response_for(self, {order_item_eid: order_item_eid})
        end

      end

    end

  end

end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
gotransverse-tract-api-0.5.2 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
gotransverse-tract-api-0.5.1 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
gotransverse-tract-api-0.5.0 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
gotransverse-tract-api-0.4.3 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
gotransverse-tract-api-0.4.2 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
gotransverse-tract-api-0.4.1 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
gotransverse-tract-api-0.4.0 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
gotransverse-tract-api-0.3.4 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
gotransverse-tract-api-0.3.3 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
gotransverse-tract-api-0.3.2 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
gotransverse-tract-api-0.3.1 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
gotransverse-tract-api-0.3.0 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
gotransverse-tract-api-0.2.5 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
gotransverse-tract-api-0.2.4 lib/gotransverse-tract-api/billing_account/scheduled_charge.rb