Alphabetize class list

This is a pretty pedestrian change, but here we alphabetize the list of
StripeObject class mappings so that it's easier to scan it for
accidental omissions.
This commit is contained in:
Brandur 2016-10-14 16:31:51 -07:00
parent 876ae8e4dd
commit dff2bf10dd

View File

@ -23,39 +23,39 @@ module Stripe
'list' => ListObject, 'list' => ListObject,
# business objects # business objects
'account' => Account, 'account' => Account,
'alipay_account' => AlipayAccount, 'alipay_account' => AlipayAccount,
'application_fee' => ApplicationFee, 'apple_pay_domain' => ApplePayDomain,
'balance' => Balance, 'application_fee' => ApplicationFee,
'balance_transaction' => BalanceTransaction, 'balance' => Balance,
'bank_account' => BankAccount, 'balance_transaction' => BalanceTransaction,
'card' => Card, 'bank_account' => BankAccount,
'charge' => Charge, 'bitcoin_receiver' => BitcoinReceiver,
'country_spec' => CountrySpec, 'bitcoin_transaction' => BitcoinTransaction,
'coupon' => Coupon, 'card' => Card,
'customer' => Customer, 'charge' => Charge,
'event' => Event, 'country_spec' => CountrySpec,
'fee_refund' => ApplicationFeeRefund, 'coupon' => Coupon,
'invoiceitem' => InvoiceItem, 'customer' => Customer,
'invoice' => Invoice, 'dispute' => Dispute,
'plan' => Plan, 'event' => Event,
'recipient' => Recipient, 'fee_refund' => ApplicationFeeRefund,
'refund' => Refund, 'file_upload' => FileUpload,
'subscription' => Subscription, 'invoice' => Invoice,
'subscription_item' => SubscriptionItem, 'invoiceitem' => InvoiceItem,
'file_upload' => FileUpload, 'order' => Order,
'token' => Token, 'order_return' => OrderReturn,
'transfer' => Transfer, 'plan' => Plan,
'transfer_reversal' => Reversal, 'product' => Product,
'bitcoin_receiver' => BitcoinReceiver, 'recipient' => Recipient,
'bitcoin_transaction' => BitcoinTransaction, 'refund' => Refund,
'dispute' => Dispute, 'sku' => SKU,
'product' => Product, 'subscription' => Subscription,
'sku' => SKU, 'subscription_item' => SubscriptionItem,
'order' => Order, 'token' => Token,
'order_return' => OrderReturn, 'transfer' => Transfer,
'three_d_secure' => ThreeDSecure, 'transfer_reversal' => Reversal,
'apple_pay_domain' => ApplePayDomain, 'three_d_secure' => ThreeDSecure,
} }
end end