Bee
Results
2
issues of
Bee
Hello! I am grabbing a transaction list through the `client.user.get_user_transactions(user_id=user.id, callback=callback)` method. While going through the Transaction object, I wasn't sure what attribute denotes whether it was a payment received...
I have a Child class of `Virtus::Attribute` called `SortedComponents` Which looks like this: ``` class SortedComponents < Virtus::Attribute def coerce(components) components = (components).sort! { |a, b| a["description"] b["description"] } components...