Class: Stripe::V2::MoneyManagement::PayoutMethodService::ListParams::UsageStatus

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/v2/money_management/payout_method_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

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

#paymentsObject

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

#transfersObject

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