Use Object Expansion in API calls
mainStripe allows you to expand related objects in a single request. In stripity_stripe, you can do this by passing a list of strings to the :expand key in the opts argument of an API call.
# Returns a charge with only the balance_transaction ID
Charge.retrieve("ch_123")
# Returns the full BalanceTransaction object nested within the Charge
Charge.retrieve("ch_123", expand: ["balance_transaction"])