Class: Stripe::V2::MoneyManagement::PayoutMethodListParams::UsageStatus
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::PayoutMethodListParams::UsageStatus
- Defined in:
- lib/stripe/params/v2/money_management/payout_method_list_params.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
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(payments: nil, transfers: nil) ⇒ UsageStatus
Returns a new instance of UsageStatus.
14 15 16 17 |
# File 'lib/stripe/params/v2/money_management/payout_method_list_params.rb', line 14 def initialize(payments: nil, transfers: nil) @payments = payments @transfers = transfers end |
Instance Attribute Details
#payments ⇒ Object
List of payments status to filter by.
10 11 12 |
# File 'lib/stripe/params/v2/money_management/payout_method_list_params.rb', line 10 def payments @payments end |
#transfers ⇒ Object
List of transfers status to filter by.
12 13 14 |
# File 'lib/stripe/params/v2/money_management/payout_method_list_params.rb', line 12 def transfers @transfers end |