Sha256: 8e10196c11c47c1c3bdac201965b6a385e1bdf90a184861fd092c434d863b250
Contents?: true
Size: 1.28 KB
Versions: 2
Compression:
Stored size: 1.28 KB
Contents
# File generated from our OpenAPI spec # frozen_string_literal: true module Stripe module Treasury # ReceivedCredits represent funds sent to a [FinancialAccount](https://stripe.com/docs/api#financial_accounts) (for example, via ACH or wire). These money movements are not initiated from the FinancialAccount. class ReceivedCredit < APIResource extend Stripe::APIOperations::List OBJECT_NAME = "treasury.received_credit" # Returns a list of ReceivedCredits. def self.list(filters = {}, opts = {}) request_stripe_object( method: :get, path: "/v1/treasury/received_credits", params: filters, opts: opts ) end def test_helpers TestHelpers.new(self) end class TestHelpers < APIResourceTestHelpers RESOURCE_CLASS = ReceivedCredit # Use this endpoint to simulate a test mode ReceivedCredit initiated by a third party. In live mode, you can't directly create ReceivedCredits initiated by third parties. def self.create(params = {}, opts = {}) request_stripe_object( method: :post, path: "/v1/test_helpers/treasury/received_credits", params: params, opts: opts ) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
stripe-10.9.0.pre.beta.1 | lib/stripe/resources/treasury/received_credit.rb |
stripe-10.8.0 | lib/stripe/resources/treasury/received_credit.rb |