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