class Stripe::CLI::Commands::Transactions

Public Instance Methods

find(transaction_id) click to toggle source
Calls superclass method Stripe::CLI::Command#find
# File lib/stripe/cli/commands/transactions.rb, line 20
def find transaction_id
  super Stripe::BalanceTransaction, transaction_id
end
list(type = 'all') click to toggle source
Calls superclass method Stripe::CLI::Command#list
# File lib/stripe/cli/commands/transactions.rb, line 14
def list type = 'all'
  options[:type] = type.sub(/s$/,'') unless type == 'all'
  super Stripe::BalanceTransaction, options
end