FreshBooks API returns invoices with the following format: ``` xml <invoice> <lines> <line> <line_id>123</line_id> </line> <line> <line_id>234</line_id> </line> </lines> </invoice> ``` HTTParty turns this into the hash: ``` ruby { invoice: { lines: { line_id: 123 } } } ```
FreshBooks API returns invoices with the following format:
HTTParty turns this into the hash: