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.



15
16
17
18
# File 'lib/stripe/services/v2/money_management/payout_method_service.rb', line 15

def initialize(payments: nil, transfers: nil)
  @payments = payments
  @transfers = transfers
end

Instance Attribute Details

#paymentsObject

List of payments status to filter by.



11
12
13
# File 'lib/stripe/services/v2/money_management/payout_method_service.rb', line 11

def payments
  @payments
end

#transfersObject

List of transfers status to filter by.



13
14
15
# File 'lib/stripe/services/v2/money_management/payout_method_service.rb', line 13

def transfers
  @transfers
end