formatting. alphabetize key-values by keys and add comments.

This commit is contained in:
Weston Platter 2014-11-02 20:29:13 -07:00
parent 30b0e4156a
commit 7810d888c1

View File

@ -17,23 +17,26 @@ module Stripe
def self.object_classes
@object_classes ||= {
# data structures
'list' => ListObject,
# business objects
'application_fee' => ApplicationFee,
'balance' => Balance,
'balance_transaction' => BalanceTransaction,
'card' => Card,
'charge' => Charge,
'coupon' => Coupon,
'customer' => Customer,
'event' => Event,
'fee_refund' => ApplicationFeeRefund,
'invoiceitem' => InvoiceItem,
'invoice' => Invoice,
'plan' => Plan,
'coupon' => Coupon,
'event' => Event,
'transfer' => Transfer,
'recipient' => Recipient,
'card' => Card,
'subscription' => Subscription,
'list' => ListObject,
'refund' => Refund,
'application_fee' => ApplicationFee,
'fee_refund' => ApplicationFeeRefund
'subscription' => Subscription,
'transfer' => Transfer
}
end