Class: Stripe::V2::MoneyManagement::PayoutMethodService::ListParams::UsageStatus
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::PayoutMethodService::ListParams::UsageStatus
- Defined in:
- lib/stripe/services/v2/money_management/payout_method_service.rb
Instance Attribute Summary collapse
-
#payments ⇒ Object
List of payments status to filter by.
-
#transfers ⇒ Object
List of transfers status to filter by.
Instance Method Summary collapse
-
#initialize(payments: nil, transfers: nil) ⇒ UsageStatus
constructor
A new instance of UsageStatus.
Methods inherited from RequestParams
Constructor Details
#initialize(payments: nil, transfers: nil) ⇒ UsageStatus
Returns a new instance of UsageStatus.
18 19 20 21 |
# File 'lib/stripe/services/v2/money_management/payout_method_service.rb', line 18 def initialize(payments: nil, transfers: nil) @payments = payments @transfers = transfers end |
Instance Attribute Details
#payments ⇒ Object
List of payments status to filter by.
14 15 16 |
# File 'lib/stripe/services/v2/money_management/payout_method_service.rb', line 14 def payments @payments end |
#transfers ⇒ Object
List of transfers status to filter by.
16 17 18 |
# File 'lib/stripe/services/v2/money_management/payout_method_service.rb', line 16 def transfers @transfers end |